@microsoft/rush 5.57.0-dev.3 → 5.59.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 CHANGED
@@ -1,6 +1,87 @@
1
1
  {
2
2
  "name": "@microsoft/rush",
3
3
  "entries": [
4
+ {
5
+ "version": "5.59.0-rc.0",
6
+ "tag": "@microsoft/rush_v5.59.0-rc.0",
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
+ },
55
+ {
56
+ "version": "5.57.0",
57
+ "tag": "@microsoft/rush_v5.57.0",
58
+ "date": "Fri, 03 Dec 2021 02:16:10 GMT",
59
+ "comments": {
60
+ "none": [
61
+ {
62
+ "comment": "Add support for the \"filterLog\" hook in common/config/rush/.pnpmfile.cjs"
63
+ },
64
+ {
65
+ "comment": "(EXPERIMENTAL) Ability to load third-party plugin packages that customize the behavior of Rush"
66
+ },
67
+ {
68
+ "comment": "Fix an issue where parameter values containing spaces are incorrectly passed to global scripts."
69
+ },
70
+ {
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."
75
+ },
76
+ {
77
+ "comment": "(EXPERIMENTAL) Add a new NPM package \"@rushstack/rush-sdk\" for use by Rush plugins"
78
+ },
79
+ {
80
+ "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."
81
+ }
82
+ ]
83
+ }
84
+ },
4
85
  {
5
86
  "version": "5.56.0",
6
87
  "tag": "@microsoft/rush_v5.56.0",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,45 @@
1
1
  # Change Log - @microsoft/rush
2
2
 
3
- This log was last generated on Thu, 28 Oct 2021 23:49:31 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.0
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_
30
+
31
+ ## 5.57.0
32
+ Fri, 03 Dec 2021 02:16:10 GMT
33
+
34
+ ### Updates
35
+
36
+ - Add support for the "filterLog" hook in common/config/rush/.pnpmfile.cjs
37
+ - (EXPERIMENTAL) Ability to load third-party plugin packages that customize the behavior of Rush
38
+ - Fix an issue where parameter values containing spaces are incorrectly passed to global scripts.
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.
41
+ - (EXPERIMENTAL) Add a new NPM package "@rushstack/rush-sdk" for use by Rush plugins
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.
4
43
 
5
44
  ## 5.56.0
6
45
  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-dev.3",
3
+ "version": "5.59.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,15 +29,15 @@
29
29
  },
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@microsoft/rush-lib": "5.57.0-dev.3",
33
- "@rushstack/node-core-library": "3.43.2",
32
+ "@microsoft/rush-lib": "5.59.0-rc.0",
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"