@salesforce/cli 2.44.5 → 2.44.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
24
24
  $ sf COMMAND
25
25
  running command...
26
26
  $ sf (--version|-v)
27
- @salesforce/cli/2.44.5 linux-x64 node-v20.13.1
27
+ @salesforce/cli/2.44.7 linux-x64 node-v20.13.1
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -148,6 +148,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
148
148
  - [`sf plugins update`](#sf-plugins-update)
149
149
  - [`sf project convert mdapi`](#sf-project-convert-mdapi)
150
150
  - [`sf project convert source`](#sf-project-convert-source)
151
+ - [`sf project convert source-behavior`](#sf-project-convert-source-behavior)
151
152
  - [`sf project delete source`](#sf-project-delete-source)
152
153
  - [`sf project delete tracking`](#sf-project-delete-tracking)
153
154
  - [`sf project deploy cancel`](#sf-project-deploy-cancel)
@@ -1950,7 +1951,7 @@ EXAMPLES
1950
1951
  $ sf doctor --plugin @salesforce/plugin-source
1951
1952
  ```
1952
1953
 
1953
- _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.3.2/src/commands/doctor.ts)_
1954
+ _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.3.3/src/commands/doctor.ts)_
1954
1955
 
1955
1956
  ## `sf force data bulk delete`
1956
1957
 
@@ -2152,7 +2153,7 @@ EXAMPLES
2152
2153
  $ sf info releasenotes display --version latest
2153
2154
  ```
2154
2155
 
2155
- _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.3.2/src/commands/info/releasenotes/display.ts)_
2156
+ _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.3.3/src/commands/info/releasenotes/display.ts)_
2156
2157
 
2157
2158
  ## `sf lightning generate app`
2158
2159
 
@@ -5718,7 +5719,7 @@ FLAG DESCRIPTIONS
5718
5719
  If you specify this parameter, don’t specify --metadata or --source-dir.
5719
5720
  ```
5720
5721
 
5721
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/convert/mdapi.ts)_
5722
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/convert/mdapi.ts)_
5722
5723
 
5723
5724
  ## `sf project convert source`
5724
5725
 
@@ -5730,7 +5731,7 @@ USAGE
5730
5731
  [-p <value> | -x <value> | -m <value>]
5731
5732
 
5732
5733
  FLAGS
5733
- -d, --output-dir=<value> [default: metadataPackage_1716626862131] Output directory to store the Metadata
5734
+ -d, --output-dir=<value> [default: metadataPackage_1716992955026] Output directory to store the Metadata
5734
5735
  API–formatted files in.
5735
5736
  -m, --metadata=<value>... Metadata component names to convert.
5736
5737
  -n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
@@ -5791,7 +5792,64 @@ FLAG DESCRIPTIONS
5791
5792
  Override the api version used for api requests made by this command
5792
5793
  ```
5793
5794
 
5794
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/convert/source.ts)_
5795
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/convert/source.ts)_
5796
+
5797
+ ## `sf project convert source-behavior`
5798
+
5799
+ Enable a behavior of your project source files, and then update your Salesforce DX project to implement the behavior.
5800
+
5801
+ ```
5802
+ USAGE
5803
+ $ sf project convert source-behavior -b
5804
+ decomposeCustomLabelsBeta|decomposePermissionSetBeta|decomposeSharingRulesBeta|decomposeWorkflowBeta [--json]
5805
+ [--flags-dir <value>] [--dry-run] [--preserve-temp-dir] [-o <value>]
5806
+
5807
+ FLAGS
5808
+ -b, --behavior=<option> (required) Behavior to enable; the values correspond to the possible values of the
5809
+ "sourceBehaviorOption" option in the "sfdx-project.json" file.
5810
+ <options: decomposeCustomLabelsBeta|decomposePermissionSetBeta|decomposeSharingRulesBeta|dec
5811
+ omposeWorkflowBeta>
5812
+ -o, --target-org=<value>
5813
+ --dry-run Display what the command would do, but don't make any actual changes.
5814
+ --preserve-temp-dir Don't delete the metadata API format temporary directory that this command creates. Useful
5815
+ for debugging.
5816
+
5817
+ GLOBAL FLAGS
5818
+ --flags-dir=<value> Import flag values from a directory.
5819
+ --json Format output as json.
5820
+
5821
+ DESCRIPTION
5822
+ Enable a behavior of your project source files, and then update your Salesforce DX project to implement the behavior.
5823
+
5824
+ Specifically, this command updates the "sourceBehaviorOption" option in the "sfdx-project.json" file and then converts
5825
+ the associated local source files in your project as needed.
5826
+
5827
+ For example, run this command with the "--behavior decomposePermissionSetBeta" flag to start decomposing permission
5828
+ sets when you deploy or retrieve them. Decomposing means breaking up the monolithic metadata API format XML file that
5829
+ corresponds to a metadata component into smaller XML files and directories based on its subtypes. Permission sets are
5830
+ not decomposed by default; you must opt-in to start decomposing them by using this command. When the command finishes,
5831
+ your "sfdx-project.json" file is updated to always decompose permission sets, and the existing permission set files in
5832
+ your local package directories are converted into the new decomposed format. You run this command only once for a
5833
+ given behavior change.
5834
+
5835
+ For more information about the possible values for the --behavior flag, see the "sourceBehaviorOptions" section in the
5836
+ https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_ws_config.htm topic.
5837
+
5838
+ EXAMPLES
5839
+ Update your Salesforce DX project to decompose custom labels:
5840
+
5841
+ $ sf project convert source-behavior --behavior decomposeCustomLabelsBeta
5842
+
5843
+ Display what the command would do, but don't change any existing files:
5844
+
5845
+ $ sf project convert source-behavior --behavior decomposeCustomLabelsBeta --dry-run
5846
+
5847
+ Keep the temporary directory that contains the interim metadata API formatted files:
5848
+
5849
+ $ sf project convert source-behavior --behavior decomposeCustomLabelsBeta --dry-run --preserve-temp-dir
5850
+ ```
5851
+
5852
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/convert/source-behavior.ts)_
5795
5853
 
5796
5854
  ## `sf project delete source`
5797
5855
 
@@ -5868,7 +5926,7 @@ FLAG DESCRIPTIONS
5868
5926
  Validates the deleted metadata and runs all Apex tests, but prevents the deletion from being saved to the org.
5869
5927
 
5870
5928
  If you change a field type from Master-Detail to Lookup or vice versa, that change isn’t supported when using the
5871
- --chec-konly parameter to test a deletion (validation). This kind of change isn’t supported for test deletions to
5929
+ --check-only parameter to test a deletion (validation). This kind of change isn’t supported for test deletions to
5872
5930
  avoid the risk of data loss or corruption. If a change that isn’t supported for test deletions is included in a
5873
5931
  deletion package, the test deletion fails and issues an error.
5874
5932
 
@@ -5931,7 +5989,7 @@ FLAG DESCRIPTIONS
5931
5989
  - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
5932
5990
  ```
5933
5991
 
5934
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/delete/source.ts)_
5992
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/delete/source.ts)_
5935
5993
 
5936
5994
  ## `sf project delete tracking`
5937
5995
 
@@ -5968,7 +6026,7 @@ EXAMPLES
5968
6026
  $ sf project delete tracking --target-org my-scratch
5969
6027
  ```
5970
6028
 
5971
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/delete/tracking.ts)_
6029
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/delete/tracking.ts)_
5972
6030
 
5973
6031
  ## `sf project deploy cancel`
5974
6032
 
@@ -6044,7 +6102,7 @@ FLAG DESCRIPTIONS
6044
6102
  project deploy report".
6045
6103
  ```
6046
6104
 
6047
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/deploy/cancel.ts)_
6105
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/deploy/cancel.ts)_
6048
6106
 
6049
6107
  ## `sf project deploy preview`
6050
6108
 
@@ -6130,7 +6188,7 @@ FLAG DESCRIPTIONS
6130
6188
  All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
6131
6189
  ```
6132
6190
 
6133
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/deploy/preview.ts)_
6191
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/deploy/preview.ts)_
6134
6192
 
6135
6193
  ## `sf project deploy quick`
6136
6194
 
@@ -6171,7 +6229,7 @@ DESCRIPTION
6171
6229
  This command doesn't support source-tracking. The source you deploy overwrites the corresponding metadata in your org.
6172
6230
  This command doesn’t attempt to merge your source with the versions in your org.
6173
6231
 
6174
- Note: Don't use this command on sandboxes; the command is intended to be used on production orgs. By default,
6232
+ Note: Don't use this command on sandboxes; the command is intended to be used on production orgs. By default,
6175
6233
  sandboxes don't run tests during a deploy. Use `sf project deploy start` instead.
6176
6234
 
6177
6235
  ALIASES
@@ -6227,7 +6285,7 @@ ERROR CODES
6227
6285
  Canceling (69) The deploy is being canceled.
6228
6286
  ```
6229
6287
 
6230
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/deploy/quick.ts)_
6288
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/deploy/quick.ts)_
6231
6289
 
6232
6290
  ## `sf project deploy report`
6233
6291
 
@@ -6323,7 +6381,7 @@ FLAG DESCRIPTIONS
6323
6381
  --coverage-formatters lcov --coverage-formatters clover
6324
6382
  ```
6325
6383
 
6326
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/deploy/report.ts)_
6384
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/deploy/report.ts)_
6327
6385
 
6328
6386
  ## `sf project deploy resume`
6329
6387
 
@@ -6420,7 +6478,7 @@ ERROR CODES
6420
6478
  Canceling (69) The deploy is being canceled.
6421
6479
  ```
6422
6480
 
6423
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/deploy/resume.ts)_
6481
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/deploy/resume.ts)_
6424
6482
 
6425
6483
  ## `sf project deploy start`
6426
6484
 
@@ -6658,7 +6716,7 @@ ERROR CODES
6658
6716
  Canceling (69) The deploy is being canceled.
6659
6717
  ```
6660
6718
 
6661
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/deploy/start.ts)_
6719
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/deploy/start.ts)_
6662
6720
 
6663
6721
  ## `sf project deploy validate`
6664
6722
 
@@ -6733,7 +6791,7 @@ DESCRIPTION
6733
6791
  quotes. The same syntax applies to --manifest and --source-dir.
6734
6792
 
6735
6793
  Note: Don't use this command on sandboxes; the command is intended to be used on production orgs. By default,
6736
- sandboxes don't run tests during a deploy. If you want to validate a deployment with tests on a sandbox, use "sf
6794
+ sandboxes don't run tests during a deploy. If you want to validate a deployment with tests on a sandbox, use "sf
6737
6795
  project deploy start --dry-run --test-level RunLocalTests" instead.
6738
6796
 
6739
6797
  ALIASES
@@ -6850,7 +6908,7 @@ ERROR CODES
6850
6908
  Canceling (69) The deploy is being canceled.
6851
6909
  ```
6852
6910
 
6853
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/deploy/validate.ts)_
6911
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/deploy/validate.ts)_
6854
6912
 
6855
6913
  ## `sf project generate`
6856
6914
 
@@ -7032,7 +7090,7 @@ EXAMPLES
7032
7090
  $ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
7033
7091
  ```
7034
7092
 
7035
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/generate/manifest.ts)_
7093
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/generate/manifest.ts)_
7036
7094
 
7037
7095
  ## `sf project list ignored`
7038
7096
 
@@ -7074,7 +7132,7 @@ EXAMPLES
7074
7132
  $ sf project list ignored --source-dir package.xml
7075
7133
  ```
7076
7134
 
7077
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/list/ignored.ts)_
7135
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/list/ignored.ts)_
7078
7136
 
7079
7137
  ## `sf project reset tracking`
7080
7138
 
@@ -7123,7 +7181,7 @@ EXAMPLES
7123
7181
  $ sf project reset tracking --revision 30
7124
7182
  ```
7125
7183
 
7126
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/reset/tracking.ts)_
7184
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/reset/tracking.ts)_
7127
7185
 
7128
7186
  ## `sf project retrieve preview`
7129
7187
 
@@ -7180,7 +7238,7 @@ FLAG DESCRIPTIONS
7180
7238
  Overrides your default org.
7181
7239
  ```
7182
7240
 
7183
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/retrieve/preview.ts)_
7241
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/retrieve/preview.ts)_
7184
7242
 
7185
7243
  ## `sf project retrieve start`
7186
7244
 
@@ -7339,7 +7397,7 @@ ENVIRONMENT VARIABLES
7339
7397
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
7340
7398
  ```
7341
7399
 
7342
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.9/src/commands/project/retrieve/start.ts)_
7400
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.0/src/commands/project/retrieve/start.ts)_
7343
7401
 
7344
7402
  ## `sf schema generate field`
7345
7403
 
@@ -7731,7 +7789,7 @@ EXAMPLES
7731
7789
  $ sf update --available
7732
7790
  ```
7733
7791
 
7734
- _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.2.13/src/commands/update.ts)_
7792
+ _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.2.14/src/commands/update.ts)_
7735
7793
 
7736
7794
  ## `sf version`
7737
7795
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.44.5",
3
+ "version": "2.44.7",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.44.5",
9
+ "version": "2.44.7",
10
10
  "hasInstallScript": true,
11
11
  "license": "BSD-3-Clause",
12
12
  "dependencies": {
@@ -18,7 +18,7 @@
18
18
  "@oclif/plugin-not-found": "3.1.10",
19
19
  "@oclif/plugin-plugins": "5.1.3",
20
20
  "@oclif/plugin-search": "1.0.24",
21
- "@oclif/plugin-update": "4.2.13",
21
+ "@oclif/plugin-update": "4.2.14",
22
22
  "@oclif/plugin-version": "2.1.2",
23
23
  "@oclif/plugin-warn-if-update-available": "3.0.19",
24
24
  "@oclif/plugin-which": "3.1.10",
@@ -27,8 +27,8 @@
27
27
  "@salesforce/plugin-apex": "3.1.13",
28
28
  "@salesforce/plugin-auth": "3.6.16",
29
29
  "@salesforce/plugin-data": "3.4.3",
30
- "@salesforce/plugin-deploy-retrieve": "3.7.9",
31
- "@salesforce/plugin-info": "3.3.2",
30
+ "@salesforce/plugin-deploy-retrieve": "3.8.0",
31
+ "@salesforce/plugin-info": "3.3.3",
32
32
  "@salesforce/plugin-limits": "3.3.9",
33
33
  "@salesforce/plugin-marketplace": "1.2.8",
34
34
  "@salesforce/plugin-org": "4.1.14",
@@ -4057,9 +4057,9 @@
4057
4057
  }
4058
4058
  },
4059
4059
  "node_modules/@oclif/plugin-update": {
4060
- "version": "4.2.13",
4061
- "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.2.13.tgz",
4062
- "integrity": "sha512-zCDVfEo8WTuipqasIgl0MzUG16p2k/Y0twPd0agSxfdY8jGEUQdy3zACRZ8jCodVM0SJ9UKh4Yd7b2Wh5JpSsQ==",
4060
+ "version": "4.2.14",
4061
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.2.14.tgz",
4062
+ "integrity": "sha512-UtXsMzSocUW2lcJeeljJq0/qMdXe6DIidxTrrn2FCdClbZ2ejhOIj0uWiOsjw1yoltPrdguNPZXstvwxW13e6A==",
4063
4063
  "license": "MIT",
4064
4064
  "dependencies": {
4065
4065
  "@inquirer/select": "^2.3.4",
@@ -4856,9 +4856,9 @@
4856
4856
  "license": "MIT"
4857
4857
  },
4858
4858
  "node_modules/@salesforce/plugin-deploy-retrieve": {
4859
- "version": "3.7.9",
4860
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.7.9.tgz",
4861
- "integrity": "sha512-uZ3x1DkAN9cO5g2yn6qqKKBl5ZVRcAPPxTzwZYy4ZKbVUB4bOOvZ5L5FUg+NttUgXvU57kEXqcqksd/DjCh7uA==",
4859
+ "version": "3.8.0",
4860
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.8.0.tgz",
4861
+ "integrity": "sha512-RSZcgXLZXJYLC9DfYSuCm/SzFpooLUzwf0wmjpLAyZZKxiE4fPHjjs1HSsznaB3m0JQF0nKTLnuCl+O0/kAThw==",
4862
4862
  "license": "BSD-3-Clause",
4863
4863
  "dependencies": {
4864
4864
  "@oclif/core": "^3.26.6",
@@ -4877,9 +4877,9 @@
4877
4877
  }
4878
4878
  },
4879
4879
  "node_modules/@salesforce/plugin-info": {
4880
- "version": "3.3.2",
4881
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.3.2.tgz",
4882
- "integrity": "sha512-xy/gBmbGSpgpcrHiNd5cGfbJJbGP2zYa17+/MDuqXFIbHDf1HuDwpykxMm6klHMQbwVGrEfXMuJVj9PEn0/CSA==",
4880
+ "version": "3.3.3",
4881
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.3.3.tgz",
4882
+ "integrity": "sha512-+hwBED7TJY/gwMehZstv7Shk5Q885vTv1mOMHmhzvCLoV87ihI0P3x932qZafOuDaM31/p7D9SIB3Bn1MTLCRg==",
4883
4883
  "license": "BSD-3-Clause",
4884
4884
  "dependencies": {
4885
4885
  "@inquirer/input": "^2.1.8",
package/oclif.lock CHANGED
@@ -2132,10 +2132,10 @@
2132
2132
  "@oclif/core" "^3.26.6"
2133
2133
  inquirer-autocomplete-standalone "^0.8.1"
2134
2134
 
2135
- "@oclif/plugin-update@4.2.13":
2136
- version "4.2.13"
2137
- resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.2.13.tgz"
2138
- integrity sha512-zCDVfEo8WTuipqasIgl0MzUG16p2k/Y0twPd0agSxfdY8jGEUQdy3zACRZ8jCodVM0SJ9UKh4Yd7b2Wh5JpSsQ==
2135
+ "@oclif/plugin-update@4.2.14":
2136
+ version "4.2.14"
2137
+ resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.2.14.tgz"
2138
+ integrity sha512-UtXsMzSocUW2lcJeeljJq0/qMdXe6DIidxTrrn2FCdClbZ2ejhOIj0uWiOsjw1yoltPrdguNPZXstvwxW13e6A==
2139
2139
  dependencies:
2140
2140
  "@inquirer/select" "^2.3.4"
2141
2141
  "@oclif/core" "^3.26.6"
@@ -2593,10 +2593,10 @@
2593
2593
  csv-stringify "^6.5.0"
2594
2594
  form-data "^4.0.0"
2595
2595
 
2596
- "@salesforce/plugin-deploy-retrieve@3.7.9":
2597
- version "3.7.9"
2598
- resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.7.9.tgz"
2599
- integrity sha512-uZ3x1DkAN9cO5g2yn6qqKKBl5ZVRcAPPxTzwZYy4ZKbVUB4bOOvZ5L5FUg+NttUgXvU57kEXqcqksd/DjCh7uA==
2596
+ "@salesforce/plugin-deploy-retrieve@3.8.0":
2597
+ version "3.8.0"
2598
+ resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.8.0.tgz"
2599
+ integrity sha512-RSZcgXLZXJYLC9DfYSuCm/SzFpooLUzwf0wmjpLAyZZKxiE4fPHjjs1HSsznaB3m0JQF0nKTLnuCl+O0/kAThw==
2600
2600
  dependencies:
2601
2601
  "@oclif/core" "^3.26.6"
2602
2602
  "@salesforce/apex-node" "^6.0.0"
@@ -2609,10 +2609,10 @@
2609
2609
  "@salesforce/ts-types" "^2.0.9"
2610
2610
  chalk "^5.3.0"
2611
2611
 
2612
- "@salesforce/plugin-info@^3.2.7", "@salesforce/plugin-info@^3.3.0", "@salesforce/plugin-info@^3.3.1", "@salesforce/plugin-info@3.3.2":
2613
- version "3.3.2"
2614
- resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.3.2.tgz"
2615
- integrity sha512-xy/gBmbGSpgpcrHiNd5cGfbJJbGP2zYa17+/MDuqXFIbHDf1HuDwpykxMm6klHMQbwVGrEfXMuJVj9PEn0/CSA==
2612
+ "@salesforce/plugin-info@^3.2.7", "@salesforce/plugin-info@^3.3.0", "@salesforce/plugin-info@^3.3.1", "@salesforce/plugin-info@3.3.3":
2613
+ version "3.3.3"
2614
+ resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.3.3.tgz"
2615
+ integrity sha512-+hwBED7TJY/gwMehZstv7Shk5Q885vTv1mOMHmhzvCLoV87ihI0P3x932qZafOuDaM31/p7D9SIB3Bn1MTLCRg==
2616
2616
  dependencies:
2617
2617
  "@inquirer/input" "^2.1.8"
2618
2618
  "@jsforce/jsforce-node" "^3.2.0"
@@ -5379,5 +5379,5 @@
5379
5379
  ]
5380
5380
  }
5381
5381
  },
5382
- "version": "2.44.5"
5382
+ "version": "2.44.7"
5383
5383
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.44.5",
4
+ "version": "2.44.7",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -83,7 +83,7 @@
83
83
  "@salesforce/plugin-functions": "1.23.0",
84
84
  "@salesforce/plugin-signups": "2.3.5",
85
85
  "@salesforce/sfdx-plugin-lwc-test": "1.2.0",
86
- "@salesforce/sfdx-scanner": "3.24.0"
86
+ "@salesforce/sfdx-scanner": "3.25.0"
87
87
  },
88
88
  "devPlugins": [
89
89
  "@oclif/plugin-command-snapshot",
@@ -146,7 +146,7 @@
146
146
  "@oclif/plugin-not-found": "3.1.10",
147
147
  "@oclif/plugin-plugins": "5.1.3",
148
148
  "@oclif/plugin-search": "1.0.24",
149
- "@oclif/plugin-update": "4.2.13",
149
+ "@oclif/plugin-update": "4.2.14",
150
150
  "@oclif/plugin-version": "2.1.2",
151
151
  "@oclif/plugin-warn-if-update-available": "3.0.19",
152
152
  "@oclif/plugin-which": "3.1.10",
@@ -155,8 +155,8 @@
155
155
  "@salesforce/plugin-apex": "3.1.13",
156
156
  "@salesforce/plugin-auth": "3.6.16",
157
157
  "@salesforce/plugin-data": "3.4.3",
158
- "@salesforce/plugin-deploy-retrieve": "3.7.9",
159
- "@salesforce/plugin-info": "3.3.2",
158
+ "@salesforce/plugin-deploy-retrieve": "3.8.0",
159
+ "@salesforce/plugin-info": "3.3.3",
160
160
  "@salesforce/plugin-limits": "3.3.9",
161
161
  "@salesforce/plugin-marketplace": "1.2.8",
162
162
  "@salesforce/plugin-org": "4.1.14",