diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bd6859e..4b2d26e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ ## Angular Lib for OpenID Connect/OAuth2 Changelog +### 2024-10-12 18.0.2 + +- Feat: log when provided configId does not exist + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/2010) +- Fix: auto login guard passes correct config id + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/2008) +- Feat: add guard autoLoginPartialRoutesGuardWithConfig for specific configuration + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/2000) +- Fix: Rudimentary fix for popup closing too early + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1988) +- merge the well-known endpoints with the config ones + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1984) +- Bugfix: Updated URL service isCallbackFromSts + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1976) + ### 2024-06-21 18.0.1 - Fix issue #1954: Ensure CheckingAuthFinished event fires regardless of authentication state diff --git a/package-lock.json b/package-lock.json index ab304ea6..b372c93a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "angular-auth-oidc-client", - "version": "18.0.1", + "version": "18.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "angular-auth-oidc-client", - "version": "18.0.1", + "version": "18.0.2", "dependencies": { "@angular/animations": "^18.0.1", "@angular/common": "^18.0.1", diff --git a/package.json b/package.json index 86b5a84e..9169552c 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "bugs": { "url": "https://github.com/damienbod/angular-auth-oidc-client/issues" }, - "version": "18.0.1", + "version": "18.0.2", "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 8a3542fc..1bc8c99e 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": "18.0.1", + "version": "18.0.2", "description": "Angular Lib for OpenID Connect & OAuth2", "schematics": "./schematics/collection.json", "ng-add": { diff --git a/projects/schematics/src/ng-add/actions/add-dependencies.ts b/projects/schematics/src/ng-add/actions/add-dependencies.ts index d1e8f6f8..d46df44c 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: '18.0.1', + version: '18.0.2', }, ];