@microsoft/rush 5.62.0-pr3059 → 5.62.3

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
@@ -2,10 +2,88 @@
2
2
  "name": "@microsoft/rush",
3
3
  "entries": [
4
4
  {
5
- "version": "5.62.0-pr3059",
6
- "tag": "@microsoft/rush_v5.62.0-pr3059",
7
- "date": "Thu, 03 Feb 2022 00:01:03 GMT",
8
- "comments": {}
5
+ "version": "5.62.3",
6
+ "tag": "@microsoft/rush_v5.62.3",
7
+ "date": "Fri, 11 Feb 2022 02:18:05 GMT",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "comment": "Fix an issue where the git tag would not include the prerelease portion of the version, which will cause subsequent publishes of the same version to not be tagged."
12
+ }
13
+ ]
14
+ }
15
+ },
16
+ {
17
+ "version": "5.62.2",
18
+ "tag": "@microsoft/rush_v5.62.2",
19
+ "date": "Thu, 10 Feb 2022 03:21:41 GMT",
20
+ "comments": {
21
+ "none": [
22
+ {
23
+ "comment": "Add the ability to forcibly replace bad cache entries generated by issues in a previous Rush release."
24
+ },
25
+ {
26
+ "comment": "Fix an issue where the dependencies of lockstep-versioned projects aren't bumped when the lockstep-versioned projects' versions are bumped. This issue only arose in the scenario when the lockstep-versioned projects' version bumps are driven by the change type in the changefiles and not by the \"nextBump\" property in \"common/config/rush/version-policies.json\""
27
+ },
28
+ {
29
+ "comment": "Fix an issue where \"rush setup\" reported a TypeError when invoked from Git Bash"
30
+ },
31
+ {
32
+ "comment": "Fix a bug where `rush change --verify` would not find the correct `common/changes` folder if the `rush.json` is not in the Git repo's root folder."
33
+ },
34
+ {
35
+ "comment": "Add support for rush-sdk to be bundled with Webpack."
36
+ },
37
+ {
38
+ "comment": "Add watch mode support to \"phased\" command definitions via the \"watchOptions\" property with a subfield \"watchPhases\". This separates the initial command phases from the phases run by the file watcher, e.g. so that the initial execution can pull from cache and the watch mode execution can use a separate incremental build phase."
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ {
44
+ "version": "5.62.1",
45
+ "tag": "@microsoft/rush_v5.62.1",
46
+ "date": "Sun, 06 Feb 2022 04:59:08 GMT",
47
+ "comments": {
48
+ "none": [
49
+ {
50
+ "comment": "Fix an issue where cache entries in certain circumstances would be missing files in nested subfolders. For full details see https://github.com/microsoft/rushstack/pull/3211."
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ {
56
+ "version": "5.62.0",
57
+ "tag": "@microsoft/rush_v5.62.0",
58
+ "date": "Sat, 05 Feb 2022 00:55:18 GMT",
59
+ "comments": {
60
+ "none": [
61
+ {
62
+ "comment": "Add support for directly invoking a script that depends on `rush-sdk` from inside a Rush repo."
63
+ },
64
+ {
65
+ "comment": "Add support for a new URL-based version specifier in PNPM lockfiles."
66
+ },
67
+ {
68
+ "comment": "Add support for specifying a custom S3 endpoint. This is useful for using a custom S3 provider."
69
+ },
70
+ {
71
+ "comment": "Optimize invocation of tar to use stdin instead of a temporary file."
72
+ },
73
+ {
74
+ "comment": "Revise architecture of symbolic link scan to use a queue and parallel file system calls."
75
+ },
76
+ {
77
+ "comment": "Create separate tar logs per phase based on cache id."
78
+ },
79
+ {
80
+ "comment": "Pack tar to a temp file, then move into the cache to ensure cache integrity."
81
+ },
82
+ {
83
+ "comment": "Fix git-hooks folder check failing when compared paths have different drive letter casing"
84
+ }
85
+ ]
86
+ }
9
87
  },
10
88
  {
11
89
  "version": "5.61.4",
package/CHANGELOG.md CHANGED
@@ -1,11 +1,46 @@
1
1
  # Change Log - @microsoft/rush
2
2
 
3
- This log was last generated on Thu, 03 Feb 2022 00:01:03 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 11 Feb 2022 02:18:05 GMT and should not be manually modified.
4
4
 
5
- ## 5.62.0-pr3059
6
- Thu, 03 Feb 2022 00:01:03 GMT
5
+ ## 5.62.3
6
+ Fri, 11 Feb 2022 02:18:05 GMT
7
7
 
8
- _Version update only_
8
+ ### Updates
9
+
10
+ - Fix an issue where the git tag would not include the prerelease portion of the version, which will cause subsequent publishes of the same version to not be tagged.
11
+
12
+ ## 5.62.2
13
+ Thu, 10 Feb 2022 03:21:41 GMT
14
+
15
+ ### Updates
16
+
17
+ - Add the ability to forcibly replace bad cache entries generated by issues in a previous Rush release.
18
+ - Fix an issue where the dependencies of lockstep-versioned projects aren't bumped when the lockstep-versioned projects' versions are bumped. This issue only arose in the scenario when the lockstep-versioned projects' version bumps are driven by the change type in the changefiles and not by the "nextBump" property in "common/config/rush/version-policies.json"
19
+ - Fix an issue where "rush setup" reported a TypeError when invoked from Git Bash
20
+ - Fix a bug where `rush change --verify` would not find the correct `common/changes` folder if the `rush.json` is not in the Git repo's root folder.
21
+ - Add support for rush-sdk to be bundled with Webpack.
22
+ - Add watch mode support to "phased" command definitions via the "watchOptions" property with a subfield "watchPhases". This separates the initial command phases from the phases run by the file watcher, e.g. so that the initial execution can pull from cache and the watch mode execution can use a separate incremental build phase.
23
+
24
+ ## 5.62.1
25
+ Sun, 06 Feb 2022 04:59:08 GMT
26
+
27
+ ### Updates
28
+
29
+ - Fix an issue where cache entries in certain circumstances would be missing files in nested subfolders. For full details see https://github.com/microsoft/rushstack/pull/3211.
30
+
31
+ ## 5.62.0
32
+ Sat, 05 Feb 2022 00:55:18 GMT
33
+
34
+ ### Updates
35
+
36
+ - Add support for directly invoking a script that depends on `rush-sdk` from inside a Rush repo.
37
+ - Add support for a new URL-based version specifier in PNPM lockfiles.
38
+ - Add support for specifying a custom S3 endpoint. This is useful for using a custom S3 provider.
39
+ - Optimize invocation of tar to use stdin instead of a temporary file.
40
+ - Revise architecture of symbolic link scan to use a queue and parallel file system calls.
41
+ - Create separate tar logs per phase based on cache id.
42
+ - Pack tar to a temp file, then move into the cache to ensure cache integrity.
43
+ - Fix git-hooks folder check failing when compared paths have different drive letter casing
9
44
 
10
45
  ## 5.61.4
11
46
  Wed, 02 Feb 2022 04:03:24 GMT
@@ -1117,7 +1152,7 @@ Thu, 11 Jul 2019 22:00:50 GMT
1117
1152
 
1118
1153
  ### Updates
1119
1154
 
1120
- - 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
1155
+ - 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
1121
1156
  - Fix an issue where "rush add" erroneously believes ensureConsistentVersions is unset.
1122
1157
  - Fix an issue that arises when "rush add" is run and the package manager isn't installed.
1123
1158
  - Fix an issue where rush add -m doesn't corretly update the common-versions.json file.
@@ -1599,9 +1634,9 @@ Fri, 06 Oct 2017 22:44:31 GMT
1599
1634
  ### Patches
1600
1635
 
1601
1636
  - Enable strickNullChecks
1602
- - Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
1603
- - Fix a bug in "rush change" so it handles rename properly.
1604
- - Add npm tag support in "rush publish".
1637
+ - Fix a bug in "rush version" that devdependency does not get bumped if there is no dependency.
1638
+ - Fix a bug in "rush change" so it handles rename properly.
1639
+ - Add npm tag support in "rush publish".
1605
1640
 
1606
1641
  ## 3.0.18
1607
1642
  Tue, 26 Sep 2017 13:51:05 GMT
@@ -1856,7 +1891,7 @@ Sun, 22 Jan 2017 02:04:57 GMT
1856
1891
 
1857
1892
  ### Patches
1858
1893
 
1859
- - Update temp_modules when versions are bumped.
1894
+ - Update temp_modules when versions are bumped.
1860
1895
 
1861
1896
  ## 1.4.1
1862
1897
  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.62.0-pr3059",
3
+ "version": "5.62.3",
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.62.0-pr3059",
32
+ "@microsoft/rush-lib": "5.62.3",
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.7.1",
41
- "@rushstack/rush-amazon-s3-build-cache-plugin": "5.62.0-pr3059",
42
- "@rushstack/rush-azure-storage-build-cache-plugin": "5.62.0-pr3059",
41
+ "@rushstack/rush-amazon-s3-build-cache-plugin": "5.62.3",
42
+ "@rushstack/rush-azure-storage-build-cache-plugin": "5.62.3",
43
43
  "@types/heft-jest": "1.0.1",
44
44
  "@types/node": "12.20.24",
45
45
  "@types/semver": "7.3.5"