@salesforce/cli 1.27.0 → 1.30.0
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 +6 -0
- package/README.md +19 -12
- package/npm-shrinkwrap.json +303 -2462
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.30.0](https://github.com/salesforcecli/cli/compare/v1.29.0...v1.30.0) (2022-05-26)
|
|
6
|
+
|
|
7
|
+
## [1.29.0](https://github.com/salesforcecli/cli/compare/v1.28.0...v1.29.0) (2022-05-18)
|
|
8
|
+
|
|
9
|
+
## [1.28.0](https://github.com/salesforcecli/cli/compare/v1.27.0...v1.28.0) (2022-05-11)
|
|
10
|
+
|
|
5
11
|
## [1.27.0](https://github.com/salesforcecli/cli/compare/v1.26.0...v1.27.0) (2022-05-04)
|
|
6
12
|
|
|
7
13
|
## [1.26.0](https://github.com/salesforcecli/cli/compare/v1.25.2...v1.26.0) (2022-04-28)
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ $ npm install -g @salesforce/cli
|
|
|
31
31
|
$ sf COMMAND
|
|
32
32
|
running command...
|
|
33
33
|
$ sf (--version|-v)
|
|
34
|
-
@salesforce/cli/1.
|
|
34
|
+
@salesforce/cli/1.30.0 linux-x64 node-v14.19.3
|
|
35
35
|
$ sf --help [COMMAND]
|
|
36
36
|
USAGE
|
|
37
37
|
$ sf COMMAND
|
|
@@ -338,7 +338,7 @@ EXAMPLES
|
|
|
338
338
|
$ sf deploy --interactive
|
|
339
339
|
```
|
|
340
340
|
|
|
341
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.4.
|
|
341
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.4.3/src/commands/deploy.ts)_
|
|
342
342
|
|
|
343
343
|
## `sf deploy functions`
|
|
344
344
|
|
|
@@ -361,7 +361,7 @@ Deploy metadata in source format to an org from your local project.
|
|
|
361
361
|
```
|
|
362
362
|
USAGE
|
|
363
363
|
$ sf deploy metadata [--json] [-a <value>] [--async | -w <value>] [--concise | --verbose] [--dry-run] [-r] [-g] [-x
|
|
364
|
-
<value>] [-m <value>] [-d <value>] [-o <value>] [-t <value>] [-l
|
|
364
|
+
<value>] [-m <value>] [--single-package --metadata-dir <value>] [-d <value>] [-o <value>] [-t <value>] [-l
|
|
365
365
|
NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg]
|
|
366
366
|
|
|
367
367
|
FLAGS
|
|
@@ -380,6 +380,9 @@ FLAGS
|
|
|
380
380
|
--async Run the command asynchronously.
|
|
381
381
|
--concise Show concise output of the deploy result.
|
|
382
382
|
--dry-run Validate deploy and run Apex tests but don’t save to the org.
|
|
383
|
+
--metadata-dir=<value> Root of directory or zip file of metadata formatted files to deploy.
|
|
384
|
+
--single-package Indicates that the metadata zip file points to a directory structure for a single
|
|
385
|
+
package.
|
|
383
386
|
--verbose Show verbose output of the deploy result.
|
|
384
387
|
|
|
385
388
|
GLOBAL FLAGS
|
|
@@ -797,8 +800,9 @@ Validate a metadata deployment without actually executing it.
|
|
|
797
800
|
|
|
798
801
|
```
|
|
799
802
|
USAGE
|
|
800
|
-
$ sf deploy metadata validate [--json] [-a <value>] [--async] [--concise | --verbose] [-x <value>
|
|
801
|
-
[-
|
|
803
|
+
$ sf deploy metadata validate [--json] [-a <value>] [--async] [--concise | --verbose] [-x <value>] [-m <value>] [-d <value>]
|
|
804
|
+
[--single-package --metadata-dir <value>] [-o <value>] [-t <value>] [-l
|
|
805
|
+
RunAllTestsInOrg|RunLocalTests|RunSpecifiedTests] [-w <value>]
|
|
802
806
|
|
|
803
807
|
FLAGS
|
|
804
808
|
-a, --api-version=<value> Target API version for the validation.
|
|
@@ -813,6 +817,9 @@ FLAGS
|
|
|
813
817
|
-x, --manifest=<value> Full file path for manifest (package.xml) of components to validate for deployment.
|
|
814
818
|
--async Run the command asynchronously.
|
|
815
819
|
--concise Show concise output of the validation result.
|
|
820
|
+
--metadata-dir=<value> Root of directory or zip file of metadata formatted files to deploy.
|
|
821
|
+
--single-package Indicates that the metadata zip file points to a directory structure for a single
|
|
822
|
+
package.
|
|
816
823
|
--verbose Show verbose output of the validation result.
|
|
817
824
|
|
|
818
825
|
GLOBAL FLAGS
|
|
@@ -838,7 +845,7 @@ DESCRIPTION
|
|
|
838
845
|
quotes. The same syntax applies to --manifest and --source-dir.
|
|
839
846
|
|
|
840
847
|
EXAMPLES
|
|
841
|
-
NOTE: These examples focus on validating large deployments.
|
|
848
|
+
NOTE: These examples focus on validating large deployments. See the help for "sf deploy metadata" for examples of deploying smaller sets of metadata which you can also use to validate.
|
|
842
849
|
|
|
843
850
|
Validate the deployment of all source files in a directory to the default org:
|
|
844
851
|
|
|
@@ -1857,15 +1864,15 @@ ALIASES
|
|
|
1857
1864
|
EXAMPLES
|
|
1858
1865
|
Display release notes for the currently installed CLI version:
|
|
1859
1866
|
|
|
1860
|
-
|
|
1867
|
+
$ sf info releasenotes display
|
|
1861
1868
|
|
|
1862
1869
|
Display release notes for CLI version 7.120.0:
|
|
1863
1870
|
|
|
1864
|
-
|
|
1871
|
+
$ sf info releasenotes display --version 7.120.0
|
|
1865
1872
|
|
|
1866
1873
|
Display release notes for the CLI version that corresponds to a tag (stable, stable-rc, latest, latest-rc, rc):
|
|
1867
1874
|
|
|
1868
|
-
|
|
1875
|
+
$ sf info releasenotes display --version latest
|
|
1869
1876
|
```
|
|
1870
1877
|
|
|
1871
1878
|
## `sf login`
|
|
@@ -2747,15 +2754,15 @@ ALIASES
|
|
|
2747
2754
|
EXAMPLES
|
|
2748
2755
|
Display release notes for the currently installed CLI version:
|
|
2749
2756
|
|
|
2750
|
-
|
|
2757
|
+
$ sf whatsnew
|
|
2751
2758
|
|
|
2752
2759
|
Display release notes for CLI version 7.120.0:
|
|
2753
2760
|
|
|
2754
|
-
|
|
2761
|
+
$ sf whatsnew --version 7.120.0
|
|
2755
2762
|
|
|
2756
2763
|
Display release notes for the CLI version that corresponds to a tag (stable, stable-rc, latest, latest-rc, rc):
|
|
2757
2764
|
|
|
2758
|
-
|
|
2765
|
+
$ sf whatsnew --version latest
|
|
2759
2766
|
```
|
|
2760
2767
|
|
|
2761
2768
|
## `sf whoami functions`
|