@microsoft/rush 5.57.0-dev.3 → 5.57.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 +27 -0
- package/CHANGELOG.md +13 -1
- package/package.json +2 -2
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "5.57.0",
|
|
6
|
+
"tag": "@microsoft/rush_v5.57.0",
|
|
7
|
+
"date": "Fri, 03 Dec 2021 02:16:10 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Add support for the \"filterLog\" hook in common/config/rush/.pnpmfile.cjs"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "(EXPERIMENTAL) Ability to load third-party plugin packages that customize the behavior of Rush"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Fix an issue where parameter values containing spaces are incorrectly passed to global scripts."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "Added support for the \"--changed-since REF\" and \"--changed-since-only REF\" selection parameters, which select projects that have been modified since the specified Git revision. Updated state computation and change detection to operate at the root of the Git repository that contains rush.json, rather than from the immediate parent folder. This allows nesting rush.json in a subfolder."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"comment": "(EXPERIMENTAL) Add a new NPM package \"@rushstack/rush-sdk\" for use by Rush plugins"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"comment": "Stop deleting the pnpm-store after failed workspace installs. Usually a multiple failure is due to a network error or a package that does not exist in the registry, not an issue with the pnpm-store."
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
4
31
|
{
|
|
5
32
|
"version": "5.56.0",
|
|
6
33
|
"tag": "@microsoft/rush_v5.56.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Change Log - @microsoft/rush
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 03 Dec 2021 02:16:10 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.57.0
|
|
6
|
+
Fri, 03 Dec 2021 02:16:10 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Add support for the "filterLog" hook in common/config/rush/.pnpmfile.cjs
|
|
11
|
+
- (EXPERIMENTAL) Ability to load third-party plugin packages that customize the behavior of Rush
|
|
12
|
+
- Fix an issue where parameter values containing spaces are incorrectly passed to global scripts.
|
|
13
|
+
- Added support for the "--changed-since REF" and "--changed-since-only REF" selection parameters, which select projects that have been modified since the specified Git revision. Updated state computation and change detection to operate at the root of the Git repository that contains rush.json, rather than from the immediate parent folder. This allows nesting rush.json in a subfolder.
|
|
14
|
+
- (EXPERIMENTAL) Add a new NPM package "@rushstack/rush-sdk" for use by Rush plugins
|
|
15
|
+
- Stop deleting the pnpm-store after failed workspace installs. Usually a multiple failure is due to a network error or a package that does not exist in the registry, not an issue with the pnpm-store.
|
|
4
16
|
|
|
5
17
|
## 5.56.0
|
|
6
18
|
Thu, 28 Oct 2021 23:49:31 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
|
-
"version": "5.57.0
|
|
3
|
+
"version": "5.57.0",
|
|
4
4
|
"description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"install",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@microsoft/rush-lib": "5.57.0
|
|
32
|
+
"@microsoft/rush-lib": "5.57.0",
|
|
33
33
|
"@rushstack/node-core-library": "3.43.2",
|
|
34
34
|
"colors": "~1.2.1",
|
|
35
35
|
"semver": "~7.3.0"
|