sfdx-jayree 4.4.30 → 4.4.31

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [4.4.31](https://github.com/jayree/sfdx-jayree-plugin/compare/v4.4.30...v4.4.31) (2023-03-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @jayree/sfdx-plugin-manifest from 2.9.1 3.0.2 ([b3ceb45](https://github.com/jayree/sfdx-jayree-plugin/commit/b3ceb45bc0c38aec2dbb330ba6b9a198795644e0))
7
+
1
8
  ## [4.4.30](https://github.com/jayree/sfdx-jayree-plugin/compare/v4.4.29...v4.4.30) (2023-03-10)
2
9
 
3
10
 
package/README.md CHANGED
@@ -24,7 +24,7 @@ $ sfdx plugins:install sfdx-jayree
24
24
  $ sfdx jayree:[COMMAND]
25
25
  running command...
26
26
  $ sfdx plugins
27
- sfdx-jayree 4.4.30
27
+ sfdx-jayree 4.4.31
28
28
  $ sfdx help jayree:[COMMAND]
29
29
  USAGE
30
30
  $ sfdx jayree:COMMAND
@@ -43,6 +43,7 @@ USAGE
43
43
  * [`sfdx jayree:manifest:cleanup`](#sfdx-jayreemanifestcleanup)
44
44
  * [`sfdx jayree:manifest:generate`](#sfdx-jayreemanifestgenerate)
45
45
  * [`sfdx jayree:manifest:git:diff`](#sfdx-jayreemanifestgitdiff)
46
+ * [`sfdx jayree:manifest:legacy:git:diff`](#sfdx-jayreemanifestlegacygitdiff)
46
47
  * [`sfdx jayree:org:configure`](#sfdx-jayreeorgconfigure)
47
48
  * [`sfdx jayree:org:configure:country`](#sfdx-jayreeorgconfigurecountry)
48
49
  * [`sfdx jayree:org:configure:state`](#sfdx-jayreeorgconfigurestate)
@@ -195,7 +196,7 @@ EXAMPLES
195
196
  ...
196
197
  ```
197
198
 
198
- _See code: [src/commands/jayree/flowtestcoverage.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/flowtestcoverage.ts)_
199
+ _See code: [src/commands/jayree/flowtestcoverage.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/flowtestcoverage.ts)_
199
200
 
200
201
  ### `sfdx jayree:manifest:beta:git:diff`
201
202
 
@@ -228,6 +229,9 @@ DESCRIPTION
228
229
 
229
230
  You can use all ways to spell <commit> which are valid for 'git diff' (See https://git-scm.com/docs/git-diff).
230
231
 
232
+ ALIASES
233
+ $ sfdx jayree:manifest:beta:git:diff
234
+
231
235
  EXAMPLES
232
236
  Uses the changes between two arbitrary <commit>.
233
237
 
@@ -274,8 +278,6 @@ FLAG DESCRIPTIONS
274
278
  The location can be an absolute path or relative to the current working directory.
275
279
  ```
276
280
 
277
- _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.1/src/commands/jayree/manifest/beta/git/diff.ts)_
278
-
279
281
  ### `sfdx jayree:manifest:cleanup`
280
282
 
281
283
  Removes those tags from a manifest file that are present in a second manifest file.
@@ -302,7 +304,7 @@ EXAMPLES
302
304
  $ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
303
305
  ```
304
306
 
305
- _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.1/src/commands/jayree/manifest/cleanup.ts)_
307
+ _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.2/src/commands/jayree/manifest/cleanup.ts)_
306
308
 
307
309
  ### `sfdx jayree:manifest:generate`
308
310
 
@@ -338,7 +340,7 @@ EXAMPLES
338
340
  <Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
339
341
  ```
340
342
 
341
- _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.1/src/commands/jayree/manifest/generate.ts)_
343
+ _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.2/src/commands/jayree/manifest/generate.ts)_
342
344
 
343
345
  ### `sfdx jayree:manifest:git:diff`
344
346
 
@@ -346,7 +348,8 @@ Create a project manifest and destructiveChanges manifest that lists the metadat
346
348
 
347
349
  ```
348
350
  USAGE
349
- $ sfdx jayree:manifest:git:diff REF1 [REF2] [--json] [-d <value>] [--output-dir <value>] [--destructive-changes-only]
351
+ $ sfdx jayree:manifest:git:diff REF1 [REF2] [--json] [--api-version <value>] [-d <value>] [--output-dir <value>]
352
+ [--destructive-changes-only]
350
353
 
351
354
  ARGUMENTS
352
355
  REF1 Base commit or branch.
@@ -354,6 +357,7 @@ ARGUMENTS
354
357
 
355
358
  FLAGS
356
359
  -d, --source-dir=<value>... Path to the local source files to include in the manifest.
360
+ --api-version=<value> Override the api version used for api requests made by this command
357
361
  --destructive-changes-only Create a destructiveChanges manifest only.
358
362
  --output-dir=<value> Directory to save the created manifest files.
359
363
 
@@ -369,6 +373,9 @@ DESCRIPTION
369
373
 
370
374
  You can use all ways to spell <commit> which are valid for 'git diff' (See https://git-scm.com/docs/git-diff).
371
375
 
376
+ ALIASES
377
+ $ sfdx jayree:manifest:beta:git:diff
378
+
372
379
  EXAMPLES
373
380
  Uses the changes between two arbitrary <commit>.
374
381
 
@@ -415,7 +422,85 @@ FLAG DESCRIPTIONS
415
422
  The location can be an absolute path or relative to the current working directory.
416
423
  ```
417
424
 
418
- _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.9.1/src/commands/jayree/manifest/git/diff.ts)_
425
+ _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.2/src/commands/jayree/manifest/git/diff.ts)_
426
+
427
+ ### `sfdx jayree:manifest:legacy:git:diff`
428
+
429
+ Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or delete based on changes in your git history.
430
+
431
+ ```
432
+ USAGE
433
+ $ sfdx jayree:manifest:legacy:git:diff REF1 [REF2] [--json] [-d <value>] [--output-dir <value>]
434
+ [--destructive-changes-only]
435
+
436
+ ARGUMENTS
437
+ REF1 Base commit or branch.
438
+ REF2 Commit or branch to compare to the base commit.
439
+
440
+ FLAGS
441
+ -d, --source-dir=<value>... Path to the local source files to include in the manifest.
442
+ --destructive-changes-only Create a destructiveChanges manifest only.
443
+ --output-dir=<value> Directory to save the created manifest files.
444
+
445
+ GLOBAL FLAGS
446
+ --json Format output as json.
447
+
448
+ DESCRIPTION
449
+ Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or
450
+ delete based on changes in your git history.
451
+
452
+ Use this command to create a manifest and destructiveChanges manifest file based on the difference (git diff) of two
453
+ git refs.
454
+
455
+ You can use all ways to spell <commit> which are valid for 'git diff' (See https://git-scm.com/docs/git-diff).
456
+
457
+ EXAMPLES
458
+ Uses the changes between two arbitrary <commit>.
459
+
460
+ $ sfdx jayree:manifest:legacy:git:diff <commit> <commit>
461
+ $ sfdx jayree:manifest:legacy:git:diff <commit>..<commit>
462
+
463
+ Uses the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both
464
+ <commit>.
465
+
466
+ $ sfdx jayree:manifest:legacy:git:diff <commit>...<commit>
467
+
468
+ Uses the diff of what is unique in branchB (REF2) and unique in branchA (REF1).
469
+
470
+ $ sfdx jayree:manifest:legacy:git:diff branchA..branchB
471
+
472
+ Uses the diff of what is unique in branchB (REF2).
473
+
474
+ $ sfdx jayree:manifest:legacy:git:diff branchA...branchB
475
+
476
+ Specify the flags before or after the REF args
477
+
478
+ $ sfdx jayree:manifest:legacy:git:diff --output-dir package <commit> <commit>
479
+ $ sfdx jayree:manifest:legacy:git:diff <commit> <commit> --output-dir package
480
+
481
+ If you specify the 'source-dir' flag before the REF args, use '--' to separate the args from the 'source-dir'
482
+ values.
483
+
484
+ $ sfdx jayree:manifest:legacy:git:diff --source-dir force-app -- <commit> <commit>
485
+
486
+ FLAG DESCRIPTIONS
487
+ -d, --source-dir=<value>... Path to the local source files to include in the manifest.
488
+
489
+ The supplied path can be to a single file (in which case the operation is applied to only one file) or to a folder
490
+ (in which case the operation is applied to all metadata types in the directory and its subdirectories).
491
+
492
+ You can specify this flag more than once.
493
+
494
+ --destructive-changes-only Create a destructiveChanges manifest only.
495
+
496
+ Use this flag to create a 'destructiveChanges.xml' and a blank 'package.xml'.
497
+
498
+ --output-dir=<value> Directory to save the created manifest files.
499
+
500
+ The location can be an absolute path or relative to the current working directory.
501
+ ```
502
+
503
+ _See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v3.0.2/src/commands/jayree/manifest/legacy/git/diff.ts)_
419
504
 
420
505
  ### `sfdx jayree:org:configure`
421
506
 
@@ -450,7 +535,7 @@ EXAMPLES
450
535
  $ sfdx jayree:org:configure --concurrent --tasks="Asset Settings","Activity Settings"
451
536
  ```
452
537
 
453
- _See code: [src/commands/jayree/org/configure/index.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/org/configure/index.ts)_
538
+ _See code: [src/commands/jayree/org/configure/index.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/org/configure/index.ts)_
454
539
 
455
540
  ### `sfdx jayree:org:configure:country`
456
541
 
@@ -474,7 +559,7 @@ DESCRIPTION
474
559
  update country integration values in the State/Country Picklists
475
560
  ```
476
561
 
477
- _See code: [src/commands/jayree/org/configure/country.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/org/configure/country.ts)_
562
+ _See code: [src/commands/jayree/org/configure/country.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/org/configure/country.ts)_
478
563
 
479
564
  ### `sfdx jayree:org:configure:state`
480
565
 
@@ -503,7 +588,7 @@ DESCRIPTION
503
588
  import (create/update) states into the State/Country Picklists
504
589
  ```
505
590
 
506
- _See code: [src/commands/jayree/org/configure/state.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/org/configure/state.ts)_
591
+ _See code: [src/commands/jayree/org/configure/state.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/org/configure/state.ts)_
507
592
 
508
593
  ### `sfdx jayree:org:settings`
509
594
 
@@ -536,7 +621,7 @@ EXAMPLES
536
621
  $ sfdx jayree:org:settings -u MyTestOrg1 -w
537
622
  ```
538
623
 
539
- _See code: [src/commands/jayree/org/settings.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/org/settings.ts)_
624
+ _See code: [src/commands/jayree/org/settings.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/org/settings.ts)_
540
625
 
541
626
  ### `sfdx jayree:org:streaming`
542
627
 
@@ -565,7 +650,7 @@ EXAMPLES
565
650
  ...
566
651
  ```
567
652
 
568
- _See code: [src/commands/jayree/org/streaming.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/org/streaming.ts)_
653
+ _See code: [src/commands/jayree/org/streaming.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/org/streaming.ts)_
569
654
 
570
655
  ### `sfdx jayree:packagedescription:create`
571
656
 
@@ -692,7 +777,7 @@ DESCRIPTION
692
777
  (examples will follow)
693
778
  ```
694
779
 
695
- _See code: [src/commands/jayree/source/fix.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/source/fix.ts)_
780
+ _See code: [src/commands/jayree/source/fix.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/source/fix.ts)_
696
781
 
697
782
  ### `sfdx jayree:source:tracking:list`
698
783
 
@@ -723,7 +808,7 @@ EXAMPLES
723
808
  $ sfdx jayree:source:tracking:list -u me@my.org -r 101
724
809
  ```
725
810
 
726
- _See code: [src/commands/jayree/source/tracking/list.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/source/tracking/list.ts)_
811
+ _See code: [src/commands/jayree/source/tracking/list.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/source/tracking/list.ts)_
727
812
 
728
813
  ### `sfdx jayree:source:tracking:store:get`
729
814
 
@@ -751,7 +836,7 @@ EXAMPLES
751
836
  $ sfdx jayree:source:tracking:store:get -u me@my.org
752
837
  ```
753
838
 
754
- _See code: [src/commands/jayree/source/tracking/store/get.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/source/tracking/store/get.ts)_
839
+ _See code: [src/commands/jayree/source/tracking/store/get.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/source/tracking/store/get.ts)_
755
840
 
756
841
  ### `sfdx jayree:source:tracking:store:set`
757
842
 
@@ -782,7 +867,7 @@ EXAMPLES
782
867
  $ sfdx jayree:source:tracking:store:set -u MyTestOrg1 -r 101
783
868
  ```
784
869
 
785
- _See code: [src/commands/jayree/source/tracking/store/set.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.30/src/commands/jayree/source/tracking/store/set.ts)_
870
+ _See code: [src/commands/jayree/source/tracking/store/set.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.31/src/commands/jayree/source/tracking/store/set.ts)_
786
871
  <!-- commandsstop -->
787
872
 
788
873
  ## Hooks
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.4.30",
2
+ "version": "4.4.31",
3
3
  "commands": {
4
4
  "jayree:flowtestcoverage": {
5
5
  "id": "jayree:flowtestcoverage",
package/package.json CHANGED
@@ -1,13 +1,13 @@
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.4.30",
4
+ "version": "4.4.31",
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
9
  "@jayree/sfdx-plugin-legacy": "^1.1.29",
10
- "@jayree/sfdx-plugin-manifest": "^2.9.1",
10
+ "@jayree/sfdx-plugin-manifest": "^3.0.2",
11
11
  "@jayree/sfdx-plugin-prettier": "^1.2.31",
12
12
  "@oclif/core": "^1.26.2",
13
13
  "@salesforce/command": "^5.3.2",