Skip to content

Commit b7b590f

Browse files
committed
Changelog
1 parent f052525 commit b7b590f

File tree

6 files changed

+20
-5
lines changed

6 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+
### 2022-08-26 14.1.4
4+
5+
- Bugfix/unable to extract jwk without kid
6+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1517)
7+
- Make id_token_hint optional on session end logout
8+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1512)
9+
- construction of token endpoint body breaks if pkce is disable
10+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1510)
11+
- deprecating is loading
12+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1504)
13+
- added build step for rxjs 6
14+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1502)
15+
- Added console debug to fulfill browser filters
16+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1499)
17+
318
### 2022-08-06 14.1.3
419

520
- Improve logging error messages

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "14.1.3",
11+
"version": "14.1.4",
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": "14.1.3",
39+
"version": "14.1.4",
4040
"description": "Angular Lib for OpenID Connect & OAuth2",
4141
"schematics": "./schematics/collection.json",
4242
"ng-add": {

projects/schematics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "schematics",
3-
"version": "14.1.3",
3+
"version": "14.1.4",
44
"description": "A schematic for the Angular Lib for OpenID Connect & OAuth2",
55
"scripts": {
66
"build": "tsc -p tsconfig.json",

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: '14.1.3',
8+
version: '14.1.4',
99
},
1010
];
1111

0 commit comments

Comments
 (0)