Skip to content

Angular 20 and Node 24 Tests/Docs Updates #7857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pipelines/3p-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ extends:
sourceRepo: ${{ variables.sourceRepo }}
sourceBranch: ${{ variables.sourceBranch }}
workspace: "samples/msal-node-samples"
nodeVersions: [16, 18, 20, 22]
nodeVersions: [16, 18, 20, 22, 24]
samples:
- "auth-code"
- "auth-code-cli-app"
Expand Down
2 changes: 1 addition & 1 deletion lib/msal-angular/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Please see [here](https://github.com/AzureAD/microsoft-authentication-library-fo

### What versions of Angular are supported?

MSAL Angular v4 currently supports Angular 15, 16, 17, 18, and 19.
MSAL Angular v4 currently supports Angular 15, 16, 17, 18, 19 and 20.

MSAL Angular v3 supports Angular 15, 16, 17 and 18.

Expand Down
2 changes: 1 addition & 1 deletion lib/msal-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ At a minimum, `@azure/msal-angular` will follow the [support schedule of the mai

| MSAL Angular version | MSAL support status | Supported Angular versions |
| -------------------- | ------------------- | -------------------------- |
| MSAL Angular v4 | Active development | 15, 16, 17, 18, 19 |
| MSAL Angular v4 | Active development | 15, 16, 17, 18, 19, 20 |
| MSAL Angular v3 | In maintenance | 15, 16, 17, 18 |
| MSAL Angular v2 | In maintenance | 9, 10, 11, 12, 13, 14 |
| MSAL Angular v1 | In maintenance | 6, 7, 8, 9 |
Expand Down
1 change: 1 addition & 0 deletions lib/msal-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ Any major MSAL Node release:

| MSAL Node version | MSAL support status | Supported Node versions |
| ----------------- | ------------------- | ----------------------- |
| 3.x.x | Active development | 16, 18, 20, 22, 24 |
| 2.x.x | Active development | 16, 18, 20, 22 |
| 1.x.x | In maintenance | 10, 12, 14, 16, 18 |

Expand Down
5,107 changes: 2,107 additions & 3,000 deletions package-lock.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"outputPath": "dist/angular-standalone-sample",
"index": "src/index.html",
Expand Down Expand Up @@ -83,7 +83,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "angular-standalone-sample:build:production"
Expand All @@ -98,13 +98,13 @@
"defaultConfiguration": "dev"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"builder": "@angular/build:extract-i18n",
"options": {
"buildTarget": "angular-standalone-sample:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"builder": "@angular/build:karma",
"options": {
"polyfills": [
"zone.js",
Expand All @@ -129,5 +129,31 @@
},
"cli": {
"analytics": false
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.0",
"@angular/common": "^19.1.0",
"@angular/compiler": "^19.1.0",
"@angular/core": "^19.1.0",
"@angular/forms": "^19.1.0",
"@angular/material": "^18.0.0",
"@angular/platform-browser": "^19.1.0",
"@angular/platform-browser-dynamic": "^19.1.0",
"@angular/router": "^19.1.0",
"@angular/animations": "^20.0.4",
"@angular/common": "^20.0.4",
"@angular/compiler": "^20.0.4",
"@angular/core": "^20.0.4",
"@angular/forms": "^20.0.4",
"@angular/material": "^20.0.3",
"@angular/platform-browser": "^20.0.4",
"@angular/platform-browser-dynamic": "^20.0.4",
"@angular/router": "^20.0.4",
"@azure/msal-angular": "^4.0.0",
"@azure/msal-browser": "^4.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.0",
"@angular/cli": "^19.1.0",
"@angular/compiler-cli": "^19.1.0",
"@angular/build": "^20.0.3",
"@angular/cli": "^20.0.3",
"@angular/compiler-cli": "^20.0.4",
"@types/jasmine": "~5.1.0",
"@types/jest": "^29.5.12",
"e2e-test-utils": "file:../../e2eTestUtils",
Expand All @@ -44,6 +44,6 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ts-jest": "^29.1.2",
"typescript": "~5.7.3"
"typescript": "~5.8.3"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "Node",
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
Expand Down