From 75320c711cceeffb22dc42b235d1a59d2a3ddbf9 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Thu, 5 Oct 2017 08:16:11 +0200 Subject: [PATCH] 2.4.0 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e1e73dc1..5ba1be4da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Yay for [SemVer](http://semver.org/). **Table of Contents** + - [2.4.0](#240) - [2.3.x](#23x) - [2.3.2](#232) - [2.3.1](#231) @@ -36,6 +37,16 @@ Yay for [SemVer](http://semver.org/). +## 2.4.0 +- [DIFF](https://github.com/panva/node-oidc-provider/compare/v2.3.2...v2.4.0) +- added BaseToken public API, this API enables advanced users in search of features such as JWT-formatted + Bearer tokens or not being able to reconstruct client token values from a DB backup to overload + these methods and get those features. +- fixed keystore initialize method to allow for servers only supporting authorization flow not needing + RS256 signature key +- fixed token introspection disclosing details for expired but found tokens +- fixed exception during token introspection auth `none` clients looking up non-existing tokens + ## 2.3.x ### 2.3.2 - [DIFF](https://github.com/panva/node-oidc-provider/compare/v2.3.1...v2.3.2) diff --git a/package.json b/package.json index dce0a47ef..bd7709e75 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,7 @@ "lint-fix": "eslint lib example test --fix", "heroku-postbuild": "npm install mongodb" }, - "version": "2.3.2", + "version": "2.4.0", "files": [ "lib" ],