@microsoft/rush 5.53.0 → 5.56.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 +97 -0
- package/CHANGELOG.md +50 -1
- package/bin/rushx +1 -1
- package/lib/MinimalRushConfiguration.js +1 -1
- package/lib/RushCommandSelector.js +1 -1
- package/lib/RushVersionSelector.js +1 -1
- package/lib/start.js +1 -1
- package/package.json +9 -8
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,103 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "5.56.0",
|
|
6
|
+
"tag": "@microsoft/rush_v5.56.0",
|
|
7
|
+
"date": "Thu, 28 Oct 2021 23:49:31 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Add CI skipping to default version & changelog commits"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Update suggested version of NPM"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Fix update-autoinstaller with NPM"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "Streamline rushx output and add quiet flag."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"comment": "Include support for adding multiple packages with the \"rush add\" command."
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"comment": "Update the package.json repository field to include the directory property."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"comment": "Fix the error message printed when `--interactive` is passed to `rush update-cloud-credentials` and the cloud cache provider is Amazon S3."
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"comment": "Mark Node 16 as the current latest LTS version."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"comment": "support `--debug-package-manager` install options for yarn"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"version": "5.55.1",
|
|
42
|
+
"tag": "@microsoft/rush_v5.55.1",
|
|
43
|
+
"date": "Tue, 12 Oct 2021 22:26:25 GMT",
|
|
44
|
+
"comments": {
|
|
45
|
+
"none": [
|
|
46
|
+
{
|
|
47
|
+
"comment": "Fix an issue where a version field isn't parsed correctly when using NPM version 7 and newer."
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"version": "5.55.0",
|
|
54
|
+
"tag": "@microsoft/rush_v5.55.0",
|
|
55
|
+
"date": "Thu, 07 Oct 2021 23:44:52 GMT",
|
|
56
|
+
"comments": {
|
|
57
|
+
"none": [
|
|
58
|
+
{
|
|
59
|
+
"comment": "Fix typo when project dependencies do not match the current shrinkwrap"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"comment": "Use ITerminal in the rush-lib API instead of Terminal to allow for compatibility with other versions of @rushstack/node-core-library."
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"comment": "Add a new parameter \"--detailed\" for the \"rush list\" command"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"comment": "Print the full event hooks output if the --debug paramter is specified."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"comment": "Upgrade the `@types/node` dependency to version to version 12."
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"version": "5.54.0",
|
|
78
|
+
"tag": "@microsoft/rush_v5.54.0",
|
|
79
|
+
"date": "Wed, 22 Sep 2021 22:54:17 GMT",
|
|
80
|
+
"comments": {
|
|
81
|
+
"none": [
|
|
82
|
+
{
|
|
83
|
+
"comment": "Add a \"--check-only\" parameter to \"rush install\" to check the validity of the shrinkwrap without performing a full install."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"comment": "Fix an issue where `rush update-autoinstaller` does not use the repo's .npmrc"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"minor": [
|
|
90
|
+
{
|
|
91
|
+
"comment": "Add ability to customize tag separator"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"patch": [
|
|
95
|
+
{
|
|
96
|
+
"comment": "Lock node-fetch dependency to 2.6.2 due to an incompatibility with 2.6.3 in the Azure Cloud Cache Provider."
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
},
|
|
4
101
|
{
|
|
5
102
|
"version": "5.53.0",
|
|
6
103
|
"tag": "@microsoft/rush_v5.53.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,55 @@
|
|
|
1
1
|
# Change Log - @microsoft/rush
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 28 Oct 2021 23:49:31 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.56.0
|
|
6
|
+
Thu, 28 Oct 2021 23:49:31 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Add CI skipping to default version & changelog commits
|
|
11
|
+
- Update suggested version of NPM
|
|
12
|
+
- Fix update-autoinstaller with NPM
|
|
13
|
+
- Streamline rushx output and add quiet flag.
|
|
14
|
+
- Include support for adding multiple packages with the "rush add" command.
|
|
15
|
+
- Update the package.json repository field to include the directory property.
|
|
16
|
+
- Fix the error message printed when `--interactive` is passed to `rush update-cloud-credentials` and the cloud cache provider is Amazon S3.
|
|
17
|
+
- Mark Node 16 as the current latest LTS version.
|
|
18
|
+
- support `--debug-package-manager` install options for yarn
|
|
19
|
+
|
|
20
|
+
## 5.55.1
|
|
21
|
+
Tue, 12 Oct 2021 22:26:25 GMT
|
|
22
|
+
|
|
23
|
+
### Updates
|
|
24
|
+
|
|
25
|
+
- Fix an issue where a version field isn't parsed correctly when using NPM version 7 and newer.
|
|
26
|
+
|
|
27
|
+
## 5.55.0
|
|
28
|
+
Thu, 07 Oct 2021 23:44:52 GMT
|
|
29
|
+
|
|
30
|
+
### Updates
|
|
31
|
+
|
|
32
|
+
- Fix typo when project dependencies do not match the current shrinkwrap
|
|
33
|
+
- Use ITerminal in the rush-lib API instead of Terminal to allow for compatibility with other versions of @rushstack/node-core-library.
|
|
34
|
+
- Add a new parameter "--detailed" for the "rush list" command
|
|
35
|
+
- Print the full event hooks output if the --debug paramter is specified.
|
|
36
|
+
- Upgrade the `@types/node` dependency to version to version 12.
|
|
37
|
+
|
|
38
|
+
## 5.54.0
|
|
39
|
+
Wed, 22 Sep 2021 22:54:17 GMT
|
|
40
|
+
|
|
41
|
+
### Minor changes
|
|
42
|
+
|
|
43
|
+
- Add ability to customize tag separator
|
|
44
|
+
|
|
45
|
+
### Patches
|
|
46
|
+
|
|
47
|
+
- Lock node-fetch dependency to 2.6.2 due to an incompatibility with 2.6.3 in the Azure Cloud Cache Provider.
|
|
48
|
+
|
|
49
|
+
### Updates
|
|
50
|
+
|
|
51
|
+
- Add a "--check-only" parameter to "rush install" to check the validity of the shrinkwrap without performing a full install.
|
|
52
|
+
- Fix an issue where `rush update-autoinstaller` does not use the repo's .npmrc
|
|
4
53
|
|
|
5
54
|
## 5.53.0
|
|
6
55
|
Fri, 10 Sep 2021 23:20:00 GMT
|
package/bin/rushx
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
require('../lib/start.js')
|
|
2
|
+
require('../lib/start.js');
|
|
@@ -16,7 +16,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
16
16
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
17
17
|
if (mod && mod.__esModule) return mod;
|
|
18
18
|
var result = {};
|
|
19
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
19
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
20
20
|
__setModuleDefault(result, mod);
|
|
21
21
|
return result;
|
|
22
22
|
};
|
|
@@ -16,7 +16,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
16
16
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
17
17
|
if (mod && mod.__esModule) return mod;
|
|
18
18
|
var result = {};
|
|
19
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
19
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
20
20
|
__setModuleDefault(result, mod);
|
|
21
21
|
return result;
|
|
22
22
|
};
|
|
@@ -16,7 +16,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
16
16
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
17
17
|
if (mod && mod.__esModule) return mod;
|
|
18
18
|
var result = {};
|
|
19
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
19
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
20
20
|
__setModuleDefault(result, mod);
|
|
21
21
|
return result;
|
|
22
22
|
};
|
package/lib/start.js
CHANGED
|
@@ -16,7 +16,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
16
16
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
17
17
|
if (mod && mod.__esModule) return mod;
|
|
18
18
|
var result = {};
|
|
19
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
19
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
20
20
|
__setModuleDefault(result, mod);
|
|
21
21
|
return result;
|
|
22
22
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rush",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.56.0",
|
|
4
4
|
"description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"install",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"preferGlobal": true,
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "https://github.com/microsoft/rushstack
|
|
18
|
+
"url": "https://github.com/microsoft/rushstack.git",
|
|
19
|
+
"directory": "apps/rush"
|
|
19
20
|
},
|
|
20
21
|
"engines": {
|
|
21
22
|
"node": ">=5.6.0"
|
|
@@ -28,17 +29,17 @@
|
|
|
28
29
|
},
|
|
29
30
|
"license": "MIT",
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@microsoft/rush-lib": "5.
|
|
32
|
-
"@rushstack/node-core-library": "3.
|
|
32
|
+
"@microsoft/rush-lib": "5.56.0",
|
|
33
|
+
"@rushstack/node-core-library": "3.43.0",
|
|
33
34
|
"colors": "~1.2.1",
|
|
34
35
|
"semver": "~7.3.0"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
|
-
"@rushstack/eslint-config": "2.4.
|
|
38
|
-
"@rushstack/heft": "0.
|
|
39
|
-
"@rushstack/heft-node-rig": "1.2.
|
|
38
|
+
"@rushstack/eslint-config": "2.4.4",
|
|
39
|
+
"@rushstack/heft": "0.42.0",
|
|
40
|
+
"@rushstack/heft-node-rig": "1.2.28",
|
|
40
41
|
"@types/heft-jest": "1.0.1",
|
|
41
|
-
"@types/node": "
|
|
42
|
+
"@types/node": "12.20.24",
|
|
42
43
|
"@types/semver": "7.3.5"
|
|
43
44
|
},
|
|
44
45
|
"scripts": {
|