diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b071b5e..f3249a65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.31](https://github.com/salesforcecli/cli/compare/v0.0.30...v0.0.31) (2021-08-05) + + +### Bug Fixes + +* restore short flag names for help and version ([4b9465d](https://github.com/salesforcecli/cli/commit/4b9465d65b9b4662a7ae66ee7cd49a64958ecbf8)) + ### [0.0.30](https://github.com/salesforcecli/cli/compare/v0.0.29...v0.0.30) (2021-08-03) ### Bug Fixes diff --git a/README.md b/README.md index b48da5aa..6767effc 100644 --- a/README.md +++ b/README.md @@ -8,55 +8,51 @@ **[EXPERIMENT]: This Salesforce CLI the focuses on a cleaner user experience for ALL Salesforce functionality. It is in heavy development will be changing rapidly. More information will be added to this repository in the near-future.** - -- [cli](#cli) -- [Usage](#usage) -- [Commands](#commands) +* [cli](#cli) +* [Usage](#usage) +* [Commands](#commands) # Usage - ```sh-session $ npm install -g @salesforce/cli $ sf COMMAND running command... $ sf (-v|--version|version) -@salesforce/cli/0.0.29 linux-x64 node-v14.17.4 +@salesforce/cli/0.0.30 linux-x64 node-v14.17.4 $ sf --help [COMMAND] USAGE $ sf COMMAND ... ``` - # Commands - -- [`sf config get`](#sf-config-get) -- [`sf config list`](#sf-config-list) -- [`sf config set`](#sf-config-set) -- [`sf config unset`](#sf-config-unset) -- [`sf deploy`](#sf-deploy) -- [`sf deploy metadata`](#sf-deploy-metadata) -- [`sf env display`](#sf-env-display) -- [`sf env list`](#sf-env-list) -- [`sf env open`](#sf-env-open) -- [`sf help [COMMAND]`](#sf-help-command) -- [`sf login`](#sf-login) -- [`sf login org`](#sf-login-org) -- [`sf login org jwt`](#sf-login-org-jwt) -- [`sf logout`](#sf-logout) -- [`sf plugins`](#sf-plugins) -- [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin) -- [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin) -- [`sf plugins:link PLUGIN`](#sf-pluginslink-plugin) -- [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin) -- [`sf plugins update`](#sf-plugins-update) -- [`sf retrieve metadata`](#sf-retrieve-metadata) +* [`sf config get`](#sf-config-get) +* [`sf config list`](#sf-config-list) +* [`sf config set`](#sf-config-set) +* [`sf config unset`](#sf-config-unset) +* [`sf deploy`](#sf-deploy) +* [`sf deploy metadata`](#sf-deploy-metadata) +* [`sf env display`](#sf-env-display) +* [`sf env list`](#sf-env-list) +* [`sf env open`](#sf-env-open) +* [`sf help [COMMAND]`](#sf-help-command) +* [`sf login`](#sf-login) +* [`sf login org`](#sf-login-org) +* [`sf login org jwt`](#sf-login-org-jwt) +* [`sf logout`](#sf-logout) +* [`sf plugins`](#sf-plugins) +* [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin) +* [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin) +* [`sf plugins:link PLUGIN`](#sf-pluginslink-plugin) +* [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin) +* [`sf plugins update`](#sf-plugins-update) +* [`sf retrieve metadata`](#sf-retrieve-metadata) ## `sf config get` @@ -233,7 +229,7 @@ EXAMPLES $ sf deploy --interactive ``` -_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v0.0.14/src/commands/deploy.ts)_ +_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v0.0.15/src/commands/deploy.ts)_ ## `sf deploy metadata` @@ -390,7 +386,7 @@ EXAMPLES ## `sf env list` -The command displays only active environments. For orgs, active means unexpired scratch orgs and orgs you’re currently logged into. +The command displays only active environments. For orgs, active means unexpired scratch orgs and orgs you’re currently logged into. ``` USAGE @@ -565,7 +561,7 @@ EXAMPLES $ sf login ``` -_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.12/src/commands/login.ts)_ +_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.13/src/commands/login.ts)_ ## `sf login org` @@ -760,7 +756,7 @@ EXAMPLES $ sf logout --noprompt ``` -_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.12/src/commands/logout.ts)_ +_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/v0.0.13/src/commands/logout.ts)_ ## `sf plugins` @@ -835,7 +831,7 @@ ALIASES $ sf plugins add EXAMPLES - $ sf plugins:install myplugin + $ sf plugins:install myplugin $ sf plugins:install https://github.com/someuser/someplugin @@ -1000,5 +996,4 @@ FLAG DESCRIPTIONS If you specify this parameter, don’t specify --metadata or --source-dir. ``` - diff --git a/package.json b/package.json index f916c572..4a6fa969 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "0.0.30", + "version": "0.0.31", "author": "Salesforce", "bin": { "sf": "./bin/run" @@ -74,10 +74,10 @@ "@oclif/plugin-not-found": "^2.1.1", "@oclif/plugin-plugins": "^1.10.1", "@sf/config": "npm:@salesforce/plugin-config@2.0.7", - "@sf/deploy-retrieve": "npm:@salesforce/plugin-deploy-retrieve@0.0.14", - "@sf/dr-metadata": "npm:@salesforce/plugin-deploy-retrieve-metadata@0.0.14", - "@sf/env": "npm:@salesforce/plugin-env@0.0.18", - "@sf/login": "npm:@salesforce/plugin-login@0.0.12", + "@sf/deploy-retrieve": "npm:@salesforce/plugin-deploy-retrieve@0.0.15", + "@sf/dr-metadata": "npm:@salesforce/plugin-deploy-retrieve-metadata@0.0.15", + "@sf/env": "npm:@salesforce/plugin-env@0.0.20", + "@sf/login": "npm:@salesforce/plugin-login@0.0.13", "@sf/telemetry": "npm:@salesforce/plugin-telemetry@1.2.3", "tslib": "^2.3.0" }, diff --git a/yarn.lock b/yarn.lock index 8d3d89fe..724e0bd9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -896,10 +896,10 @@ sfdx-faye "^1.0.9" ts-retry-promise "^0.6.0" -"@salesforce/core@3.3.6": - version "3.3.6" - resolved "https://registry.npmjs.org/@salesforce/core/-/core-3.3.6.tgz#25ae9eab73593edef78374ddb0222a80b79cc9d3" - integrity sha512-WHkgAtkQK/xMfDEtDbinpT8UaKkd/PLArx1AtTlrJCnPlHkjB28FMuVVvkQt0RMt3euFjlB4JP2W9lZbXwwlpA== +"@salesforce/core@3.3.7": + version "3.3.7" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.3.7.tgz#063877eadca4a9add78cf088932cae138c5b4c69" + integrity sha512-/roLuNSHQ8pvBDE0ARVazsYh4+GXs8bBw+MAyRbdIta76jw5E5GiSioQ45o0vz1DR/aXBhsoEPCfPpxZW+/Adw== dependencies: "@salesforce/bunyan" "^2.0.0" "@salesforce/kit" "^1.5.8" @@ -917,10 +917,10 @@ sfdx-faye "^1.0.9" ts-retry-promise "^0.6.0" -"@salesforce/core@3.3.7": - version "3.3.7" - resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.3.7.tgz#063877eadca4a9add78cf088932cae138c5b4c69" - integrity sha512-/roLuNSHQ8pvBDE0ARVazsYh4+GXs8bBw+MAyRbdIta76jw5E5GiSioQ45o0vz1DR/aXBhsoEPCfPpxZW+/Adw== +"@salesforce/core@3.3.8": + version "3.3.8" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-3.3.8.tgz#43ca69f58ae7ec763a3523b94b7a5f14062c3ec8" + integrity sha512-+J2JAnKDsMogpmJuBQtcid8Ol8ASu1Dl+tMPUgNLMdc+EXIzxINx8uE+aIvtmx0bhKyIZIrN0PLFKzWnSOGXYw== dependencies: "@salesforce/bunyan" "^2.0.0" "@salesforce/kit" "^1.5.8" @@ -1107,20 +1107,20 @@ cli-ux "^5.6.3" tslib "^2" -"@sf/deploy-retrieve@npm:@salesforce/plugin-deploy-retrieve@0.0.14": - version "0.0.14" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-0.0.14.tgz#7978922391761e3602b29b81271eb878bda710cc" - integrity sha512-ugsYgLVqgowxNOt5h4AxCnUPS2KCSnk+cQ7noSZfwoWnjZXdZ0K+Oo6DdyYxq6LTqwb4dfvcJK+B9Xd7SYqGIA== +"@sf/deploy-retrieve@npm:@salesforce/plugin-deploy-retrieve@0.0.15": + version "0.0.15" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-0.0.15.tgz#c56b4213563ce676a983d9526c21b3fb5a94cbdf" + integrity sha512-Ghyf05+zB4CwOelRMTLGDCMDyOMbnfOwPVY4CdBnK8imALmCiaKrak04qinf1q2Q5oNOwBe4d/02gA/IeScVVA== dependencies: "@oclif/core" "^0.5.24" "@salesforce/core" "3.3.5" "@salesforce/plugin-deploy-retrieve-utils" "^0.0.9" tslib "^2" -"@sf/dr-metadata@npm:@salesforce/plugin-deploy-retrieve-metadata@0.0.14": - version "0.0.14" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve-metadata/-/plugin-deploy-retrieve-metadata-0.0.14.tgz#fdbf823ef8cfb4c1d5ff2b55fbcd46d1c99aebb0" - integrity sha512-nFmssROAyCPd8g5C50jH4eTzoQJrwY2QQ1RGspkLiFADLkQqoktIM0QHcjubw7GvidF/xsYAGaghrU06Yx3YTQ== +"@sf/dr-metadata@npm:@salesforce/plugin-deploy-retrieve-metadata@0.0.15": + version "0.0.15" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve-metadata/-/plugin-deploy-retrieve-metadata-0.0.15.tgz#04e6fc804201a736f08faf930ef2919d56b5955e" + integrity sha512-o0cA2mvs1ZGp1xWnbEAWX3C1kn6HlHmwQU4swCIhLO8E059HIf6zhH/g47g+KY/edhqBoD1PmmPMeAzYa+aHdA== dependencies: "@oclif/core" "^0.5.26" "@salesforce/core" "3.3.7" @@ -1130,24 +1130,24 @@ cli-ux "^5.5.1" tslib "^2" -"@sf/env@npm:@salesforce/plugin-env@0.0.18": - version "0.0.18" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-env/-/plugin-env-0.0.18.tgz#75ca6ec2c06a84101e8839c838e8ba509a572f66" - integrity sha512-u1fhLE0E6TSfZill1ISEZWnv2tAwSz0Ufqg+bdfp81ApT8VM9/zo9s07IgNnkGkEXxg3HRCDWQQSdrk40X3Usg== +"@sf/env@npm:@salesforce/plugin-env@0.0.20": + version "0.0.20" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-env/-/plugin-env-0.0.20.tgz#d718452ca065306bc4d679fc1ace1689caeaedf8" + integrity sha512-tH2KdK7MopwDgRxjKM2W+3AN1soyh47tE9/shT/RGM+Ani4uCY9p5fPdnxF28LF1pCBZMWYGi5VsLF/WWQebZQ== dependencies: "@oclif/core" "^0.5.26" - "@salesforce/core" "3.3.5" + "@salesforce/core" "3.3.8" cli-ux "^5.6.3" open "^8.2.0" tslib "^2" -"@sf/login@npm:@salesforce/plugin-login@0.0.12": - version "0.0.12" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-0.0.12.tgz#cd5e0f3d8ef74cbe5f1dcfb61573b2c2efb6c125" - integrity sha512-z01i/o58k5bsTQQxP5EeRmLRidrXzisyP03vofglQ+QoTFKe0XaIsl5Rj3K9jOEpuVUjmGfPUO5mhCyGmlCCHA== +"@sf/login@npm:@salesforce/plugin-login@0.0.13": + version "0.0.13" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-0.0.13.tgz#b66df05d5e3cc83b2ca85e8bd35d2dbef80cc922" + integrity sha512-/0sUvTG6WdPKvRKv855Ri0oBgTgrbdop1k2NMktRmwiBYLbdeW/BhgepkD9SdhEdRjgUbcOODVuQ53xnPRADkw== dependencies: "@oclif/core" "^0.5.21" - "@salesforce/core" "3.3.6" + "@salesforce/core" "3.3.7" inquirer "^8.0.0" open "^8.0.6" tslib "^2"