@microsoft/rush 5.59.0 → 5.60.0-rc.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 -1
- package/CHANGELOG.md +35 -7
- package/package.json +4 -4
package/CHANGELOG.json
CHANGED
|
@@ -1,10 +1,55 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "5.60.0-rc.0",
|
|
6
|
+
"tag": "@microsoft/rush_v5.60.0-rc.0",
|
|
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
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"version": "5.59.1",
|
|
39
|
+
"tag": "@microsoft/rush_v5.59.1",
|
|
40
|
+
"date": "Fri, 07 Jan 2022 01:21:44 GMT",
|
|
41
|
+
"comments": {
|
|
42
|
+
"patch": [
|
|
43
|
+
{
|
|
44
|
+
"comment": "Fixes a regression in bulk command execution when using \"unsafe\" selector parameters, e.g. \"--only\". Ensures that only the projects selected by the parameters get included in the build, rather that forcibly including all dependencies."
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
4
49
|
{
|
|
5
50
|
"version": "5.59.0",
|
|
6
51
|
"tag": "@microsoft/rush_v5.59.0",
|
|
7
|
-
"date": "Thu, 06 Jan 2022
|
|
52
|
+
"date": "Thu, 06 Jan 2022 22:18:13 GMT",
|
|
8
53
|
"comments": {
|
|
9
54
|
"none": [
|
|
10
55
|
{
|
|
@@ -22,6 +67,11 @@
|
|
|
22
67
|
{
|
|
23
68
|
"comment": "Update \"rush init\" to write files with OS-default line endings (CRLF on Windows, LF otherwise) instead of always writing CRLF line endings."
|
|
24
69
|
}
|
|
70
|
+
],
|
|
71
|
+
"minor": [
|
|
72
|
+
{
|
|
73
|
+
"comment": "Update the \"rush init\" template to enable pnpm workspaces and to merge the pnpm-lock.yaml file as text."
|
|
74
|
+
}
|
|
25
75
|
]
|
|
26
76
|
}
|
|
27
77
|
},
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,37 @@
|
|
|
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.0
|
|
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.
|
|
21
|
+
|
|
22
|
+
## 5.59.1
|
|
23
|
+
Fri, 07 Jan 2022 01:21:44 GMT
|
|
24
|
+
|
|
25
|
+
### Patches
|
|
26
|
+
|
|
27
|
+
- Fixes a regression in bulk command execution when using "unsafe" selector parameters, e.g. "--only". Ensures that only the projects selected by the parameters get included in the build, rather that forcibly including all dependencies.
|
|
4
28
|
|
|
5
29
|
## 5.59.0
|
|
6
|
-
Thu, 06 Jan 2022
|
|
30
|
+
Thu, 06 Jan 2022 22:18:13 GMT
|
|
31
|
+
|
|
32
|
+
### Minor changes
|
|
33
|
+
|
|
34
|
+
- Update the "rush init" template to enable pnpm workspaces and to merge the pnpm-lock.yaml file as text.
|
|
7
35
|
|
|
8
36
|
### Updates
|
|
9
37
|
|
|
@@ -1044,7 +1072,7 @@ Thu, 11 Jul 2019 22:00:50 GMT
|
|
|
1044
1072
|
|
|
1045
1073
|
### Updates
|
|
1046
1074
|
|
|
1047
|
-
- 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
|
|
1048
1076
|
- Fix an issue where "rush add" erroneously believes ensureConsistentVersions is unset.
|
|
1049
1077
|
- Fix an issue that arises when "rush add" is run and the package manager isn't installed.
|
|
1050
1078
|
- Fix an issue where rush add -m doesn't corretly update the common-versions.json file.
|
|
@@ -1526,9 +1554,9 @@ Fri, 06 Oct 2017 22:44:31 GMT
|
|
|
1526
1554
|
### Patches
|
|
1527
1555
|
|
|
1528
1556
|
- Enable strickNullChecks
|
|
1529
|
-
- Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
|
|
1530
|
-
- Fix a bug in "rush change" so it handles rename properly.
|
|
1531
|
-
- 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".
|
|
1532
1560
|
|
|
1533
1561
|
## 3.0.18
|
|
1534
1562
|
Tue, 26 Sep 2017 13:51:05 GMT
|
|
@@ -1783,7 +1811,7 @@ Sun, 22 Jan 2017 02:04:57 GMT
|
|
|
1783
1811
|
|
|
1784
1812
|
### Patches
|
|
1785
1813
|
|
|
1786
|
-
- Update temp_modules when versions are bumped.
|
|
1814
|
+
- Update temp_modules when versions are bumped.
|
|
1787
1815
|
|
|
1788
1816
|
## 1.4.1
|
|
1789
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.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.
|
|
32
|
+
"@microsoft/rush-lib": "5.60.0-rc.0",
|
|
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.0",
|
|
42
|
+
"@rushstack/rush-azure-storage-build-cache-plugin": "5.60.0-rc.0",
|
|
43
43
|
"@types/heft-jest": "1.0.1",
|
|
44
44
|
"@types/node": "12.20.24",
|
|
45
45
|
"@types/semver": "7.3.5"
|