Mitar
Mitar
Hm, I am using: `font-family="Helvetica, Arial, Lucida Grande, sans-serif"`. So what I think it would be interesting if node-canvas 2.0 `registerFont` would be passed through so that I can register...
Hm, I tried it but in my particular case I do not see a difference. It might that `Helvetica` is simply not available through Cairo?
Hm, I do see expires header in current version?
Ups. This should probably go against 0.2 branch?
Same goes for `maxAge`. There should be a way to disable caching.
It would be great to also support `credProtect` extension: https://fidoalliance.org/specs/fido-v2.1-rd-20191217/fido-client-to-authenticator-protocol-v2.1-rd-20191217.html#sctn-credProtect-extension
Shameless plug: you can also switch it to drop-in replacement [`gitlab.com/tozd/go/errors`](https://gitlab.com/tozd/go/errors). It fixes [many issues](https://gitlab.com/tozd/go/errors#why-a-new-go-errors-package), is maintained, and supports modern Go's error patterns (sentinel errors, %w formatting, joined errors, etc.)....
+1 for getting this in.
For anyone else going around this, you can currently do something like: ```go provider, err := oidc.NewProvider(ctx, issuer) if err != nil { return nil, err } var claims struct...