@microsoft/rush 5.160.0 → 5.161.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 +36 -0
- package/CHANGELOG.md +19 -1
- package/package.json +9 -9
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "5.161.0",
|
|
6
|
+
"tag": "@microsoft/rush_v5.161.0",
|
|
7
|
+
"date": "Fri, 17 Oct 2025 23:22:50 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Add an `allowOversubscription` option to the command definitions in `common/config/rush/command-line.json` to prevent running tasks from exceeding concurrency."
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Add support for PNPM's minimumReleaseAge setting to help mitigate supply chain attacks"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Enable prerelease version matching in bridge-package command"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "Fix an issue where `rush add --make-consistent ...` may drop the `implicitlyPreferredVersions` and `ensureConsistentVersions` properties from `common/config/rush/common-versions.json`."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"comment": "Treat intermittent ignored redis errors as warnings and allow build to continue."
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"version": "5.160.1",
|
|
30
|
+
"tag": "@microsoft/rush_v5.160.1",
|
|
31
|
+
"date": "Fri, 03 Oct 2025 22:25:25 GMT",
|
|
32
|
+
"comments": {
|
|
33
|
+
"none": [
|
|
34
|
+
{
|
|
35
|
+
"comment": "Fix an issue with validation of the `pnpm-lock.yaml` `packageExtensionsChecksum` field in pnpm v10."
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
4
40
|
{
|
|
5
41
|
"version": "5.160.0",
|
|
6
42
|
"tag": "@microsoft/rush_v5.160.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
# Change Log - @microsoft/rush
|
|
2
2
|
|
|
3
|
-
This log was last generated on Fri,
|
|
3
|
+
This log was last generated on Fri, 17 Oct 2025 23:22:50 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.161.0
|
|
6
|
+
Fri, 17 Oct 2025 23:22:50 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Add an `allowOversubscription` option to the command definitions in `common/config/rush/command-line.json` to prevent running tasks from exceeding concurrency.
|
|
11
|
+
- Add support for PNPM's minimumReleaseAge setting to help mitigate supply chain attacks
|
|
12
|
+
- Enable prerelease version matching in bridge-package command
|
|
13
|
+
- Fix an issue where `rush add --make-consistent ...` may drop the `implicitlyPreferredVersions` and `ensureConsistentVersions` properties from `common/config/rush/common-versions.json`.
|
|
14
|
+
- Treat intermittent ignored redis errors as warnings and allow build to continue.
|
|
15
|
+
|
|
16
|
+
## 5.160.1
|
|
17
|
+
Fri, 03 Oct 2025 22:25:25 GMT
|
|
18
|
+
|
|
19
|
+
### Updates
|
|
20
|
+
|
|
21
|
+
- Fix an issue with validation of the `pnpm-lock.yaml` `packageExtensionsChecksum` field in pnpm v10.
|
|
4
22
|
|
|
5
23
|
## 5.160.0
|
|
6
24
|
Fri, 03 Oct 2025 20:10:21 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.161.0",
|
|
4
4
|
"description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"install",
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"semver": "~7.5.4",
|
|
34
|
-
"@microsoft/rush-lib": "5.
|
|
35
|
-
"@rushstack/node-core-library": "5.
|
|
36
|
-
"@rushstack/terminal": "0.19.
|
|
34
|
+
"@microsoft/rush-lib": "5.161.0",
|
|
35
|
+
"@rushstack/node-core-library": "5.17.0",
|
|
36
|
+
"@rushstack/terminal": "0.19.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"eslint": "~9.
|
|
39
|
+
"eslint": "~9.37.0",
|
|
40
40
|
"@types/heft-jest": "1.0.1",
|
|
41
41
|
"@types/semver": "7.5.0",
|
|
42
|
-
"@rushstack/heft": "1.1.0",
|
|
43
|
-
"@rushstack/rush-amazon-s3-build-cache-plugin": "5.160.0",
|
|
44
42
|
"local-node-rig": "1.0.0",
|
|
45
|
-
"@rushstack/rush-
|
|
46
|
-
"@rushstack/rush-
|
|
43
|
+
"@rushstack/rush-amazon-s3-build-cache-plugin": "5.161.0",
|
|
44
|
+
"@rushstack/rush-azure-storage-build-cache-plugin": "5.161.0",
|
|
45
|
+
"@rushstack/heft": "1.1.1",
|
|
46
|
+
"@rushstack/rush-http-build-cache-plugin": "5.161.0"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "heft build --clean",
|