chore: update to FusionAuth Angular SDK version 2.0.0#35
Draft
mrudatsprint wants to merge 3 commits into
Draft
Conversation
chore: upgrade the Angular SDK to v2.0.0
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Updates the Angular client quickstart to use FusionAuth Angular SDK v2.0.0, alongside a broader modernization of the Angular workspace and FusionAuth kickstart message templates.
Changes:
- Upgraded
@fusionauth/angular-sdkto^2.0.0and updated the Angular/TypeScript toolchain configuration. - Migrated templates from
*ngIfto the new Angular control-flow syntax (@if). - Updated FusionAuth kickstart default messages (new keys, revised copy, and styling classes).
Reviewed changes
Copilot reviewed 11 out of 12 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| kickstart/templates/defaultMessages.txt | Updates seeded FusionAuth message keys/values for newer server/theme behavior. |
| complete-application/tsconfig.json | Updates TS compiler settings for newer Angular/TS versions. |
| complete-application/tsconfig.app.json | Aligns app tsconfig header URL with Angular docs. |
| complete-application/tsconfig.spec.json | Aligns spec tsconfig header URL with Angular docs. |
| complete-application/src/app/make-change-page/make-change-page.component.html | Replaces *ngIf with @if control-flow syntax. |
| complete-application/src/app/app.component.ts | Sets standalone: false for module-based root component. |
| complete-application/src/app/app.component.spec.ts | Adds a minimal AppComponent creation test. |
| complete-application/src/app/app.component.html | Replaces *ngIf blocks with @if/@else control-flow syntax. |
| complete-application/README.md | Removes the deprecated e2e section. |
| complete-application/package.json | Upgrades Angular deps + FusionAuth SDK version and related tooling versions. |
| complete-application/angular.json | Migrates builders to @angular/build:* and updates test configuration. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
4
to
7
| "cli": { | ||
| "packageManager": "npm" | ||
| "packageManager": "npm", | ||
| "analytics": "08a0752d-c2ef-47fd-8482-1d847e38bd73" | ||
| }, |
Comment on lines
22
to
25
| "rxjs": "~7.8.1", | ||
| "tslib": "^2.6.2", | ||
| "zone.js": "~0.14.4" | ||
| "zone.js": "~0.15.0" | ||
| }, |
Comment on lines
+13
to
+21
| "@angular/animations": "^22.0.0", | ||
| "@angular/common": "^22.0.0", | ||
| "@angular/compiler": "^22.0.0", | ||
| "@angular/core": "^22.0.0", | ||
| "@angular/forms": "^22.0.0", | ||
| "@angular/platform-browser": "^22.0.0", | ||
| "@angular/platform-browser-dynamic": "^22.0.0", | ||
| "@angular/router": "^22.0.0", | ||
| "@fusionauth/angular-sdk": "^2.0.0", |
Author
There was a problem hiding this comment.
The PR description has been updated.
Comment on lines
11
to
12
| "private": true, | ||
| "dependencies": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description: