Skip to content

Commit 97f8f9c

Browse files
authored
Merge pull request #1950 from damienbod/release/17_1_0
Release 17.1.0
2 parents 33372ed + c724f45 commit 97f8f9c

File tree

5 files changed

+34
-7
lines changed

5 files changed

+34
-7
lines changed

CHANGELOG.md

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

3+
### 2024-05-31 17.1.0
4+
5+
- docs: add new signal properties to public api docs
6+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1944)
7+
- fix(refresh-session): forceRefreshSession does not reset storageSilentRenewRunning
8+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1943)
9+
- refactor example to control flow syntax
10+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1941)
11+
- feat: add option to override the auth well known suffix
12+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1940)
13+
- feat: add authenticated and userData signals
14+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1937)
15+
- Bugfix: Updated URL service isCallbackFromSts
16+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1936)
17+
- fix network error detection due to potential falsy instanceof ProgressEvent evaluation if ProgressEvent is monkey patched by another library
18+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1934)
19+
- fix: refresh authWellKnownEndPoints
20+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1922)
21+
- refactor: replace any types
22+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1919)
23+
- fix: inject DOCUMENT
24+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1918)
25+
- Moving to inject function
26+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1917)
27+
- fix: adding missing field token_type from AuthResult.
28+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1907)
29+
330
### 2024-02-03 17.0.0
431

532
- Support Angular 17
@@ -16,11 +43,11 @@
1643
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1812)
1744
- Remove provided in root for interceptor
1845
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1806)
19-
- Support ng-add for standalone applications
46+
- Support ng-add for standalone applications
2047
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1800)
2148
- Code improvement, remove cast
2249
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1787)
23-
50+
2451
### 2023-06-19 16.0.0
2552

2653
- Add provideAuth for standalone applications

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": "17.0.0",
11+
"version": "17.1.0",
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": "17.0.0",
39+
"version": "17.1.0",
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: '17.0.0',
8+
version: '17.1.0',
99
},
1010
];
1111

0 commit comments

Comments
 (0)