diff --git a/CHANGELOG.md b/CHANGELOG.md index 50111907..4733f270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Angular Lib for OpenID Connect/OAuth2 Changelog +### 2023-05-05 15.0.5 + +- Bugfix id token expire check + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1751) + ### 2023-04-15 15.0.4 - isCurrentlyInPopup will check for opener and session storage diff --git a/package-lock.json b/package-lock.json index 7ca87135..9f8d0d26 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "angular-auth-oidc-client", - "version": "15.0.4", + "version": "15.0.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e71c9437..86c42f8a 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "bugs": { "url": "https://github.com/damienbod/angular-auth-oidc-client/issues" }, - "version": "15.0.4", + "version": "15.0.5", "scripts": { "ng": "ng", "build": "npm run build-lib", diff --git a/projects/angular-auth-oidc-client/package.json b/projects/angular-auth-oidc-client/package.json index d0f749fa..606e036b 100644 --- a/projects/angular-auth-oidc-client/package.json +++ b/projects/angular-auth-oidc-client/package.json @@ -36,7 +36,7 @@ "authorization" ], "license": "MIT", - "version": "15.0.4", + "version": "15.0.5", "description": "Angular Lib for OpenID Connect & OAuth2", "schematics": "./schematics/collection.json", "ng-add": { diff --git a/projects/schematics/package.json b/projects/schematics/package.json index 0e21bdfa..372425f2 100644 --- a/projects/schematics/package.json +++ b/projects/schematics/package.json @@ -1,6 +1,6 @@ { "name": "schematics", - "version": "15.0.4", + "version": "15.0.5", "description": "A schematic for the Angular Lib for OpenID Connect & OAuth2", "scripts": { "build": "tsc -p tsconfig.json", diff --git a/projects/schematics/src/ng-add/actions/add-dependencies.ts b/projects/schematics/src/ng-add/actions/add-dependencies.ts index 1fb82421..f9abadf7 100644 --- a/projects/schematics/src/ng-add/actions/add-dependencies.ts +++ b/projects/schematics/src/ng-add/actions/add-dependencies.ts @@ -5,7 +5,7 @@ import { NgAddOptions } from '../models/ng-add-options'; const dependenciesToAdd: any[] = [ { name: 'angular-auth-oidc-client', - version: '15.0.4', + version: '15.0.5', }, ];