@microsoft/rush 5.59.1 → 5.60.0-rc.1
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 +33 -0
- package/CHANGELOG.md +23 -6
- package/package.json +4 -4
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "5.60.0-rc.1",
|
|
6
|
+
"tag": "@microsoft/rush_v5.60.0-rc.1",
|
|
7
|
+
"date": "Tue, 18 Jan 2022 19:21:37 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Fix the \"allowWarningsInSuccessfulBuild\" option in bulk commands defined in common/config/command-line.json."
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "(BREAKING CHANGE) The experimental config file options \"skipPhasesForCommand\" and \"addPhasesToCommand\" have been temporarily removed until their design can be better formalized."
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Include NodeJS 16 in the range of supported versions (`nodeSupportedVersionRange`) in the `rush.json` file generated by `rush init`."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "(BREAKING CHANGE) Some experimental fields have been renamed in \"config/rush-project.json\". Please see UPGRADING.md for details."
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"version": "5.59.2",
|
|
27
|
+
"tag": "@microsoft/rush_v5.59.2",
|
|
28
|
+
"date": "Fri, 07 Jan 2022 02:34:59 GMT",
|
|
29
|
+
"comments": {
|
|
30
|
+
"none": [
|
|
31
|
+
{
|
|
32
|
+
"comment": "Fixes a regression that broke \"rush build\" completely when not using the \"--only\" parameter."
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
4
37
|
{
|
|
5
38
|
"version": "5.59.1",
|
|
6
39
|
"tag": "@microsoft/rush_v5.59.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# Change Log - @microsoft/rush
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 18 Jan 2022 19:21:37 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.60.0-rc.1
|
|
6
|
+
Tue, 18 Jan 2022 19:21:37 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Fix the "allowWarningsInSuccessfulBuild" option in bulk commands defined in common/config/command-line.json.
|
|
11
|
+
- (BREAKING CHANGE) The experimental config file options "skipPhasesForCommand" and "addPhasesToCommand" have been temporarily removed until their design can be better formalized.
|
|
12
|
+
- Include NodeJS 16 in the range of supported versions (`nodeSupportedVersionRange`) in the `rush.json` file generated by `rush init`.
|
|
13
|
+
- (BREAKING CHANGE) Some experimental fields have been renamed in "config/rush-project.json". Please see UPGRADING.md for details.
|
|
14
|
+
|
|
15
|
+
## 5.59.2
|
|
16
|
+
Fri, 07 Jan 2022 02:34:59 GMT
|
|
17
|
+
|
|
18
|
+
### Updates
|
|
19
|
+
|
|
20
|
+
- Fixes a regression that broke "rush build" completely when not using the "--only" parameter.
|
|
4
21
|
|
|
5
22
|
## 5.59.1
|
|
6
23
|
Fri, 07 Jan 2022 01:21:44 GMT
|
|
@@ -1055,7 +1072,7 @@ Thu, 11 Jul 2019 22:00:50 GMT
|
|
|
1055
1072
|
|
|
1056
1073
|
### Updates
|
|
1057
1074
|
|
|
1058
|
-
- Fix for issue https://github.com/microsoft/web-build-tools/issues/1349 rush install fails when there is a preferred version with a peer dependency. This was caused by file format changes in pnpm 3.x
|
|
1075
|
+
- Fix for issue https://github.com/microsoft/web-build-tools/issues/1349 rush install fails when there is a preferred version with a peer dependency. This was caused by file format changes in pnpm 3.x
|
|
1059
1076
|
- Fix an issue where "rush add" erroneously believes ensureConsistentVersions is unset.
|
|
1060
1077
|
- Fix an issue that arises when "rush add" is run and the package manager isn't installed.
|
|
1061
1078
|
- Fix an issue where rush add -m doesn't corretly update the common-versions.json file.
|
|
@@ -1537,9 +1554,9 @@ Fri, 06 Oct 2017 22:44:31 GMT
|
|
|
1537
1554
|
### Patches
|
|
1538
1555
|
|
|
1539
1556
|
- Enable strickNullChecks
|
|
1540
|
-
- Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
|
|
1541
|
-
- Fix a bug in "rush change" so it handles rename properly.
|
|
1542
|
-
- Add npm tag support in "rush publish".
|
|
1557
|
+
- Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
|
|
1558
|
+
- Fix a bug in "rush change" so it handles rename properly.
|
|
1559
|
+
- Add npm tag support in "rush publish".
|
|
1543
1560
|
|
|
1544
1561
|
## 3.0.18
|
|
1545
1562
|
Tue, 26 Sep 2017 13:51:05 GMT
|
|
@@ -1794,7 +1811,7 @@ Sun, 22 Jan 2017 02:04:57 GMT
|
|
|
1794
1811
|
|
|
1795
1812
|
### Patches
|
|
1796
1813
|
|
|
1797
|
-
- Update temp_modules when versions are bumped.
|
|
1814
|
+
- Update temp_modules when versions are bumped.
|
|
1798
1815
|
|
|
1799
1816
|
## 1.4.1
|
|
1800
1817
|
Tue, 03 Jan 2017 21:52:49 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.60.0-rc.1",
|
|
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.
|
|
32
|
+
"@microsoft/rush-lib": "5.60.0-rc.1",
|
|
33
33
|
"@rushstack/node-core-library": "3.45.0",
|
|
34
34
|
"colors": "~1.2.1",
|
|
35
35
|
"semver": "~7.3.0"
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@rushstack/eslint-config": "2.5.1",
|
|
39
39
|
"@rushstack/heft": "0.44.2",
|
|
40
40
|
"@rushstack/heft-node-rig": "1.5.2",
|
|
41
|
-
"@rushstack/rush-amazon-s3-build-cache-plugin": "5.
|
|
42
|
-
"@rushstack/rush-azure-storage-build-cache-plugin": "5.
|
|
41
|
+
"@rushstack/rush-amazon-s3-build-cache-plugin": "5.60.0-rc.1",
|
|
42
|
+
"@rushstack/rush-azure-storage-build-cache-plugin": "5.60.0-rc.1",
|
|
43
43
|
"@types/heft-jest": "1.0.1",
|
|
44
44
|
"@types/node": "12.20.24",
|
|
45
45
|
"@types/semver": "7.3.5"
|