Skip to content

Commit c616ada

Browse files
authored
Merge pull request #1200 from damienbod/release_12_0_2
Release 12.0.2
2 parents 015d90f + 7b9ab04 commit c616ada

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

CHANGELOG.md

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

3+
### 2021-07-18 12.0.2
4+
5+
- Added fix overwriting prompt param
6+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1193)
7+
- Unclear error message when providing improper config to module
8+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1186)
9+
- added multiple configs documentation
10+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1183)
11+
- Expose PopupService and PopupOptions as public
12+
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1199)
13+
314
### 2021-07-06 12.0.1
415

516
- Fix #1168 userInfoEndpoint Typo

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": "12.0.1",
11+
"version": "12.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
@@ -39,7 +39,7 @@
3939
"authorization"
4040
],
4141
"license": "MIT",
42-
"version": "12.0.1",
42+
"version": "12.0.2",
4343
"description": "Angular Lib for OpenID Connect & OAuth2",
4444
"schematics": "./schematics/collection.json",
4545
"ng-add": {

projects/schematics/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.

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": "12.0.1",
3+
"version": "12.0.2",
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
@@ -4,7 +4,7 @@ import { addPackageJsonDependency, NodeDependency, NodeDependencyType } from '@s
44
const dependenciesToAdd = [
55
{
66
name: 'angular-auth-oidc-client',
7-
version: '12.0.1',
7+
version: '12.0.2',
88
},
99
];
1010

0 commit comments

Comments
 (0)