Comparing version 1.12.2 to 1.12.3
# Changelog | ||
## [1.12.3] - (2021-02-25) | ||
**Added** | ||
- Add alg to SigningKey types [\#220](https://github.com/auth0/node-jwks-rsa/pull/220) ([okko](https://github.com/okko)) | ||
**Fixed** | ||
- Fix npmjs resolves [\#221](https://github.com/auth0/node-jwks-rsa/pull/221) ([adamjmcgrath](https://github.com/adamjmcgrath)) | ||
- Fix Import default Axios instance [\#216](https://github.com/auth0/node-jwks-rsa/pull/216) ([dsebastien](https://github.com/dsebastien)) | ||
## [1.12.2] - (2021-01-07) | ||
@@ -4,0 +14,0 @@ |
@@ -48,2 +48,3 @@ import { SecretCallback, SecretCallbackLong } from 'express-jwt'; | ||
nbf: string; | ||
alg: string; | ||
getPublicKey(): string; | ||
@@ -69,2 +70,3 @@ publicKey: string; | ||
nbf: string; | ||
alg: string; | ||
getPublicKey(): string; | ||
@@ -71,0 +73,0 @@ rsaPublicKey: string; |
@@ -23,2 +23,3 @@ 'use strict'; | ||
module.exports.JwksClient = _JwksClient.JwksClient; | ||
module.exports.ArgumentError = errors.ArgumentError; | ||
@@ -25,0 +26,0 @@ module.exports.JwksError = errors.JwksError; |
@@ -33,3 +33,3 @@ 'use strict'; | ||
(0, _axios.request)(requestOptions).then(function (response) { | ||
axios.request(requestOptions).then(function (response) { | ||
return cb(null, response); | ||
@@ -61,6 +61,6 @@ }).catch(function (err) { | ||
var _axios = require('axios'); | ||
var _proxyFromEnv = require('proxy-from-env'); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
var axios = require('axios').default; |
{ | ||
"name": "jwks-rsa", | ||
"version": "1.12.2", | ||
"version": "1.12.3", | ||
"description": "Library to retrieve RSA public keys from a JWKS endpoint", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
358786
2630