Changelog
[1.10.0] - (2020-09-23)
Added
Fixed
Changelog
[1.9.0] - (2020-08-18)
Added
Fixed
Security
Changelog
Changelog
[1.7.0] - (2020-02-18)
This release includes a change to the default caching mechanism. Caching is on now by default, with the decrease of the default time of 10hours to 10minutes. This change introduces better support for signing key rotation.
Added
Changed
Fixed
Changelog
[1.6.2] - (2020-01-21)
This patch release includes an alias for accessing the public key of a given JSON Web Key (JWK). This is in response to an unintended breaking change that was introduced as part of the last Typescript definitions change, included in the release with version 1.6.0
.
Now, no matter what the public key algorithm is, you can obtain it like this:
client.getSigningKey(kid, (err, jwk) => {
const publicKey = jwk.getPublicKey();
});
Fixed
Changelog
[1.6.0] - (2019-07-09)
Added
agentOptions
to customize request
TLS/SSL options. https://github.com/auth0/node-jwks-rsa/pull/84