Skip to content

Releases: auth0/node-jwks-rsa

v1.8.1

19 Jun 12:14
af920d9
Compare
Choose a tag to compare

Fixed

Security

v1.8.0

13 Apr 18:46
26e2fa3
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare

Changed

v1.6.0

13 Jan 20:49
486e958
Compare
Choose a tag to compare

Added

v1.5.1

13 Jan 20:49
56d7d53
Compare
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

v1.5.0

09 May 20:23
bc064a5
Compare
Choose a tag to compare

Added

v1.4.0

09 May 20:23
47577de
Compare
Choose a tag to compare

[1.4.0] - (2019-02-07)
Added

  • Allow custom headers in request #77 (Mutmatt)

1.3.0

26 Jun 11:52
Compare
Choose a tag to compare

Added

Fixed