@salesforce/plugin-release-management 5.7.18 → 5.7.20

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.
@@ -1,5 +1,112 @@
1
1
  {
2
2
  "commands": {
3
+ "dependabot:automerge": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "automatically merge one green, mergeable PR up to the specified maximum bump type",
7
+ "examples": [
8
+ "<%= config.bin %> <%= command.id %> --max-version-bump patch",
9
+ "<%= config.bin %> <%= command.id %> --max-version-bump minor",
10
+ "<%= config.bin %> <%= command.id %> --max-version-bump major"
11
+ ],
12
+ "flags": {
13
+ "json": {
14
+ "description": "Format output as json.",
15
+ "helpGroup": "GLOBAL",
16
+ "name": "json",
17
+ "allowNo": false,
18
+ "type": "boolean"
19
+ },
20
+ "flags-dir": {
21
+ "helpGroup": "GLOBAL",
22
+ "name": "flags-dir",
23
+ "summary": "Import flag values from a directory.",
24
+ "hasDynamicHelp": false,
25
+ "multiple": false,
26
+ "type": "option"
27
+ },
28
+ "owner": {
29
+ "char": "o",
30
+ "dependsOn": [
31
+ "repo"
32
+ ],
33
+ "name": "owner",
34
+ "summary": "the organization that the repository belongs to. This defaults to the owner specified in the package.json",
35
+ "hasDynamicHelp": false,
36
+ "multiple": false,
37
+ "type": "option"
38
+ },
39
+ "repo": {
40
+ "char": "r",
41
+ "dependsOn": [
42
+ "owner"
43
+ ],
44
+ "name": "repo",
45
+ "summary": "the repository you want to consolidate PRs on. This defaults to the repository specified in the package.json",
46
+ "hasDynamicHelp": false,
47
+ "multiple": false,
48
+ "type": "option"
49
+ },
50
+ "max-version-bump": {
51
+ "char": "m",
52
+ "description": "the maximum version bump you want to be included",
53
+ "name": "max-version-bump",
54
+ "required": true,
55
+ "default": "minor",
56
+ "hasDynamicHelp": false,
57
+ "multiple": false,
58
+ "options": [
59
+ "major",
60
+ "minor",
61
+ "patch"
62
+ ],
63
+ "type": "option"
64
+ },
65
+ "dryrun": {
66
+ "char": "d",
67
+ "name": "dryrun",
68
+ "summary": "only show what would happen if you consolidated dependabot PRs",
69
+ "allowNo": false,
70
+ "type": "boolean"
71
+ },
72
+ "skip-ci": {
73
+ "char": "s",
74
+ "name": "skip-ci",
75
+ "summary": "add [skip ci] to the merge commit title",
76
+ "allowNo": false,
77
+ "type": "boolean"
78
+ },
79
+ "merge-method": {
80
+ "name": "merge-method",
81
+ "summary": "merge method to use",
82
+ "default": "merge",
83
+ "hasDynamicHelp": false,
84
+ "multiple": false,
85
+ "options": [
86
+ "merge",
87
+ "squash",
88
+ "rebase"
89
+ ],
90
+ "type": "option"
91
+ }
92
+ },
93
+ "hasDynamicHelp": false,
94
+ "hiddenAliases": [],
95
+ "id": "dependabot:automerge",
96
+ "pluginAlias": "@salesforce/plugin-release-management",
97
+ "pluginName": "@salesforce/plugin-release-management",
98
+ "pluginType": "core",
99
+ "strict": true,
100
+ "summary": "automatically merge one green, mergeable PR up to the specified maximum bump type",
101
+ "enableJsonFlag": true,
102
+ "isESM": true,
103
+ "relativePath": [
104
+ "lib",
105
+ "commands",
106
+ "dependabot",
107
+ "automerge.js"
108
+ ]
109
+ },
3
110
  "channel:promote": {
4
111
  "aliases": [],
5
112
  "args": {},
@@ -160,113 +267,6 @@
160
267
  "promote.js"
161
268
  ]
162
269
  },
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
- },
270
270
  "cli:releasenotes": {
271
271
  "aliases": [],
272
272
  "args": {},
@@ -1390,5 +1390,5 @@
1390
1390
  ]
1391
1391
  }
1392
1392
  },
1393
- "version": "5.7.18"
1393
+ "version": "5.7.20"
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.18",
4
+ "version": "5.7.20",
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.1",
17
+ "@salesforce/core": "^8.10.0",
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": {