diff --git a/README.md b/README.md index e25ca368..1f8cdf8e 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.13.9 linux-x64 node-v18.18.0 +@salesforce/cli/2.14.0 linux-x64 node-v18.18.0 $ sf --help [COMMAND] USAGE $ sf COMMAND @@ -1094,7 +1094,7 @@ EXAMPLES TracedEntityId=01p17000000R6bLAAS" ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/create/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/create/record.ts)_ ## `sf data delete bulk` @@ -1106,10 +1106,10 @@ USAGE FLAGS -a, --async Run the command asynchronously. - -f, --file= (required) CSV file that contains the IDs of the records to delete. + -f, --file= (required) CSV file that contains the IDs of the records to update or delete. -o, --target-org= (required) Username or alias of the target org. -s, --sobject= (required) API name of the Salesforce object, either standard or custom, that you want to - delete records from. + update or delete records from. -w, --wait= [default: [object Object]] Number of minutes to wait for the command to complete before displaying the results. --api-version= Override the api version used for api requests made by this command @@ -1138,7 +1138,7 @@ EXAMPLES $ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/delete/bulk.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/delete/bulk.ts)_ ## `sf data delete record` @@ -1196,7 +1196,7 @@ EXAMPLES $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/delete/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/delete/record.ts)_ ## `sf data delete resume` @@ -1233,7 +1233,7 @@ EXAMPLES $ sf data delete resume --use-most-recent --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/delete/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/delete/resume.ts)_ ## `sf data export tree` @@ -1290,7 +1290,7 @@ EXAMPLES my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/export/tree.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/export/tree.ts)_ ## `sf data get record` @@ -1351,7 +1351,7 @@ EXAMPLES $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/get/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/get/record.ts)_ ## `sf data import tree` @@ -1401,7 +1401,7 @@ EXAMPLES $ sf data import tree --plan Account-Contact-plan.json ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/import/tree.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/import/tree.ts)_ ## `sf data query` @@ -1463,7 +1463,7 @@ EXAMPLES $ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0 ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/query.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/query.ts)_ ## `sf data query resume` @@ -1499,7 +1499,7 @@ EXAMPLES $ sf data query resume --bulk-query-id 7500x000005BdFzXXX ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/query/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/query/resume.ts)_ ## `sf data resume` @@ -1534,7 +1534,7 @@ EXAMPLES $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/resume.ts)_ ## `sf data update record` @@ -1562,7 +1562,7 @@ DESCRIPTION Updates a single record of a Salesforce or Tooling API object. Specify the record you want to update with either its ID or with a list of field-value pairs that identify the record. - If your list of fields identifies more than one record, the delete fails; the error displays how many records were + If your list of fields identifies more than one record, the update fails; the error displays how many records were found. When using field-value pairs for both identifying the record and specifiyng the new field values, use the format @@ -1594,7 +1594,7 @@ EXAMPLES "ExpirationDate=2017-12-01T00:58:04.000+0000" ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/update/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/update/record.ts)_ ## `sf data upsert bulk` @@ -1607,11 +1607,11 @@ USAGE FLAGS -a, --async Run the command asynchronously. - -f, --file= (required) CSV file that contains the IDs of the records to delete. + -f, --file= (required) CSV file that contains the IDs of the records to update or delete. -i, --external-id= (required) Name of the external ID field, or the Id field. -o, --target-org= (required) Username or alias of the target org. -s, --sobject= (required) API name of the Salesforce object, either standard or custom, that you want to - delete records from. + update or delete records from. -w, --wait= [default: [object Object]] Number of minutes to wait for the command to complete before displaying the results. --api-version= Override the api version used for api requests made by this command @@ -1645,7 +1645,7 @@ EXAMPLES my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/upsert/bulk.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/upsert/bulk.ts)_ ## `sf data upsert resume` @@ -1682,7 +1682,7 @@ EXAMPLES $ sf data upsert resume --use-most-recent --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/data/upsert/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/data/upsert/resume.ts)_ ## `sf doctor` @@ -1773,7 +1773,7 @@ EXAMPLES $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/force/data/bulk/delete.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/force/data/bulk/delete.ts)_ ## `sf force data bulk status` @@ -1808,7 +1808,7 @@ EXAMPLES $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/force/data/bulk/status.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/force/data/bulk/status.ts)_ ## `sf force data bulk upsert` @@ -1864,7 +1864,7 @@ EXAMPLES --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.16/src/commands/force/data/bulk/upsert.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/2.5.17/src/commands/force/data/bulk/upsert.ts)_ ## `sf force mdapi deploy` @@ -5248,7 +5248,7 @@ EXAMPLES $ sf plugins trust verify --npm @scope/npmName ``` -_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/2.6.18/src/commands/plugins/trust/verify.ts)_ +_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/2.6.19/src/commands/plugins/trust/verify.ts)_ ## `sf plugins:uninstall PLUGIN...` @@ -7108,7 +7108,7 @@ DESCRIPTION Once you select a command, hit enter and it will show the help for that command. ``` -_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/0.0.23/src/commands/search.ts)_ +_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/0.0.24/src/commands/search.ts)_ ## `sf sobject describe` diff --git a/package.json b/package.json index 66cc377a..f88d7fc5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.13.9", + "version": "2.14.0", "author": "Salesforce", "bin": { "sf": "./bin/run.js", @@ -74,7 +74,7 @@ "@salesforce/plugin-custom-metadata": "2.2.7", "@salesforce/plugin-community": "2.4.5", "@salesforce/plugin-dev": "1.2.0", - "@salesforce/plugin-devops-center": "1.2.2", + "@salesforce/plugin-devops-center": "1.2.3", "@salesforce/plugin-env": "2.2.6", "@salesforce/plugin-functions": "1.22.3", "@salesforce/plugin-packaging": "1.26.3", @@ -126,9 +126,9 @@ "@oclif/plugin-autocomplete": "2.3.9", "@oclif/plugin-commands": "2.2.28", "@oclif/plugin-help": "5.2.20", - "@oclif/plugin-not-found": "2.4.3", + "@oclif/plugin-not-found": "3.0.1", "@oclif/plugin-plugins": "3.9.1", - "@oclif/plugin-search": "0.0.23", + "@oclif/plugin-search": "0.0.24", "@oclif/plugin-update": "3.2.4", "@oclif/plugin-version": "2.0.1", "@oclif/plugin-warn-if-update-available": "2.1.1", @@ -136,7 +136,7 @@ "@salesforce/core": "^5.2.0", "@salesforce/plugin-apex": "2.3.19", "@salesforce/plugin-auth": "2.8.20", - "@salesforce/plugin-data": "2.5.16", + "@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", @@ -149,7 +149,7 @@ "@salesforce/plugin-source": "2.10.40", "@salesforce/plugin-telemetry": "2.3.6", "@salesforce/plugin-templates": "55.5.14", - "@salesforce/plugin-trust": "2.6.18", + "@salesforce/plugin-trust": "2.6.19", "@salesforce/plugin-user": "2.3.36", "@salesforce/sf-plugins-core": "4.0.0", "debug": "^4.3.4" diff --git a/yarn.lock b/yarn.lock index 6205d571..8fe447e1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1123,10 +1123,10 @@ wordwrap "^1.0.0" wrap-ansi "^7.0.0" -"@oclif/core@^3.0.0", "@oclif/core@^3.0.1", "@oclif/core@^3.0.4": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.0.5.tgz#7449e41c3b4465049da8ad569ef7502f1dbc4ecf" - integrity sha512-P2zr0viYDHxP3Q0+9z4Lr2g5xsLN5i/QmQTPxgCW7RJu8BB608RMm8xk/K60vW/vjwJdM7Zz1GZtGWltCvRq4Q== +"@oclif/core@^3.0.0", "@oclif/core@^3.0.1", "@oclif/core@^3.0.4", "@oclif/core@^3.0.5": + version "3.0.6" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.0.6.tgz#077e09d1470f14fba1c5666e77476660bdb4b601" + integrity sha512-tBe72CDHkst4bpbL1wVspleFnIkwNYgNeXI5dWyWP+Z0Rk4HUe3AdZzqndbm8a9n1OG5l4SOm0O4Qmp60gmsQQ== dependencies: ansi-escapes "^4.3.2" ansi-styles "^4.3.0" @@ -1191,7 +1191,16 @@ dependencies: "@oclif/core" "^2.15.0" -"@oclif/plugin-not-found@2.4.3", "@oclif/plugin-not-found@^2.3.32": +"@oclif/plugin-not-found@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-3.0.1.tgz#038f0d01681d9421daf632d533b1a9e666dd78f5" + integrity sha512-5tbLvxwb7bNkQn5M9F4nE43QttlrL/oHm6SeTqstvstyquJs3u251Iy2uGPP1tF7lZAvD/VMrsZ3tznTe4SoJg== + dependencies: + "@oclif/core" "^3.0.5" + chalk "^5.3.0" + fast-levenshtein "^3.0.0" + +"@oclif/plugin-not-found@^2.3.32": version "2.4.3" resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-2.4.3.tgz#3d24095adb0f3876cb4bcfdfdcb775086cf6d4b5" integrity sha512-nIyaR4y692frwh7wIHZ3fb+2L6XEecQwRDIb4zbEam0TvaVmBQWZoColQyWA84ljFBPZ8XWiQyTz+ixSwdRkqg== @@ -1218,10 +1227,10 @@ validate-npm-package-name "^5.0.0" yarn "^1.22.18" -"@oclif/plugin-search@0.0.23": - version "0.0.23" - resolved "https://registry.yarnpkg.com/@oclif/plugin-search/-/plugin-search-0.0.23.tgz#1d59cd69babc967a4f105b63d740beea2b8f3c48" - integrity sha512-KkRbglnDIAr6ycEIr82VyA8iKhrSj53CL7Ou5pSpshlrQZUD7HM0TGATXC4td504Ga6o8b3qE7YZwSuC4B+FtQ== +"@oclif/plugin-search@0.0.24": + version "0.0.24" + resolved "https://registry.yarnpkg.com/@oclif/plugin-search/-/plugin-search-0.0.24.tgz#7f3e0671a2ba57ba0c9d58f7feac5f7af2e2ab87" + integrity sha512-DIn3yT7lIRCe/YtWnV3QzlNd3UsckSO8BFVZ5dGSFAEroJVK5jP/i7G3+a4TBoFiL87gzbJUcbNdlNVkhjos3Q== dependencies: "@oclif/core" "^2.9.3" chalk "^4" @@ -1660,10 +1669,10 @@ handlebars "^4.7.8" tslib "^2" -"@salesforce/plugin-data@2.5.16": - version "2.5.16" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.16.tgz#9f8b508bcc6c8a5368009cbb50ca06f483e55980" - integrity sha512-xKmGRVG8q45PYJGhgUIX/VPI0V+wC3y5KpuPovtS/+SGZ4QECbLoM+LR7JbWBZy0YOkXaJg9aN9mRdlN6PIUHg== +"@salesforce/plugin-data@2.5.17": + version "2.5.17" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.17.tgz#889bed4a330e8954c5befd5bf5e78a0109f2124a" + integrity sha512-bcvTg7BqDDPvhcBGSEZ8GQ5EneKRzOAKHzL/L5HDdloKD9ZHdqHn42jmdjsSjZ4kWO905MZCCp5ySfilMW2jfA== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.3.1" @@ -1867,10 +1876,10 @@ yeoman-environment "^3.19.3" yeoman-generator "^5.9.0" -"@salesforce/plugin-trust@2.6.18", "@salesforce/plugin-trust@^2.6.8": - version "2.6.18" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.18.tgz#09308623233d946012d1955f8b88a418e415c19e" - integrity sha512-N8PdEpJv6i+txwC9lxwJjz6Yjb9Jfc8Azi0+WJSMi0Pn1H3J99YWYHk2UeGfEfv0OiQoC1yWT7AGEPfHczh6Dg== +"@salesforce/plugin-trust@2.6.19", "@salesforce/plugin-trust@^2.6.8": + version "2.6.19" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.19.tgz#0e2e95fec8015042b29123aece7556b83cb3a416" + integrity sha512-OKr5DFvc7aHk0AiUvQXWEKX2MISebClW/aOHz9GkWqU5gZfGMLbBeyieBoOCcaA5ESq8FAB4GZbDNVshba33qg== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9"