Skip to content
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
8 changes: 4 additions & 4 deletions constants.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ RELEASE_ENGINES_NODE = "^20.19.0 || ^22.12.0 || >=24.0.0"
RELEASE_ENGINES_NPM = "^6.11.0 || ^7.5.6 || >=8.0.0"
RELEASE_ENGINES_YARN = ">= 1.13.0"

NG_PACKAGR_VERSION = "^20.1.0-next.0"
ANGULAR_FW_VERSION = "^20.1.0-next.0"
ANGULAR_FW_PEER_DEP = "^20.0.0 || ^20.1.0-next.0"
NG_PACKAGR_PEER_DEP = "^20.0.0 || ^20.1.0-next.0"
NG_PACKAGR_VERSION = "^20.1.0"
ANGULAR_FW_VERSION = "^20.1.0"
ANGULAR_FW_PEER_DEP = "^20.0.0"
NG_PACKAGR_PEER_DEP = "^20.0.0"

# Baseline widely-available date in `YYYY-MM-DD` format which defines Angular's
# browser support. This date serves as the source of truth for the Angular CLI's
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,20 @@
},
"homepage": "https://github.com/angular/angular-cli",
"devDependencies": {
"@angular/animations": "20.1.0-next.3",
"@angular/cdk": "20.1.0-next.2",
"@angular/common": "20.1.0-next.3",
"@angular/compiler": "20.1.0-next.3",
"@angular/compiler-cli": "20.1.0-next.3",
"@angular/core": "20.1.0-next.3",
"@angular/forms": "20.1.0-next.3",
"@angular/localize": "20.1.0-next.3",
"@angular/material": "20.1.0-next.2",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#8fe809d31ea3536087ca56cf7ff9ddd544dba658",
"@angular/platform-browser": "20.1.0-next.3",
"@angular/platform-server": "20.1.0-next.3",
"@angular/router": "20.1.0-next.3",
"@angular/service-worker": "20.1.0-next.3",
"@angular/animations": "20.1.0",
"@angular/cdk": "20.1.0",
"@angular/common": "20.1.0",
"@angular/compiler": "20.1.0",
"@angular/compiler-cli": "20.1.0",
"@angular/core": "20.1.0",
"@angular/forms": "20.1.0",
"@angular/localize": "20.1.0",
"@angular/material": "20.1.0",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#800f6e7be48e84780621f8f7e9eec79a865346fd",
"@angular/platform-browser": "20.1.0",
"@angular/platform-server": "20.1.0",
"@angular/router": "20.1.0",
"@angular/service-worker": "20.1.0",
"@bazel/bazelisk": "1.26.0",
"@bazel/buildifier": "8.2.1",
"@eslint/compat": "1.3.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@angular-devkit/core": "workspace:*",
"jsdom": "26.1.0",
"less": "4.3.0",
"ng-packagr": "20.1.0-next.0",
"ng-packagr": "20.1.0",
"postcss": "8.5.6",
"rxjs": "7.8.2",
"vitest": "3.2.4"
Expand Down
12 changes: 6 additions & 6 deletions packages/angular/ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
},
"devDependencies": {
"@angular-devkit/schematics": "workspace:*",
"@angular/common": "20.1.0-next.3",
"@angular/compiler": "20.1.0-next.3",
"@angular/core": "20.1.0-next.3",
"@angular/platform-browser": "20.1.0-next.3",
"@angular/platform-server": "20.1.0-next.3",
"@angular/router": "20.1.0-next.3",
"@angular/common": "20.1.0",
"@angular/compiler": "20.1.0",
"@angular/core": "20.1.0",
"@angular/platform-browser": "20.1.0",
"@angular/platform-server": "20.1.0",
"@angular/router": "20.1.0",
"@schematics/angular": "workspace:*"
},
"sideEffects": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"@angular/ssr": "workspace:*",
"@web/test-runner": "0.20.2",
"browser-sync": "3.0.4",
"ng-packagr": "20.1.0-next.0",
"ng-packagr": "20.1.0",
"undici": "7.11.0"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
},
"devDependencies": {
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
"@angular/compiler": "20.1.0-next.3",
"@angular/compiler-cli": "20.1.0-next.3",
"@angular/compiler": "20.1.0",
"@angular/compiler-cli": "20.1.0",
"typescript": "5.8.3",
"webpack": "5.99.9"
}
Expand Down
Loading