Skip to content

Releases: auth0/node-jwks-rsa

v1.10.1

24 Sep 14:57
3de49e0

Choose a tag to compare

Fixed

v1.10.0

23 Sep 14:43

Choose a tag to compare

Added

Fixed

v1.9.0

18 Aug 17:50
8690698

Choose a tag to compare

Added

Fixed

Security

v1.8.1

19 Jun 12:14
af920d9

Choose a tag to compare

Fixed

Security

v1.8.0

13 Apr 18:46
26e2fa3

Choose a tag to compare

[1.8.0] - (2020-04-12)

Added

  • Added timeout with default value of 30s #132 (Cooke)

Changed

Fixed

v1.7.0

24 Feb 16:44
398c05e

Choose a tag to compare

[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

v1.6.2

21 Jan 20:18
998a32d

Choose a tag to compare

[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

v1.6.1

13 Jan 20:52
58dccc5

Choose a tag to compare

Changed

v1.6.0

13 Jan 20:49
486e958

Choose a tag to compare

Added

v1.5.1

13 Jan 20:49
56d7d53

Choose a tag to compare

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