Skip to content

Commit 8ac0ca6

Browse files
committed
build: update all non-major dependencies
Closes #30112 as a pr takeover
1 parent 0459d80 commit 8ac0ca6

File tree

8 files changed

+253
-181
lines changed

8 files changed

+253
-181
lines changed

Diff for: WORKSPACE

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ build_bazel_rules_nodejs_dependencies()
3131

3232
http_archive(
3333
name = "aspect_rules_js",
34-
sha256 = "1be1a3ec3d3baec4a71bc09ce446eb59bb48ae31af63016481df1532a0d81aee",
35-
strip_prefix = "rules_js-2.3.5",
36-
url = "https://github.com/aspect-build/rules_js/releases/download/v2.3.5/rules_js-v2.3.5.tar.gz",
34+
sha256 = "080aad0a6e6532a9825be54155e4f148e7e472219cd0dc9869a10563eddaf332",
35+
strip_prefix = "rules_js-2.3.6",
36+
url = "https://github.com/aspect-build/rules_js/releases/download/v2.3.6/rules_js-v2.3.6.tar.gz",
3737
)
3838

3939
load("@aspect_rules_js//js:repositories.bzl", "rules_js_dependencies")
@@ -126,9 +126,9 @@ yarn_install(
126126

127127
http_archive(
128128
name = "aspect_bazel_lib",
129-
sha256 = "40ba9d0f62deac87195723f0f891a9803a7b720d7b89206981ca5570ef9df15b",
130-
strip_prefix = "bazel-lib-2.14.0",
131-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.14.0/bazel-lib-v2.14.0.tar.gz",
129+
sha256 = "0b9b764ee5af1cbec01bcd2ca9ebd4aa4bbd700b17d7b8bb015769195fd88d20",
130+
strip_prefix = "bazel-lib-2.15.0",
131+
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.15.0/bazel-lib-v2.15.0.tar.gz",
132132
)
133133

134134
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

Diff for: package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@bazel/buildifier": "8.0.3",
6565
"@eslint/compat": "1.2.8",
6666
"@eslint/eslintrc": "3.3.1",
67-
"@eslint/js": "9.24.0",
67+
"@eslint/js": "9.25.1",
6868
"@rollup/plugin-alias": "^5.1.1",
6969
"@rollup/plugin-commonjs": "^28.0.0",
7070
"@rollup/plugin-json": "^6.1.0",
@@ -94,15 +94,15 @@
9494
"@types/yargs": "^17.0.20",
9595
"@types/yargs-parser": "^21.0.0",
9696
"@types/yarnpkg__lockfile": "^1.1.5",
97-
"@typescript-eslint/eslint-plugin": "8.30.1",
98-
"@typescript-eslint/parser": "8.30.1",
97+
"@typescript-eslint/eslint-plugin": "8.31.0",
98+
"@typescript-eslint/parser": "8.31.0",
9999
"ajv": "8.17.1",
100100
"ansi-colors": "4.1.3",
101-
"beasties": "0.3.2",
101+
"beasties": "0.3.3",
102102
"buffer": "6.0.3",
103103
"esbuild": "0.25.2",
104104
"esbuild-wasm": "0.25.2",
105-
"eslint": "9.24.0",
105+
"eslint": "9.25.1",
106106
"eslint-config-prettier": "10.1.2",
107107
"eslint-plugin-header": "3.1.1",
108108
"eslint-plugin-import": "2.31.0",

Diff for: packages/angular/build/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@babel/helper-split-export-declaration": "7.24.7",
2626
"@inquirer/confirm": "5.1.9",
2727
"@vitejs/plugin-basic-ssl": "2.0.0",
28-
"beasties": "0.3.2",
28+
"beasties": "0.3.3",
2929
"browserslist": "^4.23.0",
3030
"esbuild": "0.25.2",
3131
"https-proxy-agent": "7.0.6",
@@ -38,11 +38,11 @@
3838
"picomatch": "4.0.2",
3939
"piscina": "4.9.2",
4040
"rollup": "4.40.0",
41-
"sass": "1.86.3",
41+
"sass": "1.87.0",
4242
"semver": "7.7.1",
4343
"source-map-support": "0.5.21",
44-
"tinyglobby": "0.2.12",
45-
"vite": "6.2.6",
44+
"tinyglobby": "0.2.13",
45+
"vite": "6.3.2",
4646
"watchpack": "2.4.2"
4747
},
4848
"optionalDependencies": {

Diff for: packages/angular/build/src/tools/vite/plugins/angular-memory-plugin.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,10 @@ async function loadViteClientCode(file: string, disableViteTransport = false): P
136136
if (disableViteTransport) {
137137
const previousUpdatedContents = updatedContents;
138138

139-
updatedContents = updatedContents.replace('transport.connect(handleMessage)', '');
139+
updatedContents = updatedContents.replace(
140+
'transport.connect(createHMRHandler(handleMessage));',
141+
'',
142+
);
140143
assert(
141144
previousUpdatedContents !== updatedContents,
142145
'Failed to update Vite client WebSocket disable.',

Diff for: packages/angular_devkit/build_angular/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@
4848
"postcss-loader": "8.1.1",
4949
"resolve-url-loader": "5.0.0",
5050
"rxjs": "7.8.2",
51-
"sass": "1.86.3",
51+
"sass": "1.87.0",
5252
"sass-loader": "16.0.5",
5353
"semver": "7.7.1",
5454
"source-map-loader": "5.0.0",
5555
"source-map-support": "0.5.21",
5656
"terser": "5.39.0",
5757
"tree-kill": "1.2.2",
5858
"tslib": "2.8.1",
59-
"webpack": "5.99.5",
59+
"webpack": "5.99.6",
6060
"webpack-dev-middleware": "7.4.2",
6161
"webpack-dev-server": "5.2.1",
6262
"webpack-merge": "6.0.1",

Diff for: packages/angular_devkit/build_webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"devDependencies": {
2323
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
2424
"@ngtools/webpack": "workspace:0.0.0-PLACEHOLDER",
25-
"webpack": "5.99.5",
25+
"webpack": "5.99.6",
2626
"webpack-dev-server": "5.2.1"
2727
},
2828
"peerDependencies": {

Diff for: packages/ngtools/webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"@angular/compiler": "20.0.0-next.7",
3131
"@angular/compiler-cli": "20.0.0-next.7",
3232
"typescript": "5.8.3",
33-
"webpack": "5.99.5"
33+
"webpack": "5.99.6"
3434
}
3535
}

0 commit comments

Comments
 (0)