@salesforce/plugin-release-management 5.7.17 → 5.7.19

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.
@@ -848,12 +848,21 @@
848
848
  "build.js"
849
849
  ]
850
850
  },
851
- "cli:tarballs:prepare": {
851
+ "cli:versions:inspect": {
852
852
  "aliases": [],
853
853
  "args": {},
854
- "description": "remove unnecessary files from node_modules",
854
+ "description": "inspect the CLI version across all install paths",
855
855
  "examples": [
856
- "<%= config.bin %> <%= command.id %>"
856
+ "<%= config.bin %> <%= command.id %> -l archive -c stable",
857
+ "<%= config.bin %> <%= command.id %> -l archive -c stable-rc",
858
+ "<%= config.bin %> <%= command.id %> -l archive npm -c stable",
859
+ "<%= config.bin %> <%= command.id %> -l archive npm -c latest",
860
+ "<%= config.bin %> <%= command.id %> -l archive npm -c latest latest-rc",
861
+ "<%= config.bin %> <%= command.id %> -l archive npm -c stable stable-rc",
862
+ "<%= config.bin %> <%= command.id %> -l npm -c latest --salesforce",
863
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/core",
864
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/\\*\\*/ salesforce-alm",
865
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d chalk -s"
857
866
  ],
858
867
  "flags": {
859
868
  "json": {
@@ -871,52 +880,81 @@
871
880
  "multiple": false,
872
881
  "type": "option"
873
882
  },
874
- "dryrun": {
883
+ "dependencies": {
875
884
  "char": "d",
876
- "name": "dryrun",
877
- "summary": "only show what would be removed from node_modules",
878
- "allowNo": false,
879
- "type": "boolean"
885
+ "name": "dependencies",
886
+ "summary": "glob pattern of dependencies you want to see the version of",
887
+ "hasDynamicHelp": false,
888
+ "multiple": true,
889
+ "type": "option"
880
890
  },
881
- "types": {
882
- "char": "t",
883
- "name": "types",
884
- "summary": "remove all types (.d.ts) files from node_modules",
891
+ "salesforce": {
892
+ "char": "s",
893
+ "name": "salesforce",
894
+ "summary": "show versions of salesforce owned dependencies",
885
895
  "allowNo": false,
886
896
  "type": "boolean"
887
897
  },
888
- "verbose": {
889
- "name": "verbose",
890
- "summary": "show all files paths being removed",
898
+ "channels": {
899
+ "char": "c",
900
+ "name": "channels",
901
+ "required": true,
902
+ "summary": "the channel you want to inspect (for achives, latest and latest-rc are translated to stable and stable-rc. And vice-versa for npm)",
903
+ "hasDynamicHelp": false,
904
+ "multiple": true,
905
+ "options": [
906
+ "stable",
907
+ "stable-rc",
908
+ "latest",
909
+ "latest-rc",
910
+ "nightly"
911
+ ],
912
+ "type": "option"
913
+ },
914
+ "locations": {
915
+ "char": "l",
916
+ "name": "locations",
917
+ "required": true,
918
+ "summary": "the location you want to inspect",
919
+ "hasDynamicHelp": false,
920
+ "multiple": true,
921
+ "options": [
922
+ "archive",
923
+ "npm"
924
+ ],
925
+ "type": "option"
926
+ },
927
+ "ignore-missing": {
928
+ "name": "ignore-missing",
929
+ "summary": "skip missing archives. Useful when supporting new architectures in oclif",
891
930
  "allowNo": false,
892
931
  "type": "boolean"
893
932
  }
894
933
  },
895
934
  "hasDynamicHelp": false,
896
935
  "hiddenAliases": [],
897
- "id": "cli:tarballs:prepare",
936
+ "id": "cli:versions:inspect",
898
937
  "pluginAlias": "@salesforce/plugin-release-management",
899
938
  "pluginName": "@salesforce/plugin-release-management",
900
939
  "pluginType": "core",
901
940
  "strict": true,
902
- "summary": "remove unnecessary files from node_modules",
941
+ "summary": "inspect the CLI version across all install paths",
903
942
  "enableJsonFlag": true,
904
943
  "isESM": true,
905
944
  "relativePath": [
906
945
  "lib",
907
946
  "commands",
908
947
  "cli",
909
- "tarballs",
910
- "prepare.js"
948
+ "versions",
949
+ "inspect.js"
911
950
  ]
912
951
  },
913
- "cli:tarballs:smoke": {
952
+ "github:check:closed": {
914
953
  "aliases": [],
915
954
  "args": {},
916
- "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
955
+ "description": "Description of a command.",
917
956
  "examples": [
918
- "<%= config.bin %> <%= command.id %>",
919
- "<%= config.bin %> <%= command.id %>"
957
+ "<%= config.bin %> <%= command.id %> -o me@gus.com"
920
958
  ],
921
959
  "flags": {
922
960
  "json": {
@@ -934,39 +972,50 @@
934
972
  "multiple": false,
935
973
  "type": "option"
936
974
  },
937
- "verbose": {
938
- "name": "verbose",
939
- "summary": "show the --help output for each command",
940
- "allowNo": false,
941
- "type": "boolean"
975
+ "gus": {
976
+ "char": "o",
977
+ "name": "gus",
978
+ "noCacheDefault": true,
979
+ "required": true,
980
+ "summary": "Username/alias of your GUS org connection",
981
+ "hasDynamicHelp": true,
982
+ "multiple": false,
983
+ "type": "option"
984
+ },
985
+ "github-token": {
986
+ "env": "GITHUB_TOKEN",
987
+ "name": "github-token",
988
+ "required": true,
989
+ "summary": "Github token--store this in the environment as GITHUB_TOKEN",
990
+ "hasDynamicHelp": false,
991
+ "multiple": false,
992
+ "type": "option"
942
993
  }
943
994
  },
944
- "hasDynamicHelp": false,
995
+ "hasDynamicHelp": true,
945
996
  "hiddenAliases": [],
946
- "id": "cli:tarballs:smoke",
997
+ "id": "github:check:closed",
947
998
  "pluginAlias": "@salesforce/plugin-release-management",
948
999
  "pluginName": "@salesforce/plugin-release-management",
949
1000
  "pluginType": "core",
950
1001
  "strict": true,
951
- "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
1002
+ "summary": "Show open Github issues with GUS WI",
952
1003
  "enableJsonFlag": true,
953
1004
  "isESM": true,
954
1005
  "relativePath": [
955
1006
  "lib",
956
1007
  "commands",
957
- "cli",
958
- "tarballs",
959
- "smoke.js"
1008
+ "github",
1009
+ "check",
1010
+ "closed.js"
960
1011
  ]
961
1012
  },
962
- "cli:tarballs:verify": {
1013
+ "cli:tarballs:prepare": {
963
1014
  "aliases": [],
964
1015
  "args": {},
965
- "description": "verify that tarballs are ready to be uploaded",
1016
+ "description": "remove unnecessary files from node_modules",
966
1017
  "examples": [
967
- "<%= config.bin %> <%= command.id %>",
968
- "<%= config.bin %> <%= command.id %> --cli sfdx",
969
- "<%= config.bin %> <%= command.id %> --cli sf"
1018
+ "<%= config.bin %> <%= command.id %>"
970
1019
  ],
971
1020
  "flags": {
972
1021
  "json": {
@@ -984,37 +1033,35 @@
984
1033
  "multiple": false,
985
1034
  "type": "option"
986
1035
  },
987
- "cli": {
988
- "char": "c",
989
- "name": "cli",
990
- "summary": "the cli to verify",
991
- "default": "sfdx",
992
- "hasDynamicHelp": false,
993
- "multiple": false,
994
- "options": [
995
- "sf",
996
- "sfdx"
997
- ],
998
- "type": "option"
1036
+ "dryrun": {
1037
+ "char": "d",
1038
+ "name": "dryrun",
1039
+ "summary": "only show what would be removed from node_modules",
1040
+ "allowNo": false,
1041
+ "type": "boolean"
999
1042
  },
1000
- "windows-username-buffer": {
1001
- "char": "w",
1002
- "name": "windows-username-buffer",
1003
- "summary": "the number of characters to allow for windows usernames",
1004
- "default": 41,
1005
- "hasDynamicHelp": false,
1006
- "multiple": false,
1007
- "type": "option"
1043
+ "types": {
1044
+ "char": "t",
1045
+ "name": "types",
1046
+ "summary": "remove all types (.d.ts) files from node_modules",
1047
+ "allowNo": false,
1048
+ "type": "boolean"
1049
+ },
1050
+ "verbose": {
1051
+ "name": "verbose",
1052
+ "summary": "show all files paths being removed",
1053
+ "allowNo": false,
1054
+ "type": "boolean"
1008
1055
  }
1009
1056
  },
1010
1057
  "hasDynamicHelp": false,
1011
1058
  "hiddenAliases": [],
1012
- "id": "cli:tarballs:verify",
1059
+ "id": "cli:tarballs:prepare",
1013
1060
  "pluginAlias": "@salesforce/plugin-release-management",
1014
1061
  "pluginName": "@salesforce/plugin-release-management",
1015
1062
  "pluginType": "core",
1016
1063
  "strict": true,
1017
- "summary": "verify that tarballs are ready to be uploaded",
1064
+ "summary": "remove unnecessary files from node_modules",
1018
1065
  "enableJsonFlag": true,
1019
1066
  "isESM": true,
1020
1067
  "relativePath": [
@@ -1022,24 +1069,16 @@
1022
1069
  "commands",
1023
1070
  "cli",
1024
1071
  "tarballs",
1025
- "verify.js"
1072
+ "prepare.js"
1026
1073
  ]
1027
1074
  },
1028
- "cli:versions:inspect": {
1075
+ "cli:tarballs:smoke": {
1029
1076
  "aliases": [],
1030
1077
  "args": {},
1031
- "description": "inspect the CLI version across all install paths",
1078
+ "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
1032
1079
  "examples": [
1033
- "<%= config.bin %> <%= command.id %> -l archive -c stable",
1034
- "<%= config.bin %> <%= command.id %> -l archive -c stable-rc",
1035
- "<%= config.bin %> <%= command.id %> -l archive npm -c stable",
1036
- "<%= config.bin %> <%= command.id %> -l archive npm -c latest",
1037
- "<%= config.bin %> <%= command.id %> -l archive npm -c latest latest-rc",
1038
- "<%= config.bin %> <%= command.id %> -l archive npm -c stable stable-rc",
1039
- "<%= config.bin %> <%= command.id %> -l npm -c latest --salesforce",
1040
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/core",
1041
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/\\*\\*/ salesforce-alm",
1042
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d chalk -s"
1080
+ "<%= config.bin %> <%= command.id %>",
1081
+ "<%= config.bin %> <%= command.id %>"
1043
1082
  ],
1044
1083
  "flags": {
1045
1084
  "json": {
@@ -1057,81 +1096,39 @@
1057
1096
  "multiple": false,
1058
1097
  "type": "option"
1059
1098
  },
1060
- "dependencies": {
1061
- "char": "d",
1062
- "name": "dependencies",
1063
- "summary": "glob pattern of dependencies you want to see the version of",
1064
- "hasDynamicHelp": false,
1065
- "multiple": true,
1066
- "type": "option"
1067
- },
1068
- "salesforce": {
1069
- "char": "s",
1070
- "name": "salesforce",
1071
- "summary": "show versions of salesforce owned dependencies",
1072
- "allowNo": false,
1073
- "type": "boolean"
1074
- },
1075
- "channels": {
1076
- "char": "c",
1077
- "name": "channels",
1078
- "required": true,
1079
- "summary": "the channel you want to inspect (for achives, latest and latest-rc are translated to stable and stable-rc. And vice-versa for npm)",
1080
- "hasDynamicHelp": false,
1081
- "multiple": true,
1082
- "options": [
1083
- "stable",
1084
- "stable-rc",
1085
- "latest",
1086
- "latest-rc",
1087
- "nightly"
1088
- ],
1089
- "type": "option"
1090
- },
1091
- "locations": {
1092
- "char": "l",
1093
- "name": "locations",
1094
- "required": true,
1095
- "summary": "the location you want to inspect",
1096
- "hasDynamicHelp": false,
1097
- "multiple": true,
1098
- "options": [
1099
- "archive",
1100
- "npm"
1101
- ],
1102
- "type": "option"
1103
- },
1104
- "ignore-missing": {
1105
- "name": "ignore-missing",
1106
- "summary": "skip missing archives. Useful when supporting new architectures in oclif",
1099
+ "verbose": {
1100
+ "name": "verbose",
1101
+ "summary": "show the --help output for each command",
1107
1102
  "allowNo": false,
1108
1103
  "type": "boolean"
1109
1104
  }
1110
1105
  },
1111
1106
  "hasDynamicHelp": false,
1112
1107
  "hiddenAliases": [],
1113
- "id": "cli:versions:inspect",
1108
+ "id": "cli:tarballs:smoke",
1114
1109
  "pluginAlias": "@salesforce/plugin-release-management",
1115
1110
  "pluginName": "@salesforce/plugin-release-management",
1116
1111
  "pluginType": "core",
1117
1112
  "strict": true,
1118
- "summary": "inspect the CLI version across all install paths",
1113
+ "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
1119
1114
  "enableJsonFlag": true,
1120
1115
  "isESM": true,
1121
1116
  "relativePath": [
1122
1117
  "lib",
1123
1118
  "commands",
1124
1119
  "cli",
1125
- "versions",
1126
- "inspect.js"
1120
+ "tarballs",
1121
+ "smoke.js"
1127
1122
  ]
1128
1123
  },
1129
- "github:check:closed": {
1124
+ "cli:tarballs:verify": {
1130
1125
  "aliases": [],
1131
1126
  "args": {},
1132
- "description": "Description of a command.",
1127
+ "description": "verify that tarballs are ready to be uploaded",
1133
1128
  "examples": [
1134
- "<%= config.bin %> <%= command.id %> -o me@gus.com"
1129
+ "<%= config.bin %> <%= command.id %>",
1130
+ "<%= config.bin %> <%= command.id %> --cli sfdx",
1131
+ "<%= config.bin %> <%= command.id %> --cli sf"
1135
1132
  ],
1136
1133
  "flags": {
1137
1134
  "json": {
@@ -1149,42 +1146,45 @@
1149
1146
  "multiple": false,
1150
1147
  "type": "option"
1151
1148
  },
1152
- "gus": {
1153
- "char": "o",
1154
- "name": "gus",
1155
- "noCacheDefault": true,
1156
- "required": true,
1157
- "summary": "Username/alias of your GUS org connection",
1158
- "hasDynamicHelp": true,
1149
+ "cli": {
1150
+ "char": "c",
1151
+ "name": "cli",
1152
+ "summary": "the cli to verify",
1153
+ "default": "sfdx",
1154
+ "hasDynamicHelp": false,
1159
1155
  "multiple": false,
1156
+ "options": [
1157
+ "sf",
1158
+ "sfdx"
1159
+ ],
1160
1160
  "type": "option"
1161
1161
  },
1162
- "github-token": {
1163
- "env": "GITHUB_TOKEN",
1164
- "name": "github-token",
1165
- "required": true,
1166
- "summary": "Github token--store this in the environment as GITHUB_TOKEN",
1162
+ "windows-username-buffer": {
1163
+ "char": "w",
1164
+ "name": "windows-username-buffer",
1165
+ "summary": "the number of characters to allow for windows usernames",
1166
+ "default": 41,
1167
1167
  "hasDynamicHelp": false,
1168
1168
  "multiple": false,
1169
1169
  "type": "option"
1170
1170
  }
1171
1171
  },
1172
- "hasDynamicHelp": true,
1172
+ "hasDynamicHelp": false,
1173
1173
  "hiddenAliases": [],
1174
- "id": "github:check:closed",
1174
+ "id": "cli:tarballs:verify",
1175
1175
  "pluginAlias": "@salesforce/plugin-release-management",
1176
1176
  "pluginName": "@salesforce/plugin-release-management",
1177
1177
  "pluginType": "core",
1178
1178
  "strict": true,
1179
- "summary": "Show open Github issues with GUS WI",
1179
+ "summary": "verify that tarballs are ready to be uploaded",
1180
1180
  "enableJsonFlag": true,
1181
1181
  "isESM": true,
1182
1182
  "relativePath": [
1183
1183
  "lib",
1184
1184
  "commands",
1185
- "github",
1186
- "check",
1187
- "closed.js"
1185
+ "cli",
1186
+ "tarballs",
1187
+ "verify.js"
1188
1188
  ]
1189
1189
  },
1190
1190
  "npm:dependencies:pin": {
@@ -1242,56 +1242,6 @@
1242
1242
  "pin.js"
1243
1243
  ]
1244
1244
  },
1245
- "cli:install:jit:test": {
1246
- "aliases": [],
1247
- "args": {},
1248
- "examples": [
1249
- "<%= config.bin %> <%= command.id %>"
1250
- ],
1251
- "flags": {
1252
- "json": {
1253
- "description": "Format output as json.",
1254
- "helpGroup": "GLOBAL",
1255
- "name": "json",
1256
- "allowNo": false,
1257
- "type": "boolean"
1258
- },
1259
- "flags-dir": {
1260
- "helpGroup": "GLOBAL",
1261
- "name": "flags-dir",
1262
- "summary": "Import flag values from a directory.",
1263
- "hasDynamicHelp": false,
1264
- "multiple": false,
1265
- "type": "option"
1266
- },
1267
- "jit-plugin": {
1268
- "char": "j",
1269
- "name": "jit-plugin",
1270
- "summary": "JIT plugin(s) to test, example: @salesforce/plugin-community",
1271
- "hasDynamicHelp": false,
1272
- "multiple": true,
1273
- "type": "option"
1274
- }
1275
- },
1276
- "hasDynamicHelp": false,
1277
- "hiddenAliases": [],
1278
- "id": "cli:install:jit:test",
1279
- "pluginAlias": "@salesforce/plugin-release-management",
1280
- "pluginName": "@salesforce/plugin-release-management",
1281
- "pluginType": "core",
1282
- "strict": true,
1283
- "summary": "Test that all JIT plugins can be successfully installed.",
1284
- "enableJsonFlag": true,
1285
- "isESM": true,
1286
- "relativePath": [
1287
- "lib",
1288
- "commands",
1289
- "cli",
1290
- "install",
1291
- "jit",
1292
- "test.js"
1293
- ]
1294
- },
1295
1245
  "npm:package:release": {
1296
1246
  "aliases": [],
1297
1247
  "args": {},
@@ -1388,7 +1338,57 @@
1388
1338
  "package",
1389
1339
  "release.js"
1390
1340
  ]
1341
+ },
1342
+ "cli:install:jit:test": {
1343
+ "aliases": [],
1344
+ "args": {},
1345
+ "examples": [
1346
+ "<%= config.bin %> <%= command.id %>"
1347
+ ],
1348
+ "flags": {
1349
+ "json": {
1350
+ "description": "Format output as json.",
1351
+ "helpGroup": "GLOBAL",
1352
+ "name": "json",
1353
+ "allowNo": false,
1354
+ "type": "boolean"
1355
+ },
1356
+ "flags-dir": {
1357
+ "helpGroup": "GLOBAL",
1358
+ "name": "flags-dir",
1359
+ "summary": "Import flag values from a directory.",
1360
+ "hasDynamicHelp": false,
1361
+ "multiple": false,
1362
+ "type": "option"
1363
+ },
1364
+ "jit-plugin": {
1365
+ "char": "j",
1366
+ "name": "jit-plugin",
1367
+ "summary": "JIT plugin(s) to test, example: @salesforce/plugin-community",
1368
+ "hasDynamicHelp": false,
1369
+ "multiple": true,
1370
+ "type": "option"
1371
+ }
1372
+ },
1373
+ "hasDynamicHelp": false,
1374
+ "hiddenAliases": [],
1375
+ "id": "cli:install:jit:test",
1376
+ "pluginAlias": "@salesforce/plugin-release-management",
1377
+ "pluginName": "@salesforce/plugin-release-management",
1378
+ "pluginType": "core",
1379
+ "strict": true,
1380
+ "summary": "Test that all JIT plugins can be successfully installed.",
1381
+ "enableJsonFlag": true,
1382
+ "isESM": true,
1383
+ "relativePath": [
1384
+ "lib",
1385
+ "commands",
1386
+ "cli",
1387
+ "install",
1388
+ "jit",
1389
+ "test.js"
1390
+ ]
1391
1391
  }
1392
1392
  },
1393
- "version": "5.7.17"
1393
+ "version": "5.7.19"
1394
1394
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-release-management",
3
3
  "description": "A plugin for preparing and publishing npm packages",
4
- "version": "5.7.17",
4
+ "version": "5.7.19",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "type": "module",
@@ -14,10 +14,10 @@
14
14
  "@octokit/plugin-paginate-rest": "^11.6.0",
15
15
  "@octokit/plugin-throttling": "^9.6.1",
16
16
  "@salesforce/cli-plugins-testkit": "^5.3.39",
17
- "@salesforce/core": "^8.9.0",
17
+ "@salesforce/core": "^8.9.1",
18
18
  "@salesforce/kit": "^3.2.0",
19
19
  "@salesforce/plugin-command-reference": "^3.1.49",
20
- "@salesforce/plugin-trust": "^3.7.81",
20
+ "@salesforce/plugin-trust": "^3.7.83",
21
21
  "@salesforce/sf-plugins-core": "^12.2.1",
22
22
  "@salesforce/ts-types": "^2.0.10",
23
23
  "aws-sdk": "^2.1692.0",
@@ -39,10 +39,10 @@
39
39
  "@types/semver": "^7.7.0",
40
40
  "@types/shelljs": "^0.8.15",
41
41
  "aws-sdk-mock": "^5.9.0",
42
- "eslint-plugin-sf-plugin": "^1.20.18",
43
- "oclif": "^4.17.43",
42
+ "eslint-plugin-sf-plugin": "^1.20.19",
43
+ "oclif": "^4.17.46",
44
44
  "ts-node": "^10.9.2",
45
- "typescript": "^5.8.2"
45
+ "typescript": "^5.8.3"
46
46
  },
47
47
  "config": {},
48
48
  "engines": {