Releases: auth0/node-jwks-rsa
Releases · auth0/node-jwks-rsa
v1.10.1
v1.10.0
Added
Fixed
- Add missing async methods to Typescript type definitions #163 (mwgamble)
- Fixing proxy on Axios #176 (davidpatrick)
- Fix caching and rateLimiting on getSigningKeyAsync #177 (davidpatrick)
v1.9.0
Added
- Add promisified methods to JwksClient #161 (jimmyjames)
- Update express-jwt ^6.0.0 #157 (davidpatrick)
Fixed
- Update Buffer initialization to non-deprecated method #154 (cwardcode)
- Use axios url parameter instead of baseURL #153 (novascreen)
Security
- Bump lodash from 4.17.15 to 4.17.19 [#152](https://github.com/auth0/node-jwks
v1.8.1
v1.8.0
v1.7.0
[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
- [SDK-1221] Modify Cache Defaults #123 (davidpatrick)
Fixed
- Add Linter step to CI #129 (davidpatrick)
- Send the explicit commit SHA to Codecov #128 (lbalmaceda)
v1.6.2
[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
- Add alias for obtaining the public key #119 (lbalmaceda)
- Handling case when Jwk doesn't have 'use' parameter #116 (manpreet-compro)
v1.6.1
v1.6.0
Added
- Add
agentOptionsto customizerequestTLS/SSL options. #84
v1.5.1
Changed
- Now includes the jsonwebtoken as a runtime dependency not dev to avoid breaks with 1.5.0 installs
- Various dependencies in both the library and samples updated