@microsoft/rush 5.175.1 → 5.177.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +51 -0
- package/CHANGELOG.md +31 -1
- package/package.json +6 -6
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,57 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "5.177.0",
|
|
6
|
+
"tag": "@microsoft/rush_v5.177.0",
|
|
7
|
+
"date": "Sat, 20 Jun 2026 00:16:15 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Fix build cache failures when running inside a git linked worktree via a pre-commit hook, caused by GIT_DIR being set to the per-worktree metadata directory"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"patch": [
|
|
15
|
+
{
|
|
16
|
+
"comment": "Set Redis `connectTimeout` and `socketTimeout` so half-dead TCP connections (NAT/firewall) surface in seconds instead of stalling in-flight commands for many minutes while the kernel waits to give up."
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"version": "5.176.0",
|
|
23
|
+
"tag": "@microsoft/rush_v5.176.0",
|
|
24
|
+
"date": "Tue, 09 Jun 2026 02:02:32 GMT",
|
|
25
|
+
"comments": {
|
|
26
|
+
"none": [
|
|
27
|
+
{
|
|
28
|
+
"comment": "Bump the `ws` dependency to `~8.20.0`."
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"minor": [
|
|
32
|
+
{
|
|
33
|
+
"comment": "Add support for pnpm 11's `allowBuilds` field in `pnpm-workspace.yaml`. Rush now correctly handles the pnpm 11 security model where build scripts must be explicitly approved. The new `globalAllowBuilds` field in `pnpm-config.json` replaces the deprecated `globalOnlyBuiltDependencies` and `globalNeverBuiltDependencies` fields for pnpm 11+. The `rush-pnpm approve-builds` command is also updated to work correctly with pnpm 11."
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"comment": "Include seconds in the generated change file name so that running `rush change` more than once in the same minute no longer silently overwrites the previously generated change file."
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"comment": "Default `rush-pnpm outdated` and `rush-pnpm why` to recursive workspace queries."
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"patch": [
|
|
43
|
+
{
|
|
44
|
+
"comment": "Fix a regression where Rush change-detection treated any `pnpm-config.json` containing comments as unparseable, causing every project to be flagged as impacted."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"comment": "Route the \"Lockfile was created or deleted\" warning to stderr so that machine-readable output (e.g. `rush list --json`) remains parseable when the lockfile was added or removed in the diff range."
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"comment": "Fix `rush update` not syncing `pnpm-lock.yaml` when a workspace dependency moves from `dependencies` to `devDependencies`."
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
},
|
|
4
55
|
{
|
|
5
56
|
"version": "5.175.1",
|
|
6
57
|
"tag": "@microsoft/rush_v5.175.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
# Change Log - @microsoft/rush
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Sat, 20 Jun 2026 00:16:15 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.177.0
|
|
6
|
+
Sat, 20 Jun 2026 00:16:15 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- Set Redis `connectTimeout` and `socketTimeout` so half-dead TCP connections (NAT/firewall) surface in seconds instead of stalling in-flight commands for many minutes while the kernel waits to give up.
|
|
11
|
+
|
|
12
|
+
### Updates
|
|
13
|
+
|
|
14
|
+
- Fix build cache failures when running inside a git linked worktree via a pre-commit hook, caused by GIT_DIR being set to the per-worktree metadata directory
|
|
15
|
+
|
|
16
|
+
## 5.176.0
|
|
17
|
+
Tue, 09 Jun 2026 02:02:32 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- Add support for pnpm 11's `allowBuilds` field in `pnpm-workspace.yaml`. Rush now correctly handles the pnpm 11 security model where build scripts must be explicitly approved. The new `globalAllowBuilds` field in `pnpm-config.json` replaces the deprecated `globalOnlyBuiltDependencies` and `globalNeverBuiltDependencies` fields for pnpm 11+. The `rush-pnpm approve-builds` command is also updated to work correctly with pnpm 11.
|
|
22
|
+
- Include seconds in the generated change file name so that running `rush change` more than once in the same minute no longer silently overwrites the previously generated change file.
|
|
23
|
+
- Default `rush-pnpm outdated` and `rush-pnpm why` to recursive workspace queries.
|
|
24
|
+
|
|
25
|
+
### Patches
|
|
26
|
+
|
|
27
|
+
- Fix a regression where Rush change-detection treated any `pnpm-config.json` containing comments as unparseable, causing every project to be flagged as impacted.
|
|
28
|
+
- Route the "Lockfile was created or deleted" warning to stderr so that machine-readable output (e.g. `rush list --json`) remains parseable when the lockfile was added or removed in the diff range.
|
|
29
|
+
- Fix `rush update` not syncing `pnpm-lock.yaml` when a workspace dependency moves from `dependencies` to `devDependencies`.
|
|
30
|
+
|
|
31
|
+
### Updates
|
|
32
|
+
|
|
33
|
+
- Bump the `ws` dependency to `~8.20.0`.
|
|
4
34
|
|
|
5
35
|
## 5.175.1
|
|
6
36
|
Mon, 20 Apr 2026 23:31:34 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.177.0",
|
|
4
4
|
"description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"install",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"semver": "~7.7.4",
|
|
34
|
-
"@microsoft/rush-lib": "5.
|
|
34
|
+
"@microsoft/rush-lib": "5.177.0",
|
|
35
35
|
"@rushstack/terminal": "0.24.0",
|
|
36
36
|
"@rushstack/node-core-library": "5.23.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"eslint": "~9.37.0",
|
|
40
40
|
"@types/semver": "7.7.1",
|
|
41
|
-
"@rushstack/
|
|
41
|
+
"@rushstack/rush-azure-storage-build-cache-plugin": "5.177.0",
|
|
42
42
|
"local-node-rig": "1.0.0",
|
|
43
|
-
"@rushstack/rush-
|
|
44
|
-
"@rushstack/rush-
|
|
45
|
-
"@rushstack/
|
|
43
|
+
"@rushstack/rush-http-build-cache-plugin": "5.177.0",
|
|
44
|
+
"@rushstack/rush-amazon-s3-build-cache-plugin": "5.177.0",
|
|
45
|
+
"@rushstack/heft": "1.2.19"
|
|
46
46
|
},
|
|
47
47
|
"exports": {
|
|
48
48
|
"./lib/*": {
|