From 79532995c967f33d174e2079ccb994fb441b3271 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Tue, 17 Oct 2023 02:11:07 +0000 Subject: [PATCH] chore(release): bump to 2.14.5 --- README.md | 99 ++++++++++++++++++++-------------------- package.json | 14 +++--- yarn.lock | 125 ++++++++++++++------------------------------------- 3 files changed, 91 insertions(+), 147 deletions(-) diff --git a/README.md b/README.md index 1c24f295..c1900899 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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` @@ -240,7 +240,7 @@ EXAMPLES $ sf alias set my-scratch-org test-ss0xut7txzxf@example.com ``` -_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` @@ -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` @@ -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 @@ -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` @@ -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. @@ -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` @@ -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. @@ -965,20 +974,15 @@ ALIASES EXAMPLES Set the local target-org configuration variable to an org username: - $ sf config set target-org=me@my.org + $ sf config set target-org me@my.org 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 me@my.com + $ 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. @@ -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` @@ -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. @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` @@ -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` diff --git a/package.json b/package.json index 230f4922..a9911454 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.14.4", + "version": "2.14.5", "author": "Salesforce", "bin": { "sf": "./bin/run.js", @@ -77,7 +77,7 @@ "@salesforce/plugin-devops-center": "1.2.3", "@salesforce/plugin-env": "2.2.7", "@salesforce/plugin-functions": "1.22.3", - "@salesforce/plugin-packaging": "1.26.3", + "@salesforce/plugin-packaging": "1.26.4", "@salesforce/plugin-signups": "1.5.5", "@salesforce/sfdx-plugin-lwc-test": "1.1.0", "@salesforce/sfdx-scanner": "3.17.0" @@ -135,16 +135,16 @@ "@oclif/plugin-which": "3.0.4", "@salesforce/core": "^5.2.0", "@salesforce/plugin-apex": "2.3.19", - "@salesforce/plugin-auth": "2.8.20", + "@salesforce/plugin-auth": "2.8.21", "@salesforce/plugin-data": "2.5.17", "@salesforce/plugin-deploy-retrieve": "1.19.0", "@salesforce/plugin-info": "2.6.49", "@salesforce/plugin-limits": "2.3.38", "@salesforce/plugin-login": "1.2.37", "@salesforce/plugin-marketplace": "0.3.0", - "@salesforce/plugin-org": "2.11.0", + "@salesforce/plugin-org": "2.11.2", "@salesforce/plugin-schema": "2.3.29", - "@salesforce/plugin-settings": "1.4.33", + "@salesforce/plugin-settings": "1.4.34", "@salesforce/plugin-sobject": "0.2.12", "@salesforce/plugin-source": "2.10.40", "@salesforce/plugin-telemetry": "2.3.6", @@ -186,8 +186,8 @@ "resolutions": { "@salesforce/schemas": "1.6.0", "@salesforce/templates": "59.0.1", - "@salesforce/source-deploy-retrieve": "9.7.24", - "@salesforce/source-tracking": "4.2.16" + "@salesforce/source-deploy-retrieve": "9.7.25", + "@salesforce/source-tracking": "4.2.17" }, "repository": "salesforcecli/cli", "scripts": { diff --git a/yarn.lock b/yarn.lock index 2b036ad8..7b743f4e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -89,14 +89,7 @@ "@opentelemetry/instrumentation" "^0.41.2" tslib "^2.2.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" - integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== - dependencies: - "@babel/highlight" "^7.22.5" - -"@babel/code-frame@^7.22.13": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.22.5": version "7.22.13" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== @@ -130,17 +123,7 @@ gensync "^1.0.0-beta.2" json5 "^2.2.2" -"@babel/generator@^7.22.7": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.7.tgz#a6b8152d5a621893f2c9dacf9a4e286d520633d5" - integrity sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ== - dependencies: - "@babel/types" "^7.22.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/generator@^7.23.0": +"@babel/generator@^7.22.7", "@babel/generator@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== @@ -161,16 +144,11 @@ browserslist "^4.21.9" lru-cache "^5.1.1" -"@babel/helper-environment-visitor@^7.22.20": +"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== -"@babel/helper-environment-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" - integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== - "@babel/helper-function-name@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" @@ -226,16 +204,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== -"@babel/helper-validator-identifier@^7.22.20": +"@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.22.5": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-identifier@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" - integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== - "@babel/helper-validator-option@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" @@ -259,25 +232,11 @@ chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/highlight@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" - integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== - dependencies: - "@babel/helper-validator-identifier" "^7.22.5" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.22.15", "@babel/parser@^7.23.0": +"@babel/parser@^7.22.15", "@babel/parser@^7.22.7", "@babel/parser@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== -"@babel/parser@^7.22.5", "@babel/parser@^7.22.7": - version "7.22.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae" - integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== - "@babel/runtime-corejs3@^7.12.5": version "7.22.6" resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.22.6.tgz#e8e625eb3db29491e0326b3aeb9929c43b270ae4" @@ -293,7 +252,7 @@ dependencies: regenerator-runtime "^0.13.11" -"@babel/template@^7.22.15": +"@babel/template@^7.22.15", "@babel/template@^7.22.5": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== @@ -302,15 +261,6 @@ "@babel/parser" "^7.22.15" "@babel/types" "^7.22.15" -"@babel/template@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" - integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" - "@babel/traverse@^7.22.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8": version "7.23.2" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8" @@ -327,7 +277,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.22.15", "@babel/types@^7.23.0": +"@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== @@ -336,15 +286,6 @@ "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@babel/types@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" - integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - to-fast-properties "^2.0.0" - "@colors/colors@1.5.0": version "1.5.0" resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" @@ -1647,7 +1588,7 @@ strip-ansi "6.0.1" ts-retry-promise "^0.7.1" -"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.10", "@salesforce/core@^5.2.6", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9", "@salesforce/core@^5.3.1", "@salesforce/core@^5.3.2", "@salesforce/core@^5.3.3", "@salesforce/core@^5.3.4", "@salesforce/core@^5.3.5", "@salesforce/core@^5.3.9": +"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.10", "@salesforce/core@^5.2.6", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9", "@salesforce/core@^5.3.1", "@salesforce/core@^5.3.2", "@salesforce/core@^5.3.5", "@salesforce/core@^5.3.9": version "5.3.9" resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.3.9.tgz#1c8f793ce1a0798c5c7767a5a370a5926d3298de" integrity sha512-/HX0PiXq3Sjc5eVJ0EaYetcDGsKU9O9Nj8jFGw5qYlITx8zogfxc0j07liH67tQXS1KbTysYoj/MQ2zbHSNkPA== @@ -1735,13 +1676,13 @@ chalk "^4.1.0" tslib "^2" -"@salesforce/plugin-auth@2.8.20": - version "2.8.20" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-auth/-/plugin-auth-2.8.20.tgz#d6c5cc3fd3e69a963692284e9f475f5114340d16" - integrity sha512-f+mi/EbdaEyBskfNdHB77jne4748BtQBh94V1BJ8RkmMzElciFbR2MBSdjotrOEsjFHlOkART8BySB03rflBgg== +"@salesforce/plugin-auth@2.8.21": + version "2.8.21" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-auth/-/plugin-auth-2.8.21.tgz#f0fadf27b9b4e51a4cf003a32a0775f14c87e3c0" + integrity sha512-k3h4FnR1B4Z8aObWFpPbq6IzHWXQt7JAJ66WqwVlmjP5FH/xBhAyPqYinWUgJzHJ3JsRQ1oDo0kdbwf2iVQ8tA== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.0" + "@salesforce/core" "^5.3.9" "@salesforce/kit" "^3.0.9" "@salesforce/sf-plugins-core" "^3.1.28" "@salesforce/ts-types" "^2.0.6" @@ -1850,13 +1791,13 @@ proxy-agent "^6.3.1" tslib "^2" -"@salesforce/plugin-org@2.11.0": - version "2.11.0" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-2.11.0.tgz#36a86349685d2533215a55854f9a89e89d8d042d" - integrity sha512-NiQwSjh4fIBAH9NL+aO4NeIlNiD/jhOc3SqET2RBNx4H+lzCnzJhlkTQbuAWSEj5ZcrWQXlVceA/hOPeboT7fQ== +"@salesforce/plugin-org@2.11.2": + version "2.11.2" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-2.11.2.tgz#427334e704d18985662a6eb61d3ebd8b422e1cb8" + integrity sha512-j386vmfVDQnwZtVqSfZTHA/YFdiD1fZi2d6Yzwwb2Mehgt8odwbQh63Opp7arLNHXpAHmkdqwFJ/QcXbywx5oQ== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.3.4" + "@salesforce/core" "^5.3.9" "@salesforce/kit" "^3.0.9" "@salesforce/sf-plugins-core" "^3.1.28" "@salesforce/source-deploy-retrieve" "^9.7.13" @@ -1902,10 +1843,10 @@ "@salesforce/sf-plugins-core" "^3.1.23" tslib "^2" -"@salesforce/plugin-settings@1.4.33": - version "1.4.33" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-settings/-/plugin-settings-1.4.33.tgz#a5c77e0436b953aa2acfe5695df65dde2d39ee75" - integrity sha512-uLUiKVXmYFeM9nxPEauBF8TvkPT3dQvEYvnnhcin1UzjT7Z9FTHsW/0QQR8WRQ6RHNARSHYa4YTolnODE0bi+Q== +"@salesforce/plugin-settings@1.4.34": + version "1.4.34" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-settings/-/plugin-settings-1.4.34.tgz#9d7fe57b7e8d6bf4e7f19738522bf9144f5c4a70" + integrity sha512-ng1caxkRx4yGOjRwDCNnkuyRa/5ZhcNW/N6rf3rgGziNSa5R08J0KDc8ReUnLmigLpZi5jlEc1Nx5QKOIPhOVQ== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" @@ -2032,10 +1973,10 @@ chalk "^4" inquirer "^8.2.5" -"@salesforce/source-deploy-retrieve@9.7.24", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.20", "@salesforce/source-deploy-retrieve@^9.7.22", "@salesforce/source-deploy-retrieve@^9.7.24": - version "9.7.24" - resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.24.tgz#6a200b830311b0db08a86026ece98c734d56f8c2" - integrity sha512-nkP9KgzuCoV6LtdDxgxt7KRnoQ6ZS12DJgXErCBXm7Swmr0dnbo1LhxrH05C4UFFe0JuvSta+u+Oor8jxSGaCQ== +"@salesforce/source-deploy-retrieve@9.7.25", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.22", "@salesforce/source-deploy-retrieve@^9.7.24", "@salesforce/source-deploy-retrieve@^9.7.25": + version "9.7.25" + resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.25.tgz#30f1eda5bf450deab57e6840b3a8a4543de08dba" + integrity sha512-X2J6hYEyMALtAkIA8pTfLUfZ7n9NdCzGitSakuD771RmOk92GRcdht143TMhvpgZ5J5rRNXsbvGRX2c+E8IANg== dependencies: "@salesforce/core" "^5.3.1" "@salesforce/kit" "^3.0.11" @@ -2051,14 +1992,14 @@ proxy-agent "^6.3.1" unzipper "0.10.14" -"@salesforce/source-tracking@4.2.16", "@salesforce/source-tracking@^4.2.10", "@salesforce/source-tracking@^4.2.16": - version "4.2.16" - resolved "https://registry.yarnpkg.com/@salesforce/source-tracking/-/source-tracking-4.2.16.tgz#e64a7eeeb122045b61588b44c8c2e533ba5aa92a" - integrity sha512-HAuLaY+RrdKvWjx9FVYMrYlIUW4JyQtF/TA5hbDpy4Rw8IUOgrYyt+IaoiAAtMyRqU8En8fJBUqiq4qFvhdpCA== +"@salesforce/source-tracking@4.2.17", "@salesforce/source-tracking@^4.2.10", "@salesforce/source-tracking@^4.2.16": + version "4.2.17" + resolved "https://registry.yarnpkg.com/@salesforce/source-tracking/-/source-tracking-4.2.17.tgz#2f507a8352fecf6dbcddea074648fd898b142874" + integrity sha512-3tEXph7SiEFYY+eQEXFyEr6//7TlCLxWXS/YebY8gPY9zP/Ny6wVPP5E+A5QbN6GiXNMVJNmpq431b9NnQY8Fg== dependencies: - "@salesforce/core" "^5.3.3" + "@salesforce/core" "^5.3.9" "@salesforce/kit" "^3.0.13" - "@salesforce/source-deploy-retrieve" "^9.7.20" + "@salesforce/source-deploy-retrieve" "^9.7.25" "@salesforce/ts-types" "^2.0.8" fast-xml-parser "^4.2.5" graceful-fs "^4.2.11" @@ -3534,7 +3475,7 @@ chainsaw@~0.1.0: dependencies: traverse ">=0.3.0 <0.4" -chalk@^2.0.0, chalk@^2.4.2: +chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==