Skip to content

Commit 30ff589

Browse files
build: update cross-repo angular dependencies
See associated pull request for more information.
1 parent a76bc3c commit 30ff589

37 files changed

Lines changed: 975 additions & 1023 deletions

File tree

.github/actions/deploy-docs-site/main.js

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37421,7 +37421,7 @@ function getCachedConfig() {
3742137421
return cachedConfig;
3742237422
}
3742337423
var CONFIG_FILE_PATH_MATCHER = ".ng-dev/config.mjs";
37424-
async function getConfig(baseDirOrAssertions) {
37424+
async function getConfig(baseDirOrAssertions, returnNullOnConfigNotFound = false) {
3742537425
let cachedConfig2 = getCachedConfig();
3742637426
if (cachedConfig2 === null) {
3742737427
let baseDir;
@@ -37431,7 +37431,10 @@ async function getConfig(baseDirOrAssertions) {
3743137431
baseDir = determineRepoBaseDirFromCwd();
3743237432
}
3743337433
const configPath = join32(baseDir, CONFIG_FILE_PATH_MATCHER);
37434-
cachedConfig2 = await readConfigFile(configPath);
37434+
cachedConfig2 = await readConfigFile(configPath, returnNullOnConfigNotFound);
37435+
if (returnNullOnConfigNotFound && !cachedConfig2) {
37436+
return null;
37437+
}
3743537438
setCachedConfig(cachedConfig2);
3743637439
}
3743737440
if (Array.isArray(baseDirOrAssertions)) {
@@ -37466,14 +37469,14 @@ function assertValidGithubConfig(config) {
3746637469
throw new ConfigValidationError("Invalid `github` configuration", errors);
3746737470
}
3746837471
}
37469-
async function readConfigFile(configPath, returnEmptyObjectOnError = false) {
37472+
async function readConfigFile(configPath, returnNullOnConfigNotFound = false) {
3747037473
try {
3747137474
return await import(pathToFileURL(configPath).toString());
3747237475
} catch (e) {
37473-
if (returnEmptyObjectOnError) {
37476+
if (returnNullOnConfigNotFound) {
3747437477
Log.debug(`Could not read configuration file at ${configPath}, returning empty object instead.`);
3747537478
Log.debug(e);
37476-
return {};
37479+
return null;
3747737480
}
3747837481
Log.error(`Could not read configuration file at ${configPath}.`);
3747937482
Log.error(e);
@@ -51730,7 +51733,7 @@ content-type/dist/index.js:
5173051733
(* v8 ignore next -- @preserve *)
5173151734
(* v8 ignore else -- @preserve *)
5173251735

51733-
@angular/ng-dev/bundles/chunk-PVA34BB2.mjs:
51736+
@angular/ng-dev/bundles/chunk-2FS7LFXG.mjs:
5173451737
(*! Bundled license information:
5173551738

5173651739
yargs-parser/build/lib/string-utils.js:
@@ -51771,7 +51774,7 @@ content-type/dist/index.js:
5177151774
*)
5177251775
*)
5177351776

51774-
@angular/ng-dev/bundles/chunk-4EMV7NEU.mjs:
51777+
@angular/ng-dev/bundles/chunk-WBKY7U4X.mjs:
5177551778
(*! Bundled license information:
5177651779

5177751780
content-type/dist/index.js:

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ bazel_dep(name = "yq.bzl", version = "0.3.6")
1818
bazel_dep(name = "rules_angular")
1919
git_override(
2020
module_name = "rules_angular",
21-
commit = "c898ddb32c0428e7d97efc713393db84ffa6a38e",
21+
commit = "9992bbbb7869379b9240e429694e9f35b8d98d4b",
2222
remote = "https://github.com/angular/rules_angular.git",
2323
)
2424

2525
bazel_dep(name = "devinfra")
2626
git_override(
2727
module_name = "devinfra",
28-
commit = "9ee8a680dd018d61d21588bb04cf40d49a9f5deb",
28+
commit = "a9fcd3b48e50c7198cf257dea0db07b230afac13",
2929
remote = "https://github.com/angular/dev-infra.git",
3030
)
3131

@@ -39,7 +39,7 @@ git_override(
3939
bazel_dep(name = "rules_browsers")
4040
git_override(
4141
module_name = "rules_browsers",
42-
commit = "45441c79322943fc1638b3a40741e925d6089e7b",
42+
commit = "fe03af52b8b7471dc2965443dc8cb2e4a177db0b",
4343
remote = "https://github.com/angular/rules_browsers.git",
4444
)
4545

MODULE.bazel.lock

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

adev/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
"@algolia/requester-browser-xhr": "5.52.1",
66
"@algolia/requester-node-http": "5.52.1",
77
"@angular/animations": "workspace:*",
8-
"@angular/aria": "22.0.0-rc.2",
9-
"@angular/build": "22.0.0-rc.2",
10-
"@angular/cdk": "22.0.0-rc.2",
11-
"@angular/cli": "22.0.0-rc.2",
8+
"@angular/aria": "22.0.0-rc.3",
9+
"@angular/build": "22.0.0-rc.3",
10+
"@angular/cdk": "22.0.0-rc.3",
11+
"@angular/cli": "22.0.0-rc.3",
1212
"@angular/common": "workspace:*",
1313
"@angular/compiler": "workspace:*",
1414
"@angular/compiler-cli": "workspace:*",
1515
"@angular/core": "workspace:*",
1616
"@angular/docs": "workspace:*",
1717
"@angular/forms": "workspace:*",
18-
"@angular/material": "22.0.0-rc.2",
18+
"@angular/material": "22.0.0-rc.3",
1919
"@angular/platform-browser": "workspace:*",
2020
"@angular/platform-server": "workspace:*",
2121
"@angular/router": "workspace:*",
22-
"@angular/ssr": "22.0.0-rc.2",
22+
"@angular/ssr": "22.0.0-rc.3",
2323
"@codemirror/autocomplete": "6.20.2",
2424
"@codemirror/commands": "6.10.3",
2525
"@codemirror/lang-angular": "0.1.4",

dev-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
"@angular/platform-server": "workspace:*",
1616
"@angular/localize": "workspace:*",
1717
"@angular/router": "workspace:*",
18-
"@angular/ssr": "22.0.0-rc.2",
18+
"@angular/ssr": "22.0.0-rc.3",
1919
"rxjs": "~7.8.0",
2020
"tslib": "^2.3.0"
2121
},
2222
"devDependencies": {
23-
"@angular/build": "22.0.0-rc.2",
24-
"@angular/cli": "22.0.0-rc.2",
23+
"@angular/build": "22.0.0-rc.3",
24+
"@angular/cli": "22.0.0-rc.3",
2525
"@angular/compiler-cli": "workspace:*",
2626
"jsdom": "^29.0.0",
2727
"typescript": "~6.0.2",

integration/animations/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/cdk": "22.0.0-rc.2",
14+
"@angular/cdk": "22.0.0-rc.3",
1515
"@angular/common": "link:./in-existing-linked-by-bazel",
1616
"@angular/compiler": "link:./in-existing-linked-by-bazel",
1717
"@angular/core": "link:./in-existing-linked-by-bazel",
1818
"@angular/forms": "link:./in-existing-linked-by-bazel",
1919
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
2020
"@angular/platform-browser-dynamic": "link:./in-existing-linked-by-bazel",
2121
"@angular/router": "link:./in-existing-linked-by-bazel",
22-
"@angular/ssr": "22.0.0-rc.2",
22+
"@angular/ssr": "22.0.0-rc.3",
2323
"rxjs": "^7.0.0",
2424
"tslib": "^2.3.0",
2525
"zone.js": "0.16.2"
2626
},
2727
"devDependencies": {
28-
"@angular-devkit/build-angular": "22.0.0-rc.2",
29-
"@angular/build": "22.0.0-rc.2",
30-
"@angular/cli": "22.0.0-rc.2",
28+
"@angular-devkit/build-angular": "22.0.0-rc.3",
29+
"@angular/build": "22.0.0-rc.3",
30+
"@angular/cli": "22.0.0-rc.3",
3131
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
3232
"@types/jasmine": "^6.0.0",
3333
"@types/node": "^20.14.8",

0 commit comments

Comments
 (0)