Skip to content

Commit 234901d

Browse files
committed
build: bump version to 20.0.2, update docs
1 parent 5d10af2 commit 234901d

File tree

14 files changed

+241
-226
lines changed

14 files changed

+241
-226
lines changed

docs/dependencies.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@
123123
<li>
124124
<b>@webcomponents/custom-elements</b> : ^1.4.3</li>
125125
<li>
126-
<b>angular-oauth2-oidc</b> : ^17.0.0</li>
126+
<b>angular-oauth2-oidc</b> : ^20.0.0</li>
127127
<li>
128-
<b>angular-oauth2-oidc-jwks</b> : ^17.0.0</li>
128+
<b>angular-oauth2-oidc-jwks</b> : ^20.0.0</li>
129129
<li>
130130
<b>base64-js</b> : ^1.5.1</li>
131131
<li>

docs/injectables/OAuthService.html

Lines changed: 199 additions & 205 deletions
Large diffs are not rendered by default.

docs/js/search/search_index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/properties.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</ol>
103103
<ul class="properties-list">
104104
<li>
105-
<b>Version</b> : 20.0.0</li>
105+
<b>Version</b> : 20.0.2</li>
106106
<li>
107107
<b>License</b> : MIT</li>
108108
</ul>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-oauth2-oidc",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"license": "MIT",
55
"scripts": {
66
"release": "standard-version",

projects/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-oauth2-oidc",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"license": "MIT",
55
"author": {
66
"name": "Manfred Steyer"

projects/lib/src/oauth-service.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
import {
2-
Injectable,
3-
NgZone,
4-
Optional,
5-
OnDestroy,
6-
Inject,
7-
} from '@angular/core';
1+
import { Injectable, NgZone, Optional, OnDestroy, Inject } from '@angular/core';
82
import { DOCUMENT } from '@angular/common';
93
import {
104
HttpClient,

projects/quickstart-demo/src/app/app.module.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { NgModule } from '@angular/core';
33

44
import { AppComponent } from './app.component';
55
import { OAuthModule } from 'angular-oauth2-oidc';
6-
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
6+
import {
7+
provideHttpClient,
8+
withInterceptorsFromDi,
9+
} from '@angular/common/http';
710

811
@NgModule({
912
declarations: [AppComponent],

projects/quickstart-demo/src/test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
import 'zone.js/testing';
44
import { getTestBed } from '@angular/core/testing';
5-
import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
5+
import {
6+
BrowserDynamicTestingModule,
7+
platformBrowserDynamicTesting,
8+
} from '@angular/platform-browser-dynamic/testing';
69

710
// First, initialize the Angular testing environment.
811
getTestBed().initTestEnvironment(

projects/sample/src/app/app.module.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import { NgModule } from '@angular/core';
22
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
33
import { BrowserModule } from '@angular/platform-browser';
44
import { OAuthModule } from 'angular-oauth2-oidc';
5-
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
5+
import {
6+
provideHttpClient,
7+
withInterceptorsFromDi,
8+
} from '@angular/common/http';
69

710
import { AppComponent } from './app.component';
811
import { APP_ROUTES } from './app.routes';

0 commit comments

Comments
 (0)