diff --git a/CHANGELOG.md b/CHANGELOG.md index 9de6ce3bb..0055e10d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Angular Lib for OpenID Connect/OAuth2 Changelog +### 2023-01-23 15.0.3 + +- fix(refreshSession): fix refreshSessionWithRefreshTokens + ### 2022-11-27 15.0.2 - bugfix POST logout, missing parameters diff --git a/package-lock.json b/package-lock.json index 021521993..f89c3a4e7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "angular-auth-oidc-client", - "version": "15.0.2", + "version": "15.0.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index db2220d19..ee775c260 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.2", + "version": "15.0.3", "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 05eb83b47..db07b24fd 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.2", + "version": "15.0.3", "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 0d16e3c1d..a3d3f89e7 100644 --- a/projects/schematics/package.json +++ b/projects/schematics/package.json @@ -1,6 +1,6 @@ { "name": "schematics", - "version": "15.0.2", + "version": "15.0.3", "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 86e47ac2c..607e76bf6 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.2', + version: '15.0.3', }, ];