@salesforce/cli 1.27.0 → 1.28.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 CHANGED
@@ -2,6 +2,8 @@
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.28.0](https://github.com/salesforcecli/cli/compare/v1.27.0...v1.28.0) (2022-05-11)
6
+
5
7
  ## [1.27.0](https://github.com/salesforcecli/cli/compare/v1.26.0...v1.27.0) (2022-05-04)
6
8
 
7
9
  ## [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.27.0 linux-x64 node-v14.19.2
34
+ @salesforce/cli/1.28.0 linux-x64 node-v14.19.2
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.2/src/commands/deploy.ts)_
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> | -m <value> | -d <value>]
801
- [-o <value>] [-t <value>] [-l RunAllTestsInOrg|RunLocalTests|RunSpecifiedTests] [-w <value>]
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. See the help for "sf deploy metadata" for examples of deploying smaller sets of metadata which you can also use to validate.
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