Skip to content

Commit 31e5abc

Browse files
authored
Merge pull request #2022 from damienbod/release_18_0_2
Release 18.0.2
2 parents 14f032c + 85b9a8e commit 31e5abc

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
## Angular Lib for OpenID Connect/OAuth2 Changelog
22

3+
### 2024-10-12 18.0.2
4+
5+
- Feat: log when provided configId does not exist
6+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/2010)
7+
- Fix: auto login guard passes correct config id
8+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/2008)
9+
- Feat: add guard autoLoginPartialRoutesGuardWithConfig for specific configuration
10+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/2000)
11+
- Fix: Rudimentary fix for popup closing too early
12+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1988)
13+
- merge the well-known endpoints with the config ones
14+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1984)
15+
- Bugfix: Updated URL service isCallbackFromSts
16+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1976)
17+
318
### 2024-06-21 18.0.1
419

520
- Fix issue #1954: Ensure CheckingAuthFinished event fires regardless of authentication state

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"bugs": {
99
"url": "https://github.com/damienbod/angular-auth-oidc-client/issues"
1010
},
11-
"version": "18.0.1",
11+
"version": "18.0.2",
1212
"scripts": {
1313
"ng": "ng",
1414
"build": "npm run build-lib",

projects/angular-auth-oidc-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"authorization"
3737
],
3838
"license": "MIT",
39-
"version": "18.0.1",
39+
"version": "18.0.2",
4040
"description": "Angular Lib for OpenID Connect & OAuth2",
4141
"schematics": "./schematics/collection.json",
4242
"ng-add": {

projects/schematics/src/ng-add/actions/add-dependencies.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { NgAddOptions } from '../models/ng-add-options';
55
const dependenciesToAdd: any[] = [
66
{
77
name: 'angular-auth-oidc-client',
8-
version: '18.0.1',
8+
version: '18.0.2',
99
},
1010
];
1111

0 commit comments

Comments
 (0)