Skip to content

Commit

Permalink
Merge pull request #1224 from salesforcecli/release/2.14.5
Browse files Browse the repository at this point in the history
Release PR for 2.14.5 as nightly
  • Loading branch information
svc-cli-bot authored Oct 17, 2023
2 parents 433da1a + 7953299 commit 878896e
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 147 deletions.
99 changes: 51 additions & 48 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
$ sf COMMAND
running command...
$ sf (--version|-v)
@salesforce/cli/2.14.4 linux-x64 node-v18.18.0
@salesforce/cli/2.14.5 linux-x64 node-v18.18.0
$ sf --help [COMMAND]
USAGE
$ sf COMMAND
Expand Down Expand Up @@ -192,7 +192,7 @@ EXAMPLES
$ sf alias list
```

_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/alias/list.ts)_
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/alias/list.ts)_

## `sf alias set`

Expand Down Expand Up @@ -240,7 +240,7 @@ EXAMPLES
$ sf alias set my-scratch-org [email protected]
```

_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/alias/set.ts)_
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/alias/set.ts)_

## `sf alias unset`

Expand Down Expand Up @@ -279,7 +279,7 @@ EXAMPLES
$ sf alias unset --all [--no-prompt]
```

_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/alias/unset.ts)_
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/alias/unset.ts)_

## `sf analytics generate template`

Expand Down Expand Up @@ -861,11 +861,9 @@ GLOBAL FLAGS
DESCRIPTION
Get the value of a configuration variable.
Run "sf config list" to see all the configuration variables you've set. Global configuration variable are always
displayed; local ones are displayed if you run the command in a project directory. Run "sf config set" to set a
configuration variable.
Run "sf config list" to see the configuration variables you've already set and their level (local or global).
For the full list of available configuration variables, see
Run "sf config set" to set a configuration variable. For the full list of available configuration variables, see
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
ALIASES
Expand All @@ -891,7 +889,7 @@ CONFIGURATION VARIABLES
org-max-query-limit Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
```

_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/get.ts)_
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/get.ts)_

## `sf config list`

Expand All @@ -907,8 +905,16 @@ GLOBAL FLAGS
DESCRIPTION
List the configuration variables that you've previously set.
Global configuration variables apply to any Salesforce DX project and are always displayed. If you run this command
from a project directory, local configuration variables are also displayed.
A config variable can be global or local, depending on whether you used the --global flag when you set it. Local
config variables apply only to the current project and override global config variables, which apply to all projects.
You can set all config variables as environment variables. Environment variables override their equivalent local and
global config variables.
The output of this command takes into account your current context. For example, let's say you run this command from a
Salesforce DX project in which you've locally set the "target-org" config variable. The command displays the local
value, even if you've also set "target-org" globally. If you haven't set the config variable locally, then the global
value is displayed, if set. If you set the SF_TARGET_ORG environment variable, it's displayed as such and overrides
any locally or globally set "target-org" config variable.
For the full list of available configuration variables, see
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
Expand All @@ -917,12 +923,12 @@ ALIASES
$ sf force config list
EXAMPLES
List both global configuration variables and those local to your project:
List the global and local configuration variables that apply to your current context:
$ sf config list
```

_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/list.ts)_
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/list.ts)_

## `sf config set`

Expand Down Expand Up @@ -956,6 +962,9 @@ DESCRIPTION
Run "sf config list" to see the configuration variables you've already set and their level (local or global).
If you're setting a single config variable, you don't need to use an equal sign between the variable and value. But
you must use the equal sign if setting multiple config variables.
For the full list of available configuration variables, see
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
Expand All @@ -965,20 +974,15 @@ ALIASES
EXAMPLES
Set the local target-org configuration variable to an org username:
$ sf config set target-org=[email protected]
$ sf config set target-org [email protected]
Set the local target-org configuration variable to an alias:
$ sf config set target-org=my-scratch-org
Set the global target-org configuration variable:
$ sf config set --global target-org=my-scratch-org
$ sf config set target-org my-scratch-org
Set a single configuration variable without using an equal sign; this syntax doesn't work when setting multiple
configuration variables:
Set the global target-org and target-dev-hub configuration variables using aliases:
$ sf config set target-org [email protected]
$ sf config set --global target-org=my-scratch-org target-dev-hub=my-dev-hub
CONFIGURATION VARIABLES
org-instance-url URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com.
Expand All @@ -991,7 +995,7 @@ CONFIGURATION VARIABLES
org-max-query-limit Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
```

_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/set.ts)_
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/set.ts)_

## `sf config unset`

Expand All @@ -1002,8 +1006,7 @@ USAGE
$ sf config unset [--json] [-g]
FLAGS
-g, --global Unset the configuration variables globally, so they can no longer be used from any Salesforce DX
project.
-g, --global Unset the configuration variables globally.
GLOBAL FLAGS
--json Format output as json.
Expand Down Expand Up @@ -1040,7 +1043,7 @@ CONFIGURATION VARIABLES
org-max-query-limit Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
```

_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/unset.ts)_
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/unset.ts)_

## `sf data create record`

Expand Down Expand Up @@ -2343,7 +2346,7 @@ FLAG DESCRIPTIONS
for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/clone.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/force/org/clone.ts)_

## `sf force org create`

Expand Down Expand Up @@ -2391,7 +2394,7 @@ EXAMPLES
$ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/create.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/force/org/create.ts)_

## `sf force org delete`

Expand Down Expand Up @@ -2423,7 +2426,7 @@ EXAMPLES
$ sf force org delete -u MyOrgAlias -p
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/delete.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/force/org/delete.ts)_

## `sf force org status`

Expand Down Expand Up @@ -2461,7 +2464,7 @@ EXAMPLES
$ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/status.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/force/org/status.ts)_

## `sf force source deploy`

Expand Down Expand Up @@ -3813,7 +3816,7 @@ FLAG DESCRIPTIONS
sandbox.
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/create/sandbox.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/create/sandbox.ts)_

## `sf org create scratch`

Expand Down Expand Up @@ -3966,7 +3969,7 @@ FLAG DESCRIPTIONS
Omit this flag to have Salesforce generate a unique username for your org.
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/create/scratch.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/create/scratch.ts)_

## `sf org create user`

Expand Down Expand Up @@ -4106,7 +4109,7 @@ EXAMPLES
$ sf org delete sandbox --target-org my-sandbox --no-prompt
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/delete/sandbox.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/delete/sandbox.ts)_

## `sf org delete scratch`

Expand Down Expand Up @@ -4148,7 +4151,7 @@ EXAMPLES
$ sf org delete scratch --target-org my-scratch-org --no-prompt
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/delete/scratch.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/delete/scratch.ts)_

## `sf org display`

Expand Down Expand Up @@ -4191,7 +4194,7 @@ EXAMPLES
$ sf org display --target-org TestOrg1 --verbose
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/display.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/display.ts)_

## `sf org display user`

Expand Down Expand Up @@ -4330,7 +4333,7 @@ EXAMPLES
$ sf org list --clean
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/list.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/list.ts)_

## `sf org list auth`

Expand Down Expand Up @@ -4361,7 +4364,7 @@ EXAMPLES
$ sf org list auth
```

_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.20/src/commands/org/list/auth.ts)_
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.21/src/commands/org/list/auth.ts)_

## `sf org list metadata`

Expand Down Expand Up @@ -4425,7 +4428,7 @@ FLAG DESCRIPTIONS
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/list/metadata.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/list/metadata.ts)_

## `sf org list metadata-types`

Expand Down Expand Up @@ -4478,7 +4481,7 @@ FLAG DESCRIPTIONS
Override the api version used for api requests made by this command
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/list/metadata-types.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/list/metadata-types.ts)_

## `sf org list users`

Expand Down Expand Up @@ -4567,7 +4570,7 @@ FLAG DESCRIPTIONS
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
```

_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.20/src/commands/org/login/access-token.ts)_
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.21/src/commands/org/login/access-token.ts)_

## `sf org login device`

Expand Down Expand Up @@ -4626,7 +4629,7 @@ FLAG DESCRIPTIONS
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
```

_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.20/src/commands/org/login/device.ts)_
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.21/src/commands/org/login/device.ts)_

## `sf org login jwt`

Expand Down Expand Up @@ -4715,7 +4718,7 @@ FLAG DESCRIPTIONS
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
```

_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.20/src/commands/org/login/jwt.ts)_
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.21/src/commands/org/login/jwt.ts)_

## `sf org login sfdx-url`

Expand Down Expand Up @@ -4773,7 +4776,7 @@ EXAMPLES
$ sf org login sfdx-url --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg
```

_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.20/src/commands/org/login/sfdx-url.ts)_
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.21/src/commands/org/login/sfdx-url.ts)_

## `sf org login web`

Expand Down Expand Up @@ -4858,7 +4861,7 @@ FLAG DESCRIPTIONS
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
```

_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.20/src/commands/org/login/web.ts)_
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.21/src/commands/org/login/web.ts)_

## `sf org logout`

Expand Down Expand Up @@ -4918,7 +4921,7 @@ FLAG DESCRIPTIONS
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
```

_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.20/src/commands/org/logout.ts)_
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/2.8.21/src/commands/org/logout.ts)_

## `sf org open`

Expand Down Expand Up @@ -4983,7 +4986,7 @@ EXAMPLES
$ sf org open --source-path force-app/main/default/flows/Hello.flow-meta.xml
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/open.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/open.ts)_

## `sf org resume sandbox`

Expand Down Expand Up @@ -5045,7 +5048,7 @@ FLAG DESCRIPTIONS
returns the job ID. To resume checking the sandbox creation, rerun this command.
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/resume/sandbox.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/resume/sandbox.ts)_

## `sf org resume scratch`

Expand Down Expand Up @@ -5091,7 +5094,7 @@ FLAG DESCRIPTIONS
The job ID is valid for 24 hours after you start the scratch org creation.
```

_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/resume/scratch.ts)_
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.2/src/commands/org/resume/scratch.ts)_

## `sf plugins`

Expand Down
Loading

0 comments on commit 878896e

Please sign in to comment.