@microsoft/rush 5.57.0 → 5.59.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 CHANGED
@@ -1,6 +1,57 @@
1
1
  {
2
2
  "name": "@microsoft/rush",
3
3
  "entries": [
4
+ {
5
+ "version": "5.59.0-rc.1",
6
+ "tag": "@microsoft/rush_v5.59.0-rc.1",
7
+ "date": "Thu, 30 Dec 2021 02:48:39 GMT",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "comment": "Fix an issue with installing Git hooks that occurs when the rush.json folder isn't at the repo's root."
12
+ },
13
+ {
14
+ "comment": "(BREAKING CHANGE) Remove the experimental command \"rush write-build-cache\", since it is no longer needed and would be incompatible with phased builds. If you need this command for some reason, please create a GitHub issue."
15
+ },
16
+ {
17
+ "comment": "Add support for phased commands behind the multiPhaseCommands experiment."
18
+ }
19
+ ]
20
+ }
21
+ },
22
+ {
23
+ "version": "5.58.0",
24
+ "tag": "@microsoft/rush_v5.58.0",
25
+ "date": "Thu, 16 Dec 2021 05:39:21 GMT",
26
+ "comments": {
27
+ "none": [
28
+ {
29
+ "comment": "Fix an issue where Rush's Git hooks were broken if another tool such as Husky had tampered with the `core.hooksPath` (GitHub #3004)"
30
+ },
31
+ {
32
+ "comment": "Provide a more useful error message if the git version is too old."
33
+ },
34
+ {
35
+ "comment": "Allow \"rush list\" to be invoked while other rush processes are running in the same repo."
36
+ },
37
+ {
38
+ "comment": "For project selection parameters such as \"rush build --to git:REF\", improve the diff analysis to detect which individual projects are impacted by a modification of the PNPM lockfile (GitHub #3050)"
39
+ },
40
+ {
41
+ "comment": "Allow multiple remote URLs to be specified in the rush.json in the new repository.urls field."
42
+ },
43
+ {
44
+ "comment": "(BREAKING CHANGE) Replace the RushConfiguration repositoryUrl field with repositoryUrls to support multiple remote URLs specified in rush.json."
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "version": "5.57.1",
51
+ "tag": "@microsoft/rush_v5.57.1",
52
+ "date": "Thu, 09 Dec 2021 00:24:47 GMT",
53
+ "comments": {}
54
+ },
4
55
  {
5
56
  "version": "5.57.0",
6
57
  "tag": "@microsoft/rush_v5.57.0",
@@ -17,7 +68,10 @@
17
68
  "comment": "Fix an issue where parameter values containing spaces are incorrectly passed to global scripts."
18
69
  },
19
70
  {
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."
71
+ "comment": "Parameters such as \"--to\" and \"--from\" now accept selector expressions: \"version-policy:NAME\" indicates the set of projects belonging to a publishing version policy. \"git:REF\" detects the set of projects that have been modified since the specified Git revision; for example, this allows a Rush command to process only the projects modified by a PR branch. (GitHub #2968)"
72
+ },
73
+ {
74
+ "comment": "Improved the change detection logic to work correctly when a second rush.json appears in a subfolder."
21
75
  },
22
76
  {
23
77
  "comment": "(EXPERIMENTAL) Add a new NPM package \"@rushstack/rush-sdk\" for use by Rush plugins"
package/CHANGELOG.md CHANGED
@@ -1,6 +1,32 @@
1
1
  # Change Log - @microsoft/rush
2
2
 
3
- This log was last generated on Fri, 03 Dec 2021 02:16:10 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 30 Dec 2021 02:48:39 GMT and should not be manually modified.
4
+
5
+ ## 5.59.0-rc.1
6
+ Thu, 30 Dec 2021 02:48:39 GMT
7
+
8
+ ### Updates
9
+
10
+ - Fix an issue with installing Git hooks that occurs when the rush.json folder isn't at the repo's root.
11
+ - (BREAKING CHANGE) Remove the experimental command "rush write-build-cache", since it is no longer needed and would be incompatible with phased builds. If you need this command for some reason, please create a GitHub issue.
12
+ - Add support for phased commands behind the multiPhaseCommands experiment.
13
+
14
+ ## 5.58.0
15
+ Thu, 16 Dec 2021 05:39:21 GMT
16
+
17
+ ### Updates
18
+
19
+ - Fix an issue where Rush's Git hooks were broken if another tool such as Husky had tampered with the `core.hooksPath` (GitHub #3004)
20
+ - Provide a more useful error message if the git version is too old.
21
+ - Allow "rush list" to be invoked while other rush processes are running in the same repo.
22
+ - For project selection parameters such as "rush build --to git:REF", improve the diff analysis to detect which individual projects are impacted by a modification of the PNPM lockfile (GitHub #3050)
23
+ - Allow multiple remote URLs to be specified in the rush.json in the new repository.urls field.
24
+ - (BREAKING CHANGE) Replace the RushConfiguration repositoryUrl field with repositoryUrls to support multiple remote URLs specified in rush.json.
25
+
26
+ ## 5.57.1
27
+ Thu, 09 Dec 2021 00:24:47 GMT
28
+
29
+ _Version update only_
4
30
 
5
31
  ## 5.57.0
6
32
  Fri, 03 Dec 2021 02:16:10 GMT
@@ -10,7 +36,8 @@ Fri, 03 Dec 2021 02:16:10 GMT
10
36
  - Add support for the "filterLog" hook in common/config/rush/.pnpmfile.cjs
11
37
  - (EXPERIMENTAL) Ability to load third-party plugin packages that customize the behavior of Rush
12
38
  - 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.
39
+ - Parameters such as "--to" and "--from" now accept selector expressions: "version-policy:NAME" indicates the set of projects belonging to a publishing version policy. "git:REF" detects the set of projects that have been modified since the specified Git revision; for example, this allows a Rush command to process only the projects modified by a PR branch. (GitHub #2968)
40
+ - Improved the change detection logic to work correctly when a second rush.json appears in a subfolder.
14
41
  - (EXPERIMENTAL) Add a new NPM package "@rushstack/rush-sdk" for use by Rush plugins
15
42
  - 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.
16
43
 
@@ -1015,7 +1042,7 @@ Thu, 11 Jul 2019 22:00:50 GMT
1015
1042
 
1016
1043
  ### Updates
1017
1044
 
1018
- - 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
1045
+ - 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
1019
1046
  - Fix an issue where "rush add" erroneously believes ensureConsistentVersions is unset.
1020
1047
  - Fix an issue that arises when "rush add" is run and the package manager isn't installed.
1021
1048
  - Fix an issue where rush add -m doesn't corretly update the common-versions.json file.
@@ -1497,9 +1524,9 @@ Fri, 06 Oct 2017 22:44:31 GMT
1497
1524
  ### Patches
1498
1525
 
1499
1526
  - Enable strickNullChecks
1500
- - Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
1501
- - Fix a bug in "rush change" so it handles rename properly.
1502
- - Add npm tag support in "rush publish".
1527
+ - Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
1528
+ - Fix a bug in "rush change" so it handles rename properly.
1529
+ - Add npm tag support in "rush publish".
1503
1530
 
1504
1531
  ## 3.0.18
1505
1532
  Tue, 26 Sep 2017 13:51:05 GMT
@@ -1754,7 +1781,7 @@ Sun, 22 Jan 2017 02:04:57 GMT
1754
1781
 
1755
1782
  ### Patches
1756
1783
 
1757
- - Update temp_modules when versions are bumped.
1784
+ - Update temp_modules when versions are bumped.
1758
1785
 
1759
1786
  ## 1.4.1
1760
1787
  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.57.0",
3
+ "version": "5.59.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,15 +29,15 @@
29
29
  },
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@microsoft/rush-lib": "5.57.0",
33
- "@rushstack/node-core-library": "3.43.2",
32
+ "@microsoft/rush-lib": "5.59.0-rc.1",
33
+ "@rushstack/node-core-library": "3.44.3",
34
34
  "colors": "~1.2.1",
35
35
  "semver": "~7.3.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@rushstack/eslint-config": "2.4.5",
39
- "@rushstack/heft": "0.42.3",
40
- "@rushstack/heft-node-rig": "1.2.32",
38
+ "@rushstack/eslint-config": "2.5.1",
39
+ "@rushstack/heft": "0.44.1",
40
+ "@rushstack/heft-node-rig": "1.5.1",
41
41
  "@types/heft-jest": "1.0.1",
42
42
  "@types/node": "12.20.24",
43
43
  "@types/semver": "7.3.5"