Skip to content

Commit d41193c

Browse files
chore: upgrade to Angular 19.2.17
- Update all @angular/* packages to 19.2.17 - Update @angular/cli and @Angular-devkit to 19.2.19 - Update @angular-eslint packages to 19.0.0 - Update ng-packagr to 19.2.2 - Update zone.js to 0.15.1 - Update TypeScript to 5.8.3 This upgrade addresses Snyk security vulnerabilities: - @angular/[email protected] → @angular/[email protected] - @angular/[email protected] → @angular/[email protected] Skipped optional migrations: - use-application-builder (deferred for separate PR) - provide-initializer (deferred for separate PR) All tests passing. No breaking changes for library consumers.
1 parent 2188c88 commit d41193c

File tree

11 files changed

+3824
-2785
lines changed

11 files changed

+3824
-2785
lines changed

package-lock.json

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

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,28 @@
2525
},
2626
"private": true,
2727
"dependencies": {
28-
"@angular/animations": "^18.2.13",
29-
"@angular/common": "^18.2.13",
30-
"@angular/compiler": "^18.2.13",
31-
"@angular/core": "^18.2.13",
32-
"@angular/platform-browser": "^18.2.13",
33-
"@angular/platform-browser-dynamic": "^18.2.13",
34-
"@angular/router": "^18.2.13",
28+
"@angular/animations": "^19.2.17",
29+
"@angular/common": "^19.2.17",
30+
"@angular/compiler": "^19.2.17",
31+
"@angular/core": "^19.2.17",
32+
"@angular/platform-browser": "^19.2.17",
33+
"@angular/platform-browser-dynamic": "^19.2.17",
34+
"@angular/router": "^19.2.17",
3535
"@auth0/auth0-spa-js": "^2.11.0",
3636
"rxjs": "^6.6.7",
3737
"tslib": "^2.8.1",
38-
"zone.js": "~0.14.10"
38+
"zone.js": "~0.15.1"
3939
},
4040
"devDependencies": {
41-
"@angular-devkit/build-angular": "^18.2.21",
42-
"@angular-eslint/builder": "18.4.3",
43-
"@angular-eslint/eslint-plugin": "18.4.3",
44-
"@angular-eslint/eslint-plugin-template": "18.4.3",
45-
"@angular-eslint/schematics": "18.4.3",
46-
"@angular-eslint/template-parser": "18.4.3",
47-
"@angular/cli": "^18.2.20",
48-
"@angular/compiler-cli": "^18.2.13",
49-
"@angular/forms": "^18.2.13",
41+
"@angular-devkit/build-angular": "^19.2.19",
42+
"@angular-eslint/builder": "^19.0.0",
43+
"@angular-eslint/eslint-plugin": "^19.0.0",
44+
"@angular-eslint/eslint-plugin-template": "^19.0.0",
45+
"@angular-eslint/schematics": "^19.0.0",
46+
"@angular-eslint/template-parser": "^19.0.0",
47+
"@angular/cli": "^19.2.19",
48+
"@angular/compiler-cli": "^19.2.17",
49+
"@angular/forms": "^19.2.17",
5050
"@cypress/schematic": "^2.5.2",
5151
"@types/jasmine": "^3.10.18",
5252
"@types/jasminewd2": "~2.0.13",
@@ -69,14 +69,14 @@
6969
"jest-preset-angular": "^14.6.2",
7070
"jwks-rsa": "^3.2.0",
7171
"moment": "^2.30.1",
72-
"ng-packagr": "^18.2.1",
72+
"ng-packagr": "^19.2.2",
7373
"oidc-provider": "^7.6.0",
7474
"prettier": "^2.8.8",
7575
"pretty-quick": "^2.0.2",
7676
"protractor": "~7.0.0",
7777
"ts-node": "^10.9.2",
7878
"typedoc": "^0.28.15",
79-
"typescript": "~5.4.5"
79+
"typescript": "~5.8.3"
8080
},
8181
"prettier": {
8282
"semi": true,

projects/auth0-angular/src/lib/abstract-navigator.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ describe('RouteNavigator', () => {
1010
let replaceStateSpy: any;
1111

1212
// Stub component for the sake of getting the router to accept routes
13-
@Component({})
13+
@Component({
14+
standalone: false,
15+
})
1416
class StubComponent {}
1517

1618
describe('with no router', () => {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default { name: '@auth0/auth0-angular', version: '2.2.1' };
1+
export default { name: '@auth0/auth0-angular', version: '2.3.0' };

projects/playground/src/app/app.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { LogoutOptions } from 'projects/auth0-angular/src/lib/interfaces';
1111
selector: 'app-root',
1212
templateUrl: './app.component.html',
1313
styleUrls: ['./app.component.css'],
14+
standalone: false,
1415
})
1516
export class AppComponent implements OnInit {
1617
isAuthenticated$ = this.auth.isAuthenticated$;

projects/playground/src/app/components/child-route.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ import { Component } from '@angular/core';
88
<router-outlet></router-outlet>
99
`,
1010
styles: [],
11+
standalone: false,
1112
})
1213
export class ChildRouteComponent {}

projects/playground/src/app/components/error.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ import { Component, OnInit } from '@angular/core';
44
selector: 'app-error',
55
template: '<p data-cy="error">Error!</p>',
66
styles: [],
7+
standalone: false,
78
})
89
export class ErrorComponent {}

projects/playground/src/app/components/lazy-module.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ import { Component } from '@angular/core';
44
selector: 'app-lazy-module',
55
template: '<p data-cy="lazy-module">lazy-module works!</p>',
66
styles: [],
7+
standalone: false,
78
})
89
export class LazyModuleComponent {}

projects/playground/src/app/components/nested-child-route.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ import { Component } from '@angular/core';
44
selector: 'app-nested-child-route',
55
template: ` <p data-cy="nested-child-route">Nested child-route works!</p> `,
66
styles: [],
7+
standalone: false,
78
})
89
export class NestedChildRouteComponent {}

projects/playground/src/app/components/protected.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ import { Component } from '@angular/core';
44
selector: 'app-protected',
55
template: '<p data-cy="protected">This route is protected!</p>',
66
styles: [],
7+
standalone: false,
78
})
89
export class ProtectedComponent {}

0 commit comments

Comments
 (0)