Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 18.0.2 #2022

Merged
merged 2 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion projects/angular-auth-oidc-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion projects/schematics/src/ng-add/actions/add-dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
];

Expand Down
Loading