@microsoft/rush 5.173.0 → 5.175.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 +55 -0
- package/CHANGELOG.md +30 -1
- package/package.json +10 -11
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "5.175.0",
|
|
6
|
+
"tag": "@microsoft/rush_v5.175.0",
|
|
7
|
+
"date": "Sat, 18 Apr 2026 03:47:29 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Bump the Azure cache plugin dependencies to use `@azure/identity` `~4.13.1` and `@azure/storage-blob` `~12.31.0`."
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Remove unused dependencies: replace `glob-escape` with `fast-glob`'s `escapePath`, replace `figures.pointer` with a named const, replace `builtin-modules` with `node:module.isBuiltin()`."
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Replace `cli-table` dependency with `TerminalTable` from `@rushstack/terminal`."
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"none": [
|
|
21
|
+
{
|
|
22
|
+
"comment": "Bump semver."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"comment": "Replace deprecated `inquirer` packages with modern per-prompt `@inquirer/*` family of packages."
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"version": "5.174.0",
|
|
32
|
+
"tag": "@microsoft/rush_v5.174.0",
|
|
33
|
+
"date": "Thu, 16 Apr 2026 05:25:41 GMT",
|
|
34
|
+
"comments": {
|
|
35
|
+
"none": [
|
|
36
|
+
{
|
|
37
|
+
"comment": "rush-resolver-cache-plugin: add pnpm 10 / lockfile v9 compatibility"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"comment": "Deprecate `minimumReleaseAge` in `common/config/rush/pnpm-config.json`; use `minimumReleaseAgeMinutes` instead"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"comment": "Add support for pnpm global catalog detection to `rush change`. Now, when a dependencyis changed in the pnpm global catalog, changelogs will be required for affected published packages."
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"comment": "Fix a bug where the injected dependency state hash updated on devDependency changes that don't impact the lockfile."
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"comment": "Add \"strictChangefileValidation\" experiment and \"--verify-all\" flag for \"rush change\". When the experiment is enabled, \"rush change --verify\" and \"rush change --verify-all\" will report errors if change files reference nonexistent projects or target non-main projects in a lockstepped version policy."
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"minor": [
|
|
53
|
+
{
|
|
54
|
+
"comment": "Add support for pnpm `trustPolicy`, `trustPolicyExclude`, and `trustPolicyIgnoreAfterMinutes` settings in `pnpm-config.json`."
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
},
|
|
4
59
|
{
|
|
5
60
|
"version": "5.173.0",
|
|
6
61
|
"tag": "@microsoft/rush_v5.173.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
# Change Log - @microsoft/rush
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Sat, 18 Apr 2026 03:47:29 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.175.0
|
|
6
|
+
Sat, 18 Apr 2026 03:47:29 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- Bump the Azure cache plugin dependencies to use `@azure/identity` `~4.13.1` and `@azure/storage-blob` `~12.31.0`.
|
|
11
|
+
- Remove unused dependencies: replace `glob-escape` with `fast-glob`'s `escapePath`, replace `figures.pointer` with a named const, replace `builtin-modules` with `node:module.isBuiltin()`.
|
|
12
|
+
- Replace `cli-table` dependency with `TerminalTable` from `@rushstack/terminal`.
|
|
13
|
+
|
|
14
|
+
### Updates
|
|
15
|
+
|
|
16
|
+
- Bump semver.
|
|
17
|
+
- Replace deprecated `inquirer` packages with modern per-prompt `@inquirer/*` family of packages.
|
|
18
|
+
|
|
19
|
+
## 5.174.0
|
|
20
|
+
Thu, 16 Apr 2026 05:25:41 GMT
|
|
21
|
+
|
|
22
|
+
### Minor changes
|
|
23
|
+
|
|
24
|
+
- Add support for pnpm `trustPolicy`, `trustPolicyExclude`, and `trustPolicyIgnoreAfterMinutes` settings in `pnpm-config.json`.
|
|
25
|
+
|
|
26
|
+
### Updates
|
|
27
|
+
|
|
28
|
+
- rush-resolver-cache-plugin: add pnpm 10 / lockfile v9 compatibility
|
|
29
|
+
- Deprecate `minimumReleaseAge` in `common/config/rush/pnpm-config.json`; use `minimumReleaseAgeMinutes` instead
|
|
30
|
+
- Add support for pnpm global catalog detection to `rush change`. Now, when a dependencyis changed in the pnpm global catalog, changelogs will be required for affected published packages.
|
|
31
|
+
- Fix a bug where the injected dependency state hash updated on devDependency changes that don't impact the lockfile.
|
|
32
|
+
- Add "strictChangefileValidation" experiment and "--verify-all" flag for "rush change". When the experiment is enabled, "rush change --verify" and "rush change --verify-all" will report errors if change files reference nonexistent projects or target non-main projects in a lockstepped version policy.
|
|
4
33
|
|
|
5
34
|
## 5.173.0
|
|
6
35
|
Fri, 10 Apr 2026 22:46:54 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.175.0",
|
|
4
4
|
"description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"install",
|
|
@@ -30,20 +30,19 @@
|
|
|
30
30
|
},
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"semver": "~7.
|
|
34
|
-
"@microsoft/rush-lib": "5.
|
|
35
|
-
"@rushstack/
|
|
36
|
-
"@rushstack/
|
|
33
|
+
"semver": "~7.7.4",
|
|
34
|
+
"@microsoft/rush-lib": "5.175.0",
|
|
35
|
+
"@rushstack/node-core-library": "5.23.1",
|
|
36
|
+
"@rushstack/terminal": "0.23.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"eslint": "~9.37.0",
|
|
40
|
-
"@types/
|
|
41
|
-
"@
|
|
42
|
-
"@rushstack/
|
|
43
|
-
"@rushstack/rush-amazon-s3-build-cache-plugin": "5.173.0",
|
|
40
|
+
"@types/semver": "7.7.1",
|
|
41
|
+
"@rushstack/heft": "1.2.15",
|
|
42
|
+
"@rushstack/rush-azure-storage-build-cache-plugin": "5.175.0",
|
|
44
43
|
"local-node-rig": "1.0.0",
|
|
45
|
-
"@rushstack/rush-
|
|
46
|
-
"@rushstack/rush-
|
|
44
|
+
"@rushstack/rush-amazon-s3-build-cache-plugin": "5.175.0",
|
|
45
|
+
"@rushstack/rush-http-build-cache-plugin": "5.175.0"
|
|
47
46
|
},
|
|
48
47
|
"exports": {
|
|
49
48
|
"./lib/*": {
|