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
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ bazel_dep(name = "aspect_rules_jasmine", version = "2.0.4")
bazel_dep(name = "rules_angular")
git_override(
module_name = "rules_angular",
commit = "b1d295334e70335dab7ac9984a989fae0a9c9dc2",
commit = "19914e2fb677d50b16360dcea8740a1b0dd46172",
remote = "https://github.com/angular/rules_angular.git",
)

bazel_dep(name = "devinfra")
git_override(
module_name = "devinfra",
commit = "48c48fa3848de5bb0ec1c3203558f099765165ab",
commit = "f91b383e3128872b21f709d2ae7543344c65526d",
remote = "https://github.com/angular/dev-infra.git",
)

bazel_dep(name = "rules_browsers")
git_override(
module_name = "rules_browsers",
commit = "b03f09ef28a08f8ae07482851cf5ecbf6ac23a2a",
commit = "bf27ea46fdbb0209526ca821f1500d4337eb8299",
remote = "https://github.com/angular/rules_browsers.git",
)

Expand Down
30 changes: 17 additions & 13 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/testing/builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"browser-sync": "3.0.4",
"istanbul-lib-instrument": "6.0.3",
"jsdom": "29.1.1",
"ng-packagr": "22.0.0-next.3",
"ng-packagr": "22.0.0-next.4",
"rxjs": "7.8.2",
"vitest": "4.1.5"
}
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,23 @@
},
"homepage": "https://github.com/angular/angular-cli",
"dependencies": {
"@angular/compiler-cli": "22.0.0-next.10",
"@angular/compiler-cli": "22.0.0-next.12",
"typescript": "6.0.3"
},
"devDependencies": {
"@angular/animations": "22.0.0-next.10",
"@angular/cdk": "22.0.0-next.7",
"@angular/common": "22.0.0-next.10",
"@angular/compiler": "22.0.0-next.10",
"@angular/core": "22.0.0-next.10",
"@angular/forms": "22.0.0-next.10",
"@angular/localize": "22.0.0-next.10",
"@angular/material": "22.0.0-next.7",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#4de8a14a1682d0f07e0b14a3b26498757c195904",
"@angular/platform-browser": "22.0.0-next.10",
"@angular/platform-server": "22.0.0-next.10",
"@angular/router": "22.0.0-next.10",
"@angular/service-worker": "22.0.0-next.10",
"@angular/animations": "22.0.0-next.12",
"@angular/cdk": "22.0.0-next.8",
"@angular/common": "22.0.0-next.12",
"@angular/compiler": "22.0.0-next.12",
"@angular/core": "22.0.0-next.12",
"@angular/forms": "22.0.0-next.12",
"@angular/localize": "22.0.0-next.12",
"@angular/material": "22.0.0-next.8",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#f084e2e88e71cdca8098489e6104ffcdbd9a8eda",
"@angular/platform-browser": "22.0.0-next.12",
"@angular/platform-server": "22.0.0-next.12",
"@angular/router": "22.0.0-next.12",
"@angular/service-worker": "22.0.0-next.12",
"@babel/core": "7.29.0",
"@bazel/bazelisk": "1.28.1",
"@bazel/buildifier": "8.2.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 @@
"istanbul-lib-instrument": "6.0.3",
"jsdom": "29.1.1",
"less": "4.6.4",
"ng-packagr": "22.0.0-next.3",
"ng-packagr": "22.0.0-next.4",
"postcss": "8.5.14",
"rolldown": "1.0.0",
"rxjs": "7.8.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ export async function executeBuild(

// Only run if the number of lazy chunks meets the configured threshold.
// This avoids overhead for small projects with few chunks.
if (lazyChunksCount >= optimizeChunksThreshold) {

// TODO: Remove this log once chunk optimization is supported for server builds as this
// causes the file to be renamed and thus causes incorrect preloading.
if (!options.serverEntryPoint && lazyChunksCount >= optimizeChunksThreshold) {
const { optimizeChunks } = await import('./chunk-optimizer');
const optimizationResult = await profileAsync('OPTIMIZE_CHUNKS', () =>
optimizeChunks(
Expand Down
2 changes: 2 additions & 0 deletions packages/angular/ssr/node/src/common-engine/common-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ export class CommonEngine {
const commonRenderingOptions = {
url: opts.url,
document,
// Validation is already happened in the render method.
allowedHosts: ['*'],
Comment thread
alan-agius4 marked this conversation as resolved.
};

return isBootstrapFn(moduleOrFactory)
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": "22.0.0-next.10",
"@angular/compiler": "22.0.0-next.10",
"@angular/core": "22.0.0-next.10",
"@angular/platform-browser": "22.0.0-next.10",
"@angular/platform-server": "22.0.0-next.10",
"@angular/router": "22.0.0-next.10",
"@angular/common": "22.0.0-next.12",
"@angular/compiler": "22.0.0-next.12",
"@angular/core": "22.0.0-next.12",
"@angular/platform-browser": "22.0.0-next.12",
"@angular/platform-server": "22.0.0-next.12",
"@angular/router": "22.0.0-next.12",
"@schematics/angular": "workspace:*",
"beasties": "0.4.2"
},
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 @@ -66,7 +66,7 @@
"devDependencies": {
"@angular/ssr": "workspace:*",
"browser-sync": "3.0.4",
"ng-packagr": "22.0.0-next.3",
"ng-packagr": "22.0.0-next.4",
"undici": "8.2.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": "22.0.0-next.10",
"@angular/compiler-cli": "22.0.0-next.10",
"@angular/compiler": "22.0.0-next.12",
"@angular/compiler-cli": "22.0.0-next.12",
"typescript": "6.0.3",
"webpack": "5.106.2"
}
Expand Down
Loading
Loading