sfdx-jayree 4.8.21 → 4.8.22
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.md +10 -0
- package/README.md +17 -33
- package/oclif.manifest.json +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [4.8.22](https://github.com/jayree/sfdx-jayree-plugin/compare/v4.8.21...v4.8.22) (2023-08-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @jayree/sfdx-plugin-manifest from 3.1.16 to 3.1.18 ([#923](https://github.com/jayree/sfdx-jayree-plugin/issues/923)) ([f2a8ea6](https://github.com/jayree/sfdx-jayree-plugin/commit/f2a8ea67c6d84cd659ccb77c66f5a517f5375978))
|
|
7
|
+
* **deps:** bump @jayree/sfdx-plugin-org from 1.1.12 to 1.2.1 ([#919](https://github.com/jayree/sfdx-jayree-plugin/issues/919)) ([d723308](https://github.com/jayree/sfdx-jayree-plugin/commit/d723308caa9adc59ff2c797e45d8bf471bb2902f))
|
|
8
|
+
* **deps:** bump @jayree/sfdx-plugin-prettier from 1.3.14 to 1.3.15 ([#925](https://github.com/jayree/sfdx-jayree-plugin/issues/925)) ([d9fa5cf](https://github.com/jayree/sfdx-jayree-plugin/commit/d9fa5cfeb62cfaf91c3cab0d8ec6ab903852d67a))
|
|
9
|
+
* **deps:** bump @jayree/sfdx-plugin-source from 1.3.11 to 1.3.12 ([#924](https://github.com/jayree/sfdx-jayree-plugin/issues/924)) ([d778484](https://github.com/jayree/sfdx-jayree-plugin/commit/d778484286f424562f803563525e27fcff931854))
|
|
10
|
+
|
|
1
11
|
## [4.8.21](https://github.com/jayree/sfdx-jayree-plugin/compare/v4.8.20...v4.8.21) (2023-07-28)
|
|
2
12
|
|
|
3
13
|
|
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ EXAMPLES
|
|
|
59
59
|
...
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.1
|
|
62
|
+
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.2.1/src/commands/jayree/flow/get/coverage.ts)_
|
|
63
63
|
|
|
64
64
|
### `sfdx jayree:manifest:cleanup`
|
|
65
65
|
|
|
@@ -87,7 +87,7 @@ EXAMPLES
|
|
|
87
87
|
$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
|
90
|
+
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.18/src/commands/jayree/manifest/cleanup.ts)_
|
|
91
91
|
|
|
92
92
|
### `sfdx jayree:manifest:generate`
|
|
93
93
|
|
|
@@ -123,7 +123,7 @@ EXAMPLES
|
|
|
123
123
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
124
124
|
```
|
|
125
125
|
|
|
126
|
-
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
|
126
|
+
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.18/src/commands/jayree/manifest/generate.ts)_
|
|
127
127
|
|
|
128
128
|
### `sfdx jayree:manifest:git:diff`
|
|
129
129
|
|
|
@@ -205,7 +205,7 @@ FLAG DESCRIPTIONS
|
|
|
205
205
|
The location can be an absolute path or relative to the current working directory.
|
|
206
206
|
```
|
|
207
207
|
|
|
208
|
-
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.
|
|
208
|
+
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.1.18/src/commands/jayree/manifest/git/diff.ts)_
|
|
209
209
|
|
|
210
210
|
### `sfdx jayree:org:configure`
|
|
211
211
|
|
|
@@ -217,20 +217,14 @@ USAGE
|
|
|
217
217
|
|
|
218
218
|
FLAGS
|
|
219
219
|
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
220
|
-
-t, --tasks=<value>...
|
|
220
|
+
-t, --tasks=<value>... Task name(s) listed in sfdx-project.json, if no tasks are specified, all tasks marked as
|
|
221
|
+
active will be executed.
|
|
221
222
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
222
223
|
--concurrent Execute tasks in parallel.
|
|
223
224
|
|
|
224
225
|
GLOBAL FLAGS
|
|
225
226
|
--json Format output as json.
|
|
226
227
|
|
|
227
|
-
DESCRIPTION
|
|
228
|
-
Make configuration changes that are not covered by the metadata API.
|
|
229
|
-
See example configuration on how to define tasks
|
|
230
|
-
|
|
231
|
-
Make configuration changes that are not covered by the metadata API.
|
|
232
|
-
See example configuration on how to define tasks
|
|
233
|
-
|
|
234
228
|
EXAMPLES
|
|
235
229
|
$ sfdx jayree:org:configure
|
|
236
230
|
$ sfdx jayree:org:configure -u me@my.org
|
|
@@ -238,7 +232,7 @@ EXAMPLES
|
|
|
238
232
|
$ sfdx jayree:org:configure --concurrent --tasks="Asset Settings","Activity Settings"
|
|
239
233
|
```
|
|
240
234
|
|
|
241
|
-
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.1
|
|
235
|
+
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.2.1/src/commands/jayree/org/configure/index.ts)_
|
|
242
236
|
|
|
243
237
|
### `sfdx jayree:org:configure:country`
|
|
244
238
|
|
|
@@ -254,14 +248,9 @@ FLAGS
|
|
|
254
248
|
|
|
255
249
|
GLOBAL FLAGS
|
|
256
250
|
--json Format output as json.
|
|
257
|
-
|
|
258
|
-
DESCRIPTION
|
|
259
|
-
update country integration values in the State/Country Picklists
|
|
260
|
-
|
|
261
|
-
update country integration values in the State/Country Picklists
|
|
262
251
|
```
|
|
263
252
|
|
|
264
|
-
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.1
|
|
253
|
+
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.2.1/src/commands/jayree/org/configure/country.ts)_
|
|
265
254
|
|
|
266
255
|
### `sfdx jayree:org:configure:state`
|
|
267
256
|
|
|
@@ -282,14 +271,9 @@ FLAGS
|
|
|
282
271
|
|
|
283
272
|
GLOBAL FLAGS
|
|
284
273
|
--json Format output as json.
|
|
285
|
-
|
|
286
|
-
DESCRIPTION
|
|
287
|
-
import (create/update) states into the State/Country Picklists
|
|
288
|
-
|
|
289
|
-
import (create/update) states into the State/Country Picklists
|
|
290
274
|
```
|
|
291
275
|
|
|
292
|
-
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.1
|
|
276
|
+
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.2.1/src/commands/jayree/org/configure/state.ts)_
|
|
293
277
|
|
|
294
278
|
### `sfdx jayree:org:get:settings`
|
|
295
279
|
|
|
@@ -317,7 +301,7 @@ EXAMPLES
|
|
|
317
301
|
$ sfdx jayree:org:settings -u MyTestOrg1 -w
|
|
318
302
|
```
|
|
319
303
|
|
|
320
|
-
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.1
|
|
304
|
+
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.2.1/src/commands/jayree/org/get/settings.ts)_
|
|
321
305
|
|
|
322
306
|
### `sfdx jayree:org:stream`
|
|
323
307
|
|
|
@@ -347,7 +331,7 @@ EXAMPLES
|
|
|
347
331
|
...
|
|
348
332
|
```
|
|
349
333
|
|
|
350
|
-
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.1
|
|
334
|
+
_See code: [@jayree/sfdx-plugin-org](https://github.com/jayree/sfdx-plugin-org/blob/v1.2.1/src/commands/jayree/org/stream.ts)_
|
|
351
335
|
|
|
352
336
|
### `sfdx jayree:project:compare:snapshot`
|
|
353
337
|
|
|
@@ -367,7 +351,7 @@ ALIASES
|
|
|
367
351
|
$ sfdx jayree:source:snapshot:compare
|
|
368
352
|
```
|
|
369
353
|
|
|
370
|
-
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.
|
|
354
|
+
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.12/src/commands/jayree/project/compare/snapshot.ts)_
|
|
371
355
|
|
|
372
356
|
### `sfdx jayree:project:fix`
|
|
373
357
|
|
|
@@ -388,7 +372,7 @@ ALIASES
|
|
|
388
372
|
$ sfdx jayree:source:fix
|
|
389
373
|
```
|
|
390
374
|
|
|
391
|
-
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.
|
|
375
|
+
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.12/src/commands/jayree/project/fix.ts)_
|
|
392
376
|
|
|
393
377
|
### `sfdx jayree:project:generate:snapshot`
|
|
394
378
|
|
|
@@ -408,7 +392,7 @@ ALIASES
|
|
|
408
392
|
$ sfdx jayree:source:snapshot:generate
|
|
409
393
|
```
|
|
410
394
|
|
|
411
|
-
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.
|
|
395
|
+
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.12/src/commands/jayree/project/generate/snapshot.ts)_
|
|
412
396
|
|
|
413
397
|
### `sfdx jayree:project:list:tracking`
|
|
414
398
|
|
|
@@ -435,7 +419,7 @@ EXAMPLES
|
|
|
435
419
|
$ sfdx jayree:source:tracking:list -u me@my.org -r 101
|
|
436
420
|
```
|
|
437
421
|
|
|
438
|
-
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.
|
|
422
|
+
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.12/src/commands/jayree/project/list/tracking.ts)_
|
|
439
423
|
|
|
440
424
|
### `sfdx jayree:project:store:tracking:get`
|
|
441
425
|
|
|
@@ -459,7 +443,7 @@ EXAMPLES
|
|
|
459
443
|
$ sfdx jayree:source:tracking:store:get -u me@my.org
|
|
460
444
|
```
|
|
461
445
|
|
|
462
|
-
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.
|
|
446
|
+
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.12/src/commands/jayree/project/store/tracking/get.ts)_
|
|
463
447
|
|
|
464
448
|
### `sfdx jayree:project:store:tracking:set`
|
|
465
449
|
|
|
@@ -486,7 +470,7 @@ EXAMPLES
|
|
|
486
470
|
$ sfdx jayree:source:tracking:store:set -u MyTestOrg1 -r 101
|
|
487
471
|
```
|
|
488
472
|
|
|
489
|
-
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.
|
|
473
|
+
_See code: [@jayree/sfdx-plugin-source](https://github.com/jayree/sfdx-plugin-source/blob/v1.3.12/src/commands/jayree/project/store/tracking/set.ts)_
|
|
490
474
|
<!-- commandsstop -->
|
|
491
475
|
|
|
492
476
|
## Hooks
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sfdx-jayree",
|
|
3
3
|
"description": "A Salesforce CLI plugin containing commands and hooks for Salesforce Application Lifecycle Management tasks.",
|
|
4
|
-
"version": "4.8.
|
|
4
|
+
"version": "4.8.22",
|
|
5
5
|
"author": "jayree <jayree.git@icloud.com>",
|
|
6
6
|
"bugs": "https://github.com/jayree/sfdx-jayree-plugin/issues",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@jayree/sfdx-plugin-manifest": "^3.1.
|
|
10
|
-
"@jayree/sfdx-plugin-org": "^1.1
|
|
11
|
-
"@jayree/sfdx-plugin-prettier": "^1.3.
|
|
12
|
-
"@jayree/sfdx-plugin-source": "^1.3.
|
|
9
|
+
"@jayree/sfdx-plugin-manifest": "^3.1.18",
|
|
10
|
+
"@jayree/sfdx-plugin-org": "^1.2.1",
|
|
11
|
+
"@jayree/sfdx-plugin-prettier": "^1.3.15",
|
|
12
|
+
"@jayree/sfdx-plugin-source": "^1.3.12"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@oclif/plugin-help": "^5.2.
|
|
15
|
+
"@oclif/plugin-help": "^5.2.15",
|
|
16
16
|
"@salesforce/dev-config": "^4.0.1",
|
|
17
17
|
"@salesforce/dev-scripts": "^5.4.2",
|
|
18
18
|
"@salesforce/prettier-config": "^0.0.3",
|
|
19
|
-
"@salesforce/ts-sinon": "^1.4.
|
|
19
|
+
"@salesforce/ts-sinon": "^1.4.13",
|
|
20
20
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
21
21
|
"@typescript-eslint/parser": "^5.62.0",
|
|
22
22
|
"c8": "^8.0.1",
|
|
23
23
|
"chai": "^4.3.7",
|
|
24
|
-
"eslint": "^8.
|
|
25
|
-
"eslint-config-prettier": "^8.
|
|
24
|
+
"eslint": "^8.46.0",
|
|
25
|
+
"eslint-config-prettier": "^8.10.0",
|
|
26
26
|
"eslint-config-salesforce": "^2.0.2",
|
|
27
27
|
"eslint-config-salesforce-license": "^0.2.0",
|
|
28
28
|
"eslint-config-salesforce-typescript": "^1.1.2",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"eslint-plugin-import": "^2.28.0",
|
|
31
31
|
"eslint-plugin-jsdoc": "^46.4.5",
|
|
32
32
|
"eslint-plugin-prettier": "^4.2.1",
|
|
33
|
-
"eslint-plugin-sf-plugin": "^1.16.
|
|
33
|
+
"eslint-plugin-sf-plugin": "^1.16.1",
|
|
34
34
|
"husky": "^8.0.3",
|
|
35
35
|
"mocha": "^10.2.0",
|
|
36
36
|
"nock": "^13.3.2",
|
|
37
37
|
"nyc": "^15.1.0",
|
|
38
|
-
"oclif": "^3.
|
|
38
|
+
"oclif": "^3.11.1",
|
|
39
39
|
"patch-package": "^8.0.0",
|
|
40
40
|
"pinst": "^3.0.0",
|
|
41
41
|
"prettier": "^2.8.8",
|