Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: auth0/node-jwks-rsa
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.2
Choose a base ref
...
head repository: auth0/node-jwks-rsa
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.1.3
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on May 17, 2022

  1. Copy the full SHA
    2945f8f View commit details

Commits on May 20, 2022

  1. Merge pull request #310 from auth0/fix-express-import

    Fix issue with ES Express import
    adamjmcgrath authored May 20, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a3b26e2 View commit details
  2. Release v2.1.3

    adamjmcgrath committed May 20, 2022
    Copy the full SHA
    5a18fc0 View commit details
  3. Merge pull request #311 from auth0/release/v2.1.3

    Release v2.1.3
    adamjmcgrath authored May 20, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e578536 View commit details
Showing with 11 additions and 5 deletions.
  1. +6 −0 CHANGELOG.md
  2. +2 −2 index.d.ts
  3. +2 −2 package-lock.json
  4. +1 −1 package.json
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [v2.1.3](https://github.com/auth0/node-jwks-rsa/tree/v2.1.3) (2022-05-20)
[Full Changelog](https://github.com/auth0/node-jwks-rsa/compare/v2.1.2...v2.1.3)

**Fixed**
- Fix issue with ES Express import [\#310](https://github.com/auth0/node-jwks-rsa/pull/310) ([adamjmcgrath](https://github.com/adamjmcgrath))

## [v2.1.2](https://github.com/auth0/node-jwks-rsa/tree/v2.1.2) (2022-05-12)
[Full Changelog](https://github.com/auth0/node-jwks-rsa/compare/v2.1.1...v2.1.2)

4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Agent as HttpAgent } from 'http';
import { Agent as HttpsAgent } from 'https';
import type {Jwt, Secret} from 'jsonwebtoken'
import Express from 'express'
import Express = require('express')

declare function JwksRsa(options: JwksRsa.Options): JwksRsa.JwksClient;

@@ -60,7 +60,7 @@ declare namespace JwksRsa {
* Types are duplicated from express-jwt@6/7
* due to numerous breaking changes in the lib's types
* whilst this lib supportd both <=6 & >=7 implementations
*
*
* express-jwt's installed version (or its @types)
* will be the types used at transpilation time
*/
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jwks-rsa",
"version": "2.1.2",
"version": "2.1.3",
"description": "Library to retrieve RSA public keys from a JWKS endpoint",
"main": "src/index.js",
"files": [