Skip to content

Commit ea594c8

Browse files
committed
Release 12.0.1
1 parent b9cfc79 commit ea594c8

File tree

9 files changed

+12
-7
lines changed

9 files changed

+12
-7
lines changed

CHANGELOG.md

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

3+
### 2021-07-06 12.0.1
4+
5+
- Fix #1168 userInfoEndpoint Typo
6+
37
### 2021-07-04 Version 12.0.0
48

59
- Configuration via forRoot(...) method https://github.com/damienbod/angular-auth-oidc-client/issues/747 | PR https://github.com/damienbod/angular-auth-oidc-client/pull/1041

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ const httpOptions = {
157157

158158
## Versions
159159

160-
Current Version is Version 12.0.0
160+
Current Version is Version 12.x
161161

162162
- [Info about Version 11](https://github.com/damienbod/angular-auth-oidc-client/tree/version-11)
163163
- [Info about Version 10](https://github.com/damienbod/angular-auth-oidc-client/tree/version-10)

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.0",
11+
"version": "12.0.1",
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.0",
42+
"version": "12.0.1",
4343
"description": "Angular Lib for OpenID Connect & OAuth2",
4444
"schematics": "./schematics/collection.json",
4545
"ng-add": {

projects/sample-code-flow-refresh-tokens/src/app/auth-config.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { AuthModule, LogLevel } from 'angular-auth-oidc-client';
1111
clientId: 'angularCodeRefreshTokens',
1212
scope: 'openid profile email taler_api offline_access',
1313
responseType: 'code',
14+
// autoUserInfo: true,
1415
silentRenew: true,
1516
useRefreshToken: true,
1617
logLevel: LogLevel.Debug,

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.0",
3+
"version": "12.0.1",
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.0',
7+
version: '12.0.1',
88
},
99
];
1010

0 commit comments

Comments
 (0)