Skip to content

Commit

Permalink
chore(release): 1.46.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
SF-CLI-BOT committed Sep 14, 2022
1 parent 189b654 commit 31db8d0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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.

## [1.46.0](https://github.com/salesforcecli/cli/compare/v1.45.0...v1.46.0) (2022-09-14)

## [1.45.0](https://github.com/salesforcecli/cli/compare/v1.44.0...v1.45.0) (2022-09-07)

## [1.44.0](https://github.com/salesforcecli/cli/compare/v1.43.0...v1.44.0) (2022-08-31)
Expand Down
26 changes: 17 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ $ npm install -g @salesforce/cli
$ sf COMMAND
running command...
$ sf (--version|-v)
@salesforce/cli/1.45.0 linux-x64 node-v14.20.0
@salesforce/cli/1.46.0 linux-x64 node-v14.20.0
$ sf --help [COMMAND]
USAGE
$ sf COMMAND
Expand Down Expand Up @@ -352,7 +352,7 @@ EXAMPLES
$ sf deploy --interactive
```

_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.6.0/src/commands/deploy.ts)_
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.6.1/src/commands/deploy.ts)_

## `sf deploy functions`

Expand Down Expand Up @@ -394,7 +394,7 @@ EXAMPLES

## `sf deploy metadata`

Deploy metadata in source format to an org from your local project.
Deploy metadata to an org from your local project.

```
USAGE
Expand Down Expand Up @@ -427,10 +427,14 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Deploy metadata in source format to an org from your local project.
Deploy metadata to an org from your local project.
You must run this command from within a project.
Metadata components are deployed in source format by default. Deploy them in metadata format by specifying the
--metadata-dir flag, which specifies the root directory or ZIP file that contains the metadata formatted files you
want to deploy.
If your org allows source tracking, then this command tracks the changes in your source. Some orgs, such as production
org, never allow source tracking. You can also use the "--no-track-source" flag when you create a scratch or sandbox
org to disable source tracking.
Expand Down Expand Up @@ -2841,7 +2845,7 @@ DESCRIPTION

## `sf retrieve metadata`

Retrieve metadata in source format from an org to your local project.
Retrieve metadata from an org to your local project.

```
USAGE
Expand All @@ -2856,7 +2860,7 @@ FLAGS
-m, --metadata=<value>... Metadata component names to retrieve.
-n, --package-name=<value>... Package names to retrieve.
-o, --target-org=<value> Login username or alias for the target org.
-t, --target-metadata-dir=<value> Directory root for the retrieved files.
-t, --target-metadata-dir=<value> Directory that will contain the retrieved metadata format files or ZIP.
-w, --wait=<value> Number of minutes to wait for the command to complete and display results to the
terminal window.
-x, --manifest=<value> File path for the manifest (package.xml) that specifies the components to retrieve.
Expand All @@ -2868,10 +2872,13 @@ GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve metadata in source format from an org to your local project.
Retrieve metadata from an org to your local project.
You must run this command from within a project.
Metadata components are retrieved in source format by default. Retrieve them in metadata format by specifying the
--target-metadata-dir flag, which retrieves the components into a ZIP file in the specified directory.
If your org allows source tracking, then this command tracks the changes in your source. Some orgs, such as production
org, never allow source tracking. You can also use the "--no-track-source" flag when you create a scratch or sandbox
org to disable source tracking.
Expand Down Expand Up @@ -2920,11 +2927,12 @@ EXAMPLES
$ sf retrieve metadata --package-name Package1 "PackageName With Spaces" Package3
$ sf retrieve metadata --package-name Package1 --package-name "PackageName With Spaces" --package-name Package3
Retrieve using Metadata API
Retrieve the metadata components listed in the force-app directory, but retrieve them in metadata format into a ZIP
file in the "output" directory:
$ sf retrieve metadata --source-dir force-app --target-metadata-dir output
Retrieve using Metadata API and automatically unzip the contents
Retrieve in metadata format and automatically extract the contents into the "output" directory:
$ sf retrieve metadata --source-dir force-app --target-metadata-dir output --unzip
Expand Down

0 comments on commit 31db8d0

Please sign in to comment.