Skip to content

Commit

Permalink
chore(release): 0.0.44 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
SF-CLI-BOT committed Sep 29, 2021
1 parent df6fb84 commit 9bd9c21
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 43 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

### [0.0.44](https://github.com/salesforcecli/cli/compare/v0.0.43...v0.0.44) (2021-09-29)


### Bug Fixes

* update inquirer dep to our fork ([#62](https://github.com/salesforcecli/cli/issues/62)) ([df6fb84](https://github.com/salesforcecli/cli/commit/df6fb84dfa73ab5cc85b258fbbc34769aea3c629))

### [0.0.43](https://github.com/salesforcecli/cli/compare/v0.0.42...v0.0.43) (2021-09-16)

### [0.0.42](https://github.com/salesforcecli/cli/compare/v0.0.41...v0.0.42) (2021-09-16)
Expand Down
44 changes: 20 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ npm install -g @salesforce/cli
$ sf COMMAND
running command...
$ sf (-v|--version|version)
@salesforce/cli/0.0.43 linux-x64 node-v14.17.6
@salesforce/cli/0.0.43 linux-x64 node-v14.18.0
$ sf --help [COMMAND]
USAGE
$ sf COMMAND
Expand Down Expand Up @@ -97,8 +97,6 @@ CONFIGURATION VARIABLES
apiVersion API version to use when making requests to app server
disableTelemetry Disable telemetry
instanceUrl Instance URL to use for a command.
isvDebuggerSid ISV debugger SID
isvDebuggerUrl ISV debugger URL
maxQueryLimit Maximum rows to return for a SOQL query.
restDeploy Boolean that enables deploy via REST API.
target-org The target to be used for any command communicating with an org.
Expand Down Expand Up @@ -179,8 +177,6 @@ CONFIGURATION VARIABLES
apiVersion API version to use when making requests to app server
disableTelemetry Disable telemetry
instanceUrl Instance URL to use for a command.
isvDebuggerSid ISV debugger SID
isvDebuggerUrl ISV debugger URL
maxQueryLimit Maximum rows to return for a SOQL query.
restDeploy Boolean that enables deploy via REST API.
target-org The target to be used for any command communicating with an org.
Expand Down Expand Up @@ -220,8 +216,6 @@ CONFIGURATION VARIABLES
apiVersion API version to use when making requests to app server
disableTelemetry Disable telemetry
instanceUrl Instance URL to use for a command.
isvDebuggerSid ISV debugger SID
isvDebuggerUrl ISV debugger URL
maxQueryLimit Maximum rows to return for a SOQL query.
restDeploy Boolean that enables deploy via REST API.
target-org The target to be used for any command communicating with an org.
Expand Down Expand Up @@ -400,7 +394,7 @@ ENVIRONMENT VARIABLES

## `sf env display`

Specify an environment with either the username you used when you ran the "sf login" command or the environment's alias. Run "sf env list" to view all your environments and their aliases.
Specify an environment with either the username you used when you logged into the environment with "sf login", or the alias you gave the environment when you created it. Run "sf env list" to view all your environments and their aliases.

```
USAGE
Expand All @@ -415,12 +409,12 @@ GLOBAL FLAGS
DESCRIPTION
Display details about an environment.
Specify an environment with either the username you used when you ran the "sf login" command or the environment's
alias. Run "sf env list" to view all your environments and their aliases.
Specify an environment with either the username you used when you logged into the environment with "sf login", or the
alias you gave the environment when you created it. Run "sf env list" to view all your environments and their aliases.
Output depends on the type of environment. For example, scratch org details include the access token, alias, username
of the associated Dev Hub, the creation and expiration date, the generated scratch org username, and more. Compute
environment details include the associated orgs, the list of functions, the project name, and more.
environment details include the alias, connected orgs, creation date, project name, and more.
EXAMPLES
Display details about a scratch org with alias my-scratch-org:
Expand Down Expand Up @@ -466,14 +460,16 @@ DESCRIPTION
currently logged into.
Output is displayed in multiple tables, one for each environment type. For example, the Salesforce Orgs table lists
the non-scratch orgs you’re logged into, such as sandboxes, Dev Hubs, production orgs, and so on. Scratch orgs get
their own table.
the non-scratch orgs you’re logged into, such as sandboxes, Dev Hubs, production orgs, and so on. Scratch orgs and
compute environments get their own tables.
For non-scratch orgs, the Username column refers to the user you logged into the org with. For scratch orgs it refers
to the username that was generated for you when you created the scratch org. The table also displays the local alias
for the org, the org's ID, the instance URL that hosts the org, and how you authorized (logged into) the org, either
using a web browser or JWT. The Config column indicates your default scratch org or Dev Hub org with the target-org or
target-dev-hub variable, respectively.
The two org tables show similar information, such as aliases, information about the org, and how you authorized
(logged into) it, such as with a web browser or JWT. The scratch org table also shows the expiration date. For
non-scratch orgs, the Username column refers to the user you logged into the org with. For scratch orgs it refers to
the username that was generated for you when you created the scratch org. Your default scratch org or Dev Hub org is
indicated with the "target-org" or "target-dev-hub" configuration variable, respectively, in the Config column.
The compute environment table shows the alias, information about the connected orgs, the project name, and more.
Use the table manipulation flags, such as --filter and --sort, to change how the data is displayed.
Expand Down Expand Up @@ -612,7 +608,7 @@ EXAMPLES
$ sf login
```

_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.24/src/commands/login.ts)_
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.26/src/commands/login.ts)_

## `sf login org`

Expand Down Expand Up @@ -799,13 +795,13 @@ USAGE
$ sf logout [--json] [--no-prompt]
FLAGS
--no-prompt Don't prompt for confirmation.
--no-prompt Don't prompt for confirmation; logs you out of all environments.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Log out of all environments, such as Salesforce orgs and compute environments.
Log out interactively from environments, such as Salesforce orgs and compute environments.
By default, the command prompts you to select which environments you want to log out of. Use --no-prompt to not be
prompted and log out of all environments.
Expand All @@ -814,16 +810,16 @@ DESCRIPTION
again, either through the CLI or the Salesforce UI.
EXAMPLES
Log out of all environments:
Interactively select the environments to log out of:
$ sf logout
Log out of all environments with no prompt:
Log out of all environments, without being prompted:
$ sf logout --no-prompt
```

_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.24/src/commands/logout.ts)_
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.26/src/commands/logout.ts)_

## `sf logout org`

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/cli",
"description": "The Salesforce CLI",
"version": "0.0.43",
"version": "0.0.44",
"author": "Salesforce",
"bin": {
"sf": "./bin/run"
Expand Down Expand Up @@ -76,11 +76,11 @@
"@oclif/plugin-plugins": "^1.10.1",
"@salesforce/plugin-telemetry": "1.2.4",
"@salesforce/sf-plugins-core": "^0.0.23",
"@sf/config": "npm:@salesforce/[email protected].4",
"@sf/config": "npm:@salesforce/[email protected].5",
"@sf/deploy-retrieve": "npm:@salesforce/[email protected]",
"@sf/drm": "npm:@salesforce/[email protected]",
"@sf/env": "npm:@salesforce/[email protected].32",
"@sf/login": "npm:@salesforce/[email protected].24",
"@sf/env": "npm:@salesforce/[email protected].34",
"@sf/login": "npm:@salesforce/[email protected].26",
"inquirer": "https://github.com/salesforcecli/Inquirer.js/tarball/github_release",
"tslib": "^2.3.0"
},
Expand Down
109 changes: 94 additions & 15 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,29 @@
widest-line "^3.1.0"
wrap-ansi "^7.0.0"

"@oclif/core@^0.5.39":
version "0.5.40"
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-0.5.40.tgz#40aab74e623daf94c8da2033cd5feb499aff2f3f"
integrity sha512-wr7Svk4laXXUSIXOBrMpVYWwbBnUdL1a7nqIMOj0lA/i8uvVAM5LDxN8OENde1y2iPq04CAXehLEn3tKNvXDSw==
dependencies:
"@oclif/linewrap" "^1.0.0"
chalk "^4.1.0"
clean-stack "^3.0.0"
cli-ux "^5.1.0"
debug "^4.1.1"
fs-extra "^9.0.1"
get-package-type "^0.1.0"
globby "^11.0.1"
indent-string "^4.0.0"
is-wsl "^2.1.1"
lodash.template "^4.4.0"
semver "^7.3.2"
string-width "^4.2.0"
strip-ansi "^6.0.0"
tslib "^2.0.0"
widest-line "^3.1.0"
wrap-ansi "^7.0.0"

"@oclif/dev-cli@^1":
version "1.26.0"
resolved "https://registry.npmjs.org/@oclif/dev-cli/-/dev-cli-1.26.0.tgz#e3ec294b362c010ffc8948003d3770955c7951fd"
Expand Down Expand Up @@ -864,6 +887,28 @@
sfdx-faye "^1.0.9"
ts-retry-promise "^0.6.0"

"@salesforce/[email protected]":
version "3.6.2"
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.6.2.tgz#a67f065fc0095e35ff553c7acf7b9f6ac116e4ef"
integrity sha512-X3V8Voun/u/B0O3ZeR/DLgUB5IwqTgpn80i+/XRLTVh0U2TH1/pV6948DVxkw3SRQ8NMN7JZCTq/Dq3GhGXf/g==
dependencies:
"@salesforce/bunyan" "^2.0.0"
"@salesforce/kit" "^1.5.8"
"@salesforce/schemas" "^1.0.1"
"@salesforce/ts-types" "^1.5.20"
"@types/graceful-fs" "^4.1.5"
"@types/jsforce" "^1.9.29"
"@types/mkdirp" "^1.0.1"
change-case "^4.1.2"
debug "^3.1.0"
graceful-fs "^4.2.4"
jsen "0.6.6"
jsforce "^1.10.1"
jsonwebtoken "8.5.0"
mkdirp "1.0.4"
sfdx-faye "^1.0.9"
ts-retry-promise "^0.6.0"

"@salesforce/core@^2.15.2", "@salesforce/core@^2.23.4":
version "2.26.1"
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-2.26.1.tgz#00ecf0d989308786dcee648da231c528e6346c09"
Expand Down Expand Up @@ -906,6 +951,28 @@
sfdx-faye "^1.0.9"
ts-retry-promise "^0.6.0"

"@salesforce/core@^3.6.2":
version "3.6.4"
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.6.4.tgz#9c2cf29650325c332788ec81811dc43fe0bfdb45"
integrity sha512-BLnNz6xxI2yu4W7PoEKXrmrqAc7iCA6/lgKvOrPfFXRf6nnHA5eNxJ+oU9icgKnPv1/Ls/Fvki92lIXRQlK7BA==
dependencies:
"@salesforce/bunyan" "^2.0.0"
"@salesforce/kit" "^1.5.8"
"@salesforce/schemas" "^1.0.1"
"@salesforce/ts-types" "^1.5.20"
"@types/graceful-fs" "^4.1.5"
"@types/jsforce" "^1.9.29"
"@types/mkdirp" "^1.0.1"
change-case "^4.1.2"
debug "^3.1.0"
graceful-fs "^4.2.4"
jsen "0.6.6"
jsforce "^1.10.1"
jsonwebtoken "8.5.0"
mkdirp "1.0.4"
sfdx-faye "^1.0.9"
ts-retry-promise "^0.6.0"

"@salesforce/dev-config@^2.1.2":
version "2.1.2"
resolved "https://registry.npmjs.org/@salesforce/dev-config/-/dev-config-2.1.2.tgz#b4e206f860e87065d068bf8ba3994a032389ad81"
Expand Down Expand Up @@ -1023,6 +1090,18 @@
cli-ux "^5.6.3"
inquirer "^8.1.1"

"@salesforce/sf-plugins-core@^0.0.25":
version "0.0.25"
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-0.0.25.tgz#bb8012cae2911c8965d959595006a570ab5c6405"
integrity sha512-2mxQvEldZYG5BSvFNReeu/MIZ0h2+6KYfGC8i1lWan8YYsUbrzdWS6JK3pVw/IOMTuBXuxs05vOVVmzsR6vyCA==
dependencies:
"@oclif/core" "^0.5.39"
"@salesforce/core" "^3.6.2"
"@salesforce/kit" "^1.5.17"
"@salesforce/ts-types" "^1.5.20"
cli-ux "^5.6.3"
inquirer "^8.1.1"

"@salesforce/telemetry@^2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@salesforce/telemetry/-/telemetry-2.0.5.tgz#29475bf832b132dd2f5946a4f1f9d28c439aca2d"
Expand All @@ -1040,10 +1119,10 @@
dependencies:
tslib "^2.2.0"

"@sf/config@npm:@salesforce/[email protected].4":
version "2.2.4"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-config/-/plugin-config-2.2.4.tgz#d4acb0c50a820f17e75ce7c1624ff74078450453"
integrity sha512-/9LXdf2q16eSeMi5sdu6/vn9SKo25pqDuYdD3dO3iB2epEuuvP0aaPDisRtQFCnfuuHQ6rMUuAtZBOjU+ZRgkg==
"@sf/config@npm:@salesforce/[email protected].5":
version "2.2.5"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-config/-/plugin-config-2.2.5.tgz#b2a4e4dea4b393074ad96e6246cf659d3be45eb0"
integrity sha512-wOwuA9QZxlA1OQBLoOvEoz0LpEIU3yeXj7s5SVcCummv1cH/tUEcSViaR20si+21eFisy8/DZrMnBUaQu/n8Cw==
dependencies:
"@oclif/core" "^0.5.38"
"@salesforce/core" "3.6.1"
Expand Down Expand Up @@ -1076,23 +1155,23 @@
cli-ux "^5.6.3"
tslib "^2"

"@sf/env@npm:@salesforce/[email protected].32":
version "0.0.32"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-env/-/plugin-env-0.0.32.tgz#1f550008ab871a988447742a28564fb479a02810"
integrity sha512-2gYTDJvW74ESoINfj06v45xkS4+6xT8AMfoOp0jUYn3QysAJ7wa3swoZ5dt87UJb41lEr/4Y8+JL26jYwmL+jA==
"@sf/env@npm:@salesforce/[email protected].34":
version "0.0.34"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-env/-/plugin-env-0.0.34.tgz#2e0a27f47b65969e1076f1e865368630c9ab1e23"
integrity sha512-1WEQMoF5nK18bm3OnTW+KpIAtAHQYR8/n6LWgON+1hQD2TiXiGITG7e6CnVMb6/abmnT0ZQBdVwvdKa60tNgTg==
dependencies:
"@oclif/core" "^0.5.38"
"@salesforce/core" "3.6.1"
"@salesforce/sf-plugins-core" "^0.0.23"
"@oclif/core" "^0.5.39"
"@salesforce/core" "3.6.2"
"@salesforce/sf-plugins-core" "^0.0.25"
change-case "^4.1.2"
cli-ux "^5.6.3"
open "^8.2.0"
tslib "^2"

"@sf/login@npm:@salesforce/[email protected].24":
version "0.0.24"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-0.0.24.tgz#7d35ba1f4df17ae9cef45cbf661d8195b221db64"
integrity sha512-PKz7Vy/TN2K8vX4YijX207pc/1ajJvKGpKTcAEsnBPcqSvfNxqdFD66Og/M9Ue7aIWTdiuIWcfztS38F8QKxfA==
"@sf/login@npm:@salesforce/[email protected].26":
version "0.0.26"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-0.0.26.tgz#bff6198fe3f622111fd145e41fe0306b65d77c32"
integrity sha512-wyY+gdw4JuNAnA85eXa2DpARGeKxkMG9jd0iaTiXTZrZ0m0Xu33cq76Ur+OysBruJNIajhrAkyPm7BKlmGNn8Q==
dependencies:
"@oclif/core" "^0.5.38"
"@salesforce/core" "3.6.1"
Expand Down

0 comments on commit 9bd9c21

Please sign in to comment.