@salesforce/plugin-release-management 5.7.79 → 5.7.81
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 +16 -16
- package/npm-shrinkwrap.json +1210 -147
- package/oclif.lock +343 -65
- package/oclif.manifest.json +108 -108
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -160,6 +160,113 @@
|
|
|
160
160
|
"promote.js"
|
|
161
161
|
]
|
|
162
162
|
},
|
|
163
|
+
"dependabot:automerge": {
|
|
164
|
+
"aliases": [],
|
|
165
|
+
"args": {},
|
|
166
|
+
"description": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
167
|
+
"examples": [
|
|
168
|
+
"<%= config.bin %> <%= command.id %> --max-version-bump patch",
|
|
169
|
+
"<%= config.bin %> <%= command.id %> --max-version-bump minor",
|
|
170
|
+
"<%= config.bin %> <%= command.id %> --max-version-bump major"
|
|
171
|
+
],
|
|
172
|
+
"flags": {
|
|
173
|
+
"json": {
|
|
174
|
+
"description": "Format output as json.",
|
|
175
|
+
"helpGroup": "GLOBAL",
|
|
176
|
+
"name": "json",
|
|
177
|
+
"allowNo": false,
|
|
178
|
+
"type": "boolean"
|
|
179
|
+
},
|
|
180
|
+
"flags-dir": {
|
|
181
|
+
"helpGroup": "GLOBAL",
|
|
182
|
+
"name": "flags-dir",
|
|
183
|
+
"summary": "Import flag values from a directory.",
|
|
184
|
+
"hasDynamicHelp": false,
|
|
185
|
+
"multiple": false,
|
|
186
|
+
"type": "option"
|
|
187
|
+
},
|
|
188
|
+
"owner": {
|
|
189
|
+
"char": "o",
|
|
190
|
+
"dependsOn": [
|
|
191
|
+
"repo"
|
|
192
|
+
],
|
|
193
|
+
"name": "owner",
|
|
194
|
+
"summary": "the organization that the repository belongs to. This defaults to the owner specified in the package.json",
|
|
195
|
+
"hasDynamicHelp": false,
|
|
196
|
+
"multiple": false,
|
|
197
|
+
"type": "option"
|
|
198
|
+
},
|
|
199
|
+
"repo": {
|
|
200
|
+
"char": "r",
|
|
201
|
+
"dependsOn": [
|
|
202
|
+
"owner"
|
|
203
|
+
],
|
|
204
|
+
"name": "repo",
|
|
205
|
+
"summary": "the repository you want to consolidate PRs on. This defaults to the repository specified in the package.json",
|
|
206
|
+
"hasDynamicHelp": false,
|
|
207
|
+
"multiple": false,
|
|
208
|
+
"type": "option"
|
|
209
|
+
},
|
|
210
|
+
"max-version-bump": {
|
|
211
|
+
"char": "m",
|
|
212
|
+
"description": "the maximum version bump you want to be included",
|
|
213
|
+
"name": "max-version-bump",
|
|
214
|
+
"required": true,
|
|
215
|
+
"default": "minor",
|
|
216
|
+
"hasDynamicHelp": false,
|
|
217
|
+
"multiple": false,
|
|
218
|
+
"options": [
|
|
219
|
+
"major",
|
|
220
|
+
"minor",
|
|
221
|
+
"patch"
|
|
222
|
+
],
|
|
223
|
+
"type": "option"
|
|
224
|
+
},
|
|
225
|
+
"dryrun": {
|
|
226
|
+
"char": "d",
|
|
227
|
+
"name": "dryrun",
|
|
228
|
+
"summary": "only show what would happen if you consolidated dependabot PRs",
|
|
229
|
+
"allowNo": false,
|
|
230
|
+
"type": "boolean"
|
|
231
|
+
},
|
|
232
|
+
"skip-ci": {
|
|
233
|
+
"char": "s",
|
|
234
|
+
"name": "skip-ci",
|
|
235
|
+
"summary": "add [skip ci] to the merge commit title",
|
|
236
|
+
"allowNo": false,
|
|
237
|
+
"type": "boolean"
|
|
238
|
+
},
|
|
239
|
+
"merge-method": {
|
|
240
|
+
"name": "merge-method",
|
|
241
|
+
"summary": "merge method to use",
|
|
242
|
+
"default": "merge",
|
|
243
|
+
"hasDynamicHelp": false,
|
|
244
|
+
"multiple": false,
|
|
245
|
+
"options": [
|
|
246
|
+
"merge",
|
|
247
|
+
"squash",
|
|
248
|
+
"rebase"
|
|
249
|
+
],
|
|
250
|
+
"type": "option"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"hasDynamicHelp": false,
|
|
254
|
+
"hiddenAliases": [],
|
|
255
|
+
"id": "dependabot:automerge",
|
|
256
|
+
"pluginAlias": "@salesforce/plugin-release-management",
|
|
257
|
+
"pluginName": "@salesforce/plugin-release-management",
|
|
258
|
+
"pluginType": "core",
|
|
259
|
+
"strict": true,
|
|
260
|
+
"summary": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
261
|
+
"enableJsonFlag": true,
|
|
262
|
+
"isESM": true,
|
|
263
|
+
"relativePath": [
|
|
264
|
+
"lib",
|
|
265
|
+
"commands",
|
|
266
|
+
"dependabot",
|
|
267
|
+
"automerge.js"
|
|
268
|
+
]
|
|
269
|
+
},
|
|
163
270
|
"cli:releasenotes": {
|
|
164
271
|
"aliases": [],
|
|
165
272
|
"args": {},
|
|
@@ -1232,113 +1339,6 @@
|
|
|
1232
1339
|
"release.js"
|
|
1233
1340
|
]
|
|
1234
1341
|
},
|
|
1235
|
-
"dependabot:automerge": {
|
|
1236
|
-
"aliases": [],
|
|
1237
|
-
"args": {},
|
|
1238
|
-
"description": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
1239
|
-
"examples": [
|
|
1240
|
-
"<%= config.bin %> <%= command.id %> --max-version-bump patch",
|
|
1241
|
-
"<%= config.bin %> <%= command.id %> --max-version-bump minor",
|
|
1242
|
-
"<%= config.bin %> <%= command.id %> --max-version-bump major"
|
|
1243
|
-
],
|
|
1244
|
-
"flags": {
|
|
1245
|
-
"json": {
|
|
1246
|
-
"description": "Format output as json.",
|
|
1247
|
-
"helpGroup": "GLOBAL",
|
|
1248
|
-
"name": "json",
|
|
1249
|
-
"allowNo": false,
|
|
1250
|
-
"type": "boolean"
|
|
1251
|
-
},
|
|
1252
|
-
"flags-dir": {
|
|
1253
|
-
"helpGroup": "GLOBAL",
|
|
1254
|
-
"name": "flags-dir",
|
|
1255
|
-
"summary": "Import flag values from a directory.",
|
|
1256
|
-
"hasDynamicHelp": false,
|
|
1257
|
-
"multiple": false,
|
|
1258
|
-
"type": "option"
|
|
1259
|
-
},
|
|
1260
|
-
"owner": {
|
|
1261
|
-
"char": "o",
|
|
1262
|
-
"dependsOn": [
|
|
1263
|
-
"repo"
|
|
1264
|
-
],
|
|
1265
|
-
"name": "owner",
|
|
1266
|
-
"summary": "the organization that the repository belongs to. This defaults to the owner specified in the package.json",
|
|
1267
|
-
"hasDynamicHelp": false,
|
|
1268
|
-
"multiple": false,
|
|
1269
|
-
"type": "option"
|
|
1270
|
-
},
|
|
1271
|
-
"repo": {
|
|
1272
|
-
"char": "r",
|
|
1273
|
-
"dependsOn": [
|
|
1274
|
-
"owner"
|
|
1275
|
-
],
|
|
1276
|
-
"name": "repo",
|
|
1277
|
-
"summary": "the repository you want to consolidate PRs on. This defaults to the repository specified in the package.json",
|
|
1278
|
-
"hasDynamicHelp": false,
|
|
1279
|
-
"multiple": false,
|
|
1280
|
-
"type": "option"
|
|
1281
|
-
},
|
|
1282
|
-
"max-version-bump": {
|
|
1283
|
-
"char": "m",
|
|
1284
|
-
"description": "the maximum version bump you want to be included",
|
|
1285
|
-
"name": "max-version-bump",
|
|
1286
|
-
"required": true,
|
|
1287
|
-
"default": "minor",
|
|
1288
|
-
"hasDynamicHelp": false,
|
|
1289
|
-
"multiple": false,
|
|
1290
|
-
"options": [
|
|
1291
|
-
"major",
|
|
1292
|
-
"minor",
|
|
1293
|
-
"patch"
|
|
1294
|
-
],
|
|
1295
|
-
"type": "option"
|
|
1296
|
-
},
|
|
1297
|
-
"dryrun": {
|
|
1298
|
-
"char": "d",
|
|
1299
|
-
"name": "dryrun",
|
|
1300
|
-
"summary": "only show what would happen if you consolidated dependabot PRs",
|
|
1301
|
-
"allowNo": false,
|
|
1302
|
-
"type": "boolean"
|
|
1303
|
-
},
|
|
1304
|
-
"skip-ci": {
|
|
1305
|
-
"char": "s",
|
|
1306
|
-
"name": "skip-ci",
|
|
1307
|
-
"summary": "add [skip ci] to the merge commit title",
|
|
1308
|
-
"allowNo": false,
|
|
1309
|
-
"type": "boolean"
|
|
1310
|
-
},
|
|
1311
|
-
"merge-method": {
|
|
1312
|
-
"name": "merge-method",
|
|
1313
|
-
"summary": "merge method to use",
|
|
1314
|
-
"default": "merge",
|
|
1315
|
-
"hasDynamicHelp": false,
|
|
1316
|
-
"multiple": false,
|
|
1317
|
-
"options": [
|
|
1318
|
-
"merge",
|
|
1319
|
-
"squash",
|
|
1320
|
-
"rebase"
|
|
1321
|
-
],
|
|
1322
|
-
"type": "option"
|
|
1323
|
-
}
|
|
1324
|
-
},
|
|
1325
|
-
"hasDynamicHelp": false,
|
|
1326
|
-
"hiddenAliases": [],
|
|
1327
|
-
"id": "dependabot:automerge",
|
|
1328
|
-
"pluginAlias": "@salesforce/plugin-release-management",
|
|
1329
|
-
"pluginName": "@salesforce/plugin-release-management",
|
|
1330
|
-
"pluginType": "core",
|
|
1331
|
-
"strict": true,
|
|
1332
|
-
"summary": "automatically merge one green, mergeable PR up to the specified maximum bump type",
|
|
1333
|
-
"enableJsonFlag": true,
|
|
1334
|
-
"isESM": true,
|
|
1335
|
-
"relativePath": [
|
|
1336
|
-
"lib",
|
|
1337
|
-
"commands",
|
|
1338
|
-
"dependabot",
|
|
1339
|
-
"automerge.js"
|
|
1340
|
-
]
|
|
1341
|
-
},
|
|
1342
1342
|
"cli:install:jit:test": {
|
|
1343
1343
|
"aliases": [],
|
|
1344
1344
|
"args": {},
|
|
@@ -1390,5 +1390,5 @@
|
|
|
1390
1390
|
]
|
|
1391
1391
|
}
|
|
1392
1392
|
},
|
|
1393
|
-
"version": "5.7.
|
|
1393
|
+
"version": "5.7.81"
|
|
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.
|
|
4
|
+
"version": "5.7.81",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"type": "module",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"sf-release": "bin/run.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@aws-sdk/client-s3": "^3.
|
|
12
|
+
"@aws-sdk/client-s3": "^3.948.0",
|
|
13
13
|
"@oclif/core": "^4.8.0",
|
|
14
14
|
"@octokit/core": "^6.1.6",
|
|
15
15
|
"@octokit/plugin-paginate-rest": "^11.6.0",
|