@carbon/upgrade 11.19.0 → 11.20.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/README.md +3 -3
- package/cli.js +27 -16
- package/package.json +3 -3
- package/telemetry.yml +1 -1
package/README.md
CHANGED
|
@@ -89,9 +89,9 @@ Licensed under the [Apache 2.0 License](/LICENSE).
|
|
|
89
89
|
|
|
90
90
|
## <picture><source height="20" width="20" media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ibm-telemetry/telemetry-js/main/docs/images/ibm-telemetry-dark.svg"><source height="20" width="20" media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/ibm-telemetry/telemetry-js/main/docs/images/ibm-telemetry-light.svg"><img height="20" width="20" alt="IBM Telemetry" src="https://raw.githubusercontent.com/ibm-telemetry/telemetry-js/main/docs/images/ibm-telemetry-light.svg"></picture> IBM Telemetry
|
|
91
91
|
|
|
92
|
-
This package uses IBM Telemetry to collect
|
|
93
|
-
package as a dependency you are agreeing to telemetry
|
|
94
|
-
see
|
|
92
|
+
This package uses IBM Telemetry to collect de-identified and anonymized metrics
|
|
93
|
+
data. By installing this package as a dependency you are agreeing to telemetry
|
|
94
|
+
collection. To opt out, see
|
|
95
95
|
[Opting out of IBM Telemetry data collection](https://github.com/ibm-telemetry/telemetry-js/tree/main#opting-out-of-ibm-telemetry-data-collection).
|
|
96
96
|
For more information on the data being collected, please see the
|
|
97
97
|
[IBM Telemetry documentation](https://github.com/ibm-telemetry/telemetry-js/tree/main#ibm-telemetry-collection-basics).
|
package/cli.js
CHANGED
|
@@ -3586,6 +3586,7 @@ var require_minimatch = __commonJS({
|
|
|
3586
3586
|
continue;
|
|
3587
3587
|
}
|
|
3588
3588
|
switch (c) {
|
|
3589
|
+
/* istanbul ignore next */
|
|
3589
3590
|
case "/": {
|
|
3590
3591
|
return false;
|
|
3591
3592
|
}
|
|
@@ -3593,6 +3594,8 @@ var require_minimatch = __commonJS({
|
|
|
3593
3594
|
clearStateChar();
|
|
3594
3595
|
escaping = true;
|
|
3595
3596
|
continue;
|
|
3597
|
+
// the various stateChar values
|
|
3598
|
+
// for the "extglob" stuff.
|
|
3596
3599
|
case "?":
|
|
3597
3600
|
case "*":
|
|
3598
3601
|
case "+":
|
|
@@ -3653,6 +3656,7 @@ var require_minimatch = __commonJS({
|
|
|
3653
3656
|
clearStateChar();
|
|
3654
3657
|
re += "|";
|
|
3655
3658
|
continue;
|
|
3659
|
+
// these are mostly the same in regexp and glob
|
|
3656
3660
|
case "[":
|
|
3657
3661
|
clearStateChar();
|
|
3658
3662
|
if (inClass) {
|
|
@@ -21800,9 +21804,9 @@ var require_safe_buffer = __commonJS({
|
|
|
21800
21804
|
}
|
|
21801
21805
|
});
|
|
21802
21806
|
|
|
21803
|
-
// ../../node_modules/
|
|
21807
|
+
// ../../node_modules/string_decoder/lib/string_decoder.js
|
|
21804
21808
|
var require_string_decoder = __commonJS({
|
|
21805
|
-
"../../node_modules/
|
|
21809
|
+
"../../node_modules/string_decoder/lib/string_decoder.js"(exports2) {
|
|
21806
21810
|
"use strict";
|
|
21807
21811
|
var Buffer2 = require_safe_buffer().Buffer;
|
|
21808
21812
|
var isEncoding = Buffer2.isEncoding || function(encoding) {
|
|
@@ -35442,6 +35446,8 @@ var require_semver = __commonJS({
|
|
|
35442
35446
|
this.inc("patch", identifier, identifierBase);
|
|
35443
35447
|
this.inc("pre", identifier, identifierBase);
|
|
35444
35448
|
break;
|
|
35449
|
+
// If the input is a non-prerelease version, this acts the same as
|
|
35450
|
+
// prepatch.
|
|
35445
35451
|
case "prerelease":
|
|
35446
35452
|
if (this.prerelease.length === 0) {
|
|
35447
35453
|
this.inc("patch", identifier, identifierBase);
|
|
@@ -35469,6 +35475,8 @@ var require_semver = __commonJS({
|
|
|
35469
35475
|
}
|
|
35470
35476
|
this.prerelease = [];
|
|
35471
35477
|
break;
|
|
35478
|
+
// This probably shouldn't be used publicly.
|
|
35479
|
+
// 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.
|
|
35472
35480
|
case "pre": {
|
|
35473
35481
|
const base = Number(identifierBase) ? 1 : 0;
|
|
35474
35482
|
if (!identifier && identifierBase === false) {
|
|
@@ -36512,6 +36520,7 @@ var require_min_version = __commonJS({
|
|
|
36512
36520
|
compver.prerelease.push(0);
|
|
36513
36521
|
}
|
|
36514
36522
|
compver.raw = compver.format();
|
|
36523
|
+
/* fallthrough */
|
|
36515
36524
|
case "":
|
|
36516
36525
|
case ">=":
|
|
36517
36526
|
if (!setMin || gt(compver, setMin)) {
|
|
@@ -36521,6 +36530,7 @@ var require_min_version = __commonJS({
|
|
|
36521
36530
|
case "<":
|
|
36522
36531
|
case "<=":
|
|
36523
36532
|
break;
|
|
36533
|
+
/* istanbul ignore next */
|
|
36524
36534
|
default:
|
|
36525
36535
|
throw new Error(`Unexpected operation: ${comparator.operator}`);
|
|
36526
36536
|
}
|
|
@@ -40473,9 +40483,9 @@ var require_braces = __commonJS({
|
|
|
40473
40483
|
}
|
|
40474
40484
|
});
|
|
40475
40485
|
|
|
40476
|
-
// ../../node_modules/picomatch/lib/constants.js
|
|
40486
|
+
// ../../node_modules/micromatch/node_modules/picomatch/lib/constants.js
|
|
40477
40487
|
var require_constants3 = __commonJS({
|
|
40478
|
-
"../../node_modules/picomatch/lib/constants.js"(exports2, module2) {
|
|
40488
|
+
"../../node_modules/micromatch/node_modules/picomatch/lib/constants.js"(exports2, module2) {
|
|
40479
40489
|
"use strict";
|
|
40480
40490
|
var path3 = require("path");
|
|
40481
40491
|
var WIN_SLASH = "\\\\/";
|
|
@@ -40670,9 +40680,9 @@ var require_constants3 = __commonJS({
|
|
|
40670
40680
|
}
|
|
40671
40681
|
});
|
|
40672
40682
|
|
|
40673
|
-
// ../../node_modules/picomatch/lib/utils.js
|
|
40683
|
+
// ../../node_modules/micromatch/node_modules/picomatch/lib/utils.js
|
|
40674
40684
|
var require_utils5 = __commonJS({
|
|
40675
|
-
"../../node_modules/picomatch/lib/utils.js"(exports2) {
|
|
40685
|
+
"../../node_modules/micromatch/node_modules/picomatch/lib/utils.js"(exports2) {
|
|
40676
40686
|
"use strict";
|
|
40677
40687
|
var path3 = require("path");
|
|
40678
40688
|
var win32 = process.platform === "win32";
|
|
@@ -40731,9 +40741,9 @@ var require_utils5 = __commonJS({
|
|
|
40731
40741
|
}
|
|
40732
40742
|
});
|
|
40733
40743
|
|
|
40734
|
-
// ../../node_modules/picomatch/lib/scan.js
|
|
40744
|
+
// ../../node_modules/micromatch/node_modules/picomatch/lib/scan.js
|
|
40735
40745
|
var require_scan2 = __commonJS({
|
|
40736
|
-
"../../node_modules/picomatch/lib/scan.js"(exports2, module2) {
|
|
40746
|
+
"../../node_modules/micromatch/node_modules/picomatch/lib/scan.js"(exports2, module2) {
|
|
40737
40747
|
"use strict";
|
|
40738
40748
|
var utils = require_utils5();
|
|
40739
40749
|
var {
|
|
@@ -41061,9 +41071,9 @@ var require_scan2 = __commonJS({
|
|
|
41061
41071
|
}
|
|
41062
41072
|
});
|
|
41063
41073
|
|
|
41064
|
-
// ../../node_modules/picomatch/lib/parse.js
|
|
41074
|
+
// ../../node_modules/micromatch/node_modules/picomatch/lib/parse.js
|
|
41065
41075
|
var require_parse4 = __commonJS({
|
|
41066
|
-
"../../node_modules/picomatch/lib/parse.js"(exports2, module2) {
|
|
41076
|
+
"../../node_modules/micromatch/node_modules/picomatch/lib/parse.js"(exports2, module2) {
|
|
41067
41077
|
"use strict";
|
|
41068
41078
|
var constants = require_constants3();
|
|
41069
41079
|
var utils = require_utils5();
|
|
@@ -41834,9 +41844,9 @@ var require_parse4 = __commonJS({
|
|
|
41834
41844
|
}
|
|
41835
41845
|
});
|
|
41836
41846
|
|
|
41837
|
-
// ../../node_modules/picomatch/lib/picomatch.js
|
|
41847
|
+
// ../../node_modules/micromatch/node_modules/picomatch/lib/picomatch.js
|
|
41838
41848
|
var require_picomatch = __commonJS({
|
|
41839
|
-
"../../node_modules/picomatch/lib/picomatch.js"(exports2, module2) {
|
|
41849
|
+
"../../node_modules/micromatch/node_modules/picomatch/lib/picomatch.js"(exports2, module2) {
|
|
41840
41850
|
"use strict";
|
|
41841
41851
|
var path3 = require("path");
|
|
41842
41852
|
var scan = require_scan2();
|
|
@@ -41975,9 +41985,9 @@ var require_picomatch = __commonJS({
|
|
|
41975
41985
|
}
|
|
41976
41986
|
});
|
|
41977
41987
|
|
|
41978
|
-
// ../../node_modules/picomatch/index.js
|
|
41988
|
+
// ../../node_modules/micromatch/node_modules/picomatch/index.js
|
|
41979
41989
|
var require_picomatch2 = __commonJS({
|
|
41980
|
-
"../../node_modules/picomatch/index.js"(exports2, module2) {
|
|
41990
|
+
"../../node_modules/micromatch/node_modules/picomatch/index.js"(exports2, module2) {
|
|
41981
41991
|
"use strict";
|
|
41982
41992
|
module2.exports = require_picomatch();
|
|
41983
41993
|
}
|
|
@@ -51847,6 +51857,7 @@ function hash(str) {
|
|
|
51847
51857
|
}
|
|
51848
51858
|
k = 0;
|
|
51849
51859
|
switch (rem) {
|
|
51860
|
+
/* eslint-disable no-fallthrough */
|
|
51850
51861
|
case 3:
|
|
51851
51862
|
k ^= str.charCodeAt(len + 2) << 16;
|
|
51852
51863
|
case 2:
|
|
@@ -52680,7 +52691,7 @@ var upgrades = [
|
|
|
52680
52691
|
var package_default = {
|
|
52681
52692
|
name: "@carbon/upgrade",
|
|
52682
52693
|
description: "A tool for upgrading Carbon versions",
|
|
52683
|
-
version: "11.
|
|
52694
|
+
version: "11.20.0",
|
|
52684
52695
|
license: "Apache-2.0",
|
|
52685
52696
|
bin: {
|
|
52686
52697
|
"carbon-upgrade": "./bin/carbon-upgrade.js"
|
|
@@ -52720,7 +52731,7 @@ var package_default = {
|
|
|
52720
52731
|
devDependencies: {
|
|
52721
52732
|
chalk: "^4.1.1",
|
|
52722
52733
|
"change-case": "^4.1.2",
|
|
52723
|
-
esbuild: "^0.
|
|
52734
|
+
esbuild: "^0.24.0",
|
|
52724
52735
|
execa: "^5.1.1",
|
|
52725
52736
|
"fast-glob": "^3.2.11",
|
|
52726
52737
|
"fs-extra": "^11.0.0",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/upgrade",
|
|
3
3
|
"description": "A tool for upgrading Carbon versions",
|
|
4
|
-
"version": "11.
|
|
4
|
+
"version": "11.20.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"bin": {
|
|
7
7
|
"carbon-upgrade": "./bin/carbon-upgrade.js"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"chalk": "^4.1.1",
|
|
43
43
|
"change-case": "^4.1.2",
|
|
44
|
-
"esbuild": "^0.
|
|
44
|
+
"esbuild": "^0.24.0",
|
|
45
45
|
"execa": "^5.1.1",
|
|
46
46
|
"fast-glob": "^3.2.11",
|
|
47
47
|
"fs-extra": "^11.0.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"@ibm/telemetry-js": "^1.5.0",
|
|
62
62
|
"jscodeshift": "^17.0.0"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "3141442e5ef367667c8f1d379a1b4a23f67992ad"
|
|
65
65
|
}
|
package/telemetry.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# yaml-language-server: $schema=https://unpkg.com/@ibm/telemetry-config-schema@v1/dist/config.schema.json
|
|
2
2
|
version: 1
|
|
3
3
|
projectId: 9e4d8d64-c172-4f68-ac67-3e4c3ecae2d0
|
|
4
|
-
endpoint: https://
|
|
4
|
+
endpoint: https://www-api.ibm.com/ibm-telemetry/v1/metrics
|
|
5
5
|
collect:
|
|
6
6
|
npm:
|
|
7
7
|
dependencies: null
|