@salesforce/cli 2.49.0 → 2.49.1

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.49.0 linux-x64 node-v20.14.0
27
+ @salesforce/cli/2.49.1 linux-x64 node-v20.15.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -519,7 +519,7 @@ FLAG DESCRIPTIONS
519
519
  directory.
520
520
  ```
521
521
 
522
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/get/log.ts)_
522
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/get/log.ts)_
523
523
 
524
524
  ## `sf apex get test`
525
525
 
@@ -570,10 +570,10 @@ EXAMPLES
570
570
  default org):
571
571
 
572
572
  $ sf apex get test --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org \
573
- me@myorg',
573
+ me@myorg'
574
574
  ```
575
575
 
576
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/get/test.ts)_
576
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/get/test.ts)_
577
577
 
578
578
  ## `sf apex list log`
579
579
 
@@ -613,7 +613,7 @@ EXAMPLES
613
613
  $ sf apex list log --target-org me@my.org
614
614
  ```
615
615
 
616
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/list/log.ts)_
616
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/list/log.ts)_
617
617
 
618
618
  ## `sf apex run`
619
619
 
@@ -660,7 +660,7 @@ EXAMPLES
660
660
  $ sf apex run
661
661
  ```
662
662
 
663
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/run.ts)_
663
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/run.ts)_
664
664
 
665
665
  ## `sf apex run test`
666
666
 
@@ -740,14 +740,45 @@ EXAMPLES
740
740
 
741
741
  $ sf apex run test --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org
742
742
 
743
+ Run all tests in the org asynchronously:
744
+
745
+ $ sf apex run test --target-org myscratch
746
+
747
+ Run all tests synchronously; the command waits to display the test results until all tests finish:
748
+
749
+ $ sf apex run test --synchronous
750
+
751
+ Run specific tests using the --test-level flag:
752
+
753
+ $ sf apex run test --test-level RunLocalTests
754
+
755
+ Run Apex tests on all the methods in the specified class; output results in Test Anything Protocol (TAP) format and
756
+ request code coverage results:
757
+
758
+ $ sf apex run test --class-names TestA --class-names TestB --result-format tap --code-coverage
759
+
760
+ Run Apex tests on methods specified using the standard Class.method notation; if you specify a test class without a
761
+ method, the command runs all methods in the class:
762
+
763
+ $ sf apex run test --tests TestA.excitingMethod --tests TestA.boringMethod --tests TestB
764
+
765
+ Run Apex tests on methods specified using the standard Class.method notation with a namespace:
766
+
767
+ $ sf apex run test --tests ns.TestA.excitingMethod --tests ns.TestA.boringMethod --tests ns.TestB
768
+
743
769
  FLAG DESCRIPTIONS
744
770
  -l, --test-level=RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests Level of tests to run; default is RunLocalTests.
745
771
 
746
772
  Here's what the levels mean:
747
773
 
748
- - RunSpecifiedTests — Only the tests that you specify are run.
749
- - RunLocalTests All tests in your org are run, except the ones that originate from installed managed packages.
750
- - RunAllTestsInOrg All tests are in your org and in installed managed packages are run
774
+ - RunSpecifiedTests — Only the tests that you specify in the runTests option are run. Code coverage requirements
775
+ differ from the default coverage requirements when using this test level. The executed tests must cover each class
776
+ and trigger in the deployment package for a minimum of 75% code coverage. This coverage is computed for each class
777
+ and triggers individually, and is different than the overall coverage percentage.
778
+ - RunLocalTests — All local tests in your org, including tests that originate from no-namespaced unlocked packages,
779
+ are run. The tests that originate from installed managed packages and namespaced unlocked packages aren't run. This
780
+ test level is the default for production deployments that include Apex classes or triggers.
781
+ - RunAllTestsInOrg — All tests are run. The tests include all tests in your org.
751
782
 
752
783
  -n, --class-names=<value>... Apex test class names to run; default is all classes.
753
784
 
@@ -770,7 +801,7 @@ FLAG DESCRIPTIONS
770
801
  --tests Test1 --tests Test2
771
802
  ```
772
803
 
773
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/run/test.ts)_
804
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/run/test.ts)_
774
805
 
775
806
  ## `sf apex tail log`
776
807
 
@@ -813,7 +844,7 @@ EXAMPLES
813
844
  $ sf apex tail log --color --skip-trace-flag
814
845
  ```
815
846
 
816
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/tail/log.ts)_
847
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/tail/log.ts)_
817
848
 
818
849
  ## `sf autocomplete [SHELL]`
819
850
 
@@ -5753,7 +5784,7 @@ FLAG DESCRIPTIONS
5753
5784
  If you specify this parameter, don’t specify --metadata or --source-dir.
5754
5785
  ```
5755
5786
 
5756
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/convert/mdapi.ts)_
5787
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/convert/mdapi.ts)_
5757
5788
 
5758
5789
  ## `sf project convert source`
5759
5790
 
@@ -5765,7 +5796,7 @@ USAGE
5765
5796
  [-p <value>... | -x <value> | -m <value>...]
5766
5797
 
5767
5798
  FLAGS
5768
- -d, --output-dir=<value> [default: metadataPackage_1719035221354] Output directory to store the Metadata
5799
+ -d, --output-dir=<value> [default: metadataPackage_1719527499222] Output directory to store the Metadata
5769
5800
  API–formatted files in.
5770
5801
  -m, --metadata=<value>... Metadata component names to convert.
5771
5802
  -n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
@@ -5826,7 +5857,7 @@ FLAG DESCRIPTIONS
5826
5857
  Override the api version used for api requests made by this command
5827
5858
  ```
5828
5859
 
5829
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/convert/source.ts)_
5860
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/convert/source.ts)_
5830
5861
 
5831
5862
  ## `sf project convert source-behavior`
5832
5863
 
@@ -5883,7 +5914,7 @@ EXAMPLES
5883
5914
  $ sf project convert source-behavior --behavior decomposeCustomLabelsBeta --dry-run --preserve-temp-dir
5884
5915
  ```
5885
5916
 
5886
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/convert/source-behavior.ts)_
5917
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/convert/source-behavior.ts)_
5887
5918
 
5888
5919
  ## `sf project delete source`
5889
5920
 
@@ -6023,7 +6054,7 @@ FLAG DESCRIPTIONS
6023
6054
  - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
6024
6055
  ```
6025
6056
 
6026
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/delete/source.ts)_
6057
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/delete/source.ts)_
6027
6058
 
6028
6059
  ## `sf project delete tracking`
6029
6060
 
@@ -6060,7 +6091,7 @@ EXAMPLES
6060
6091
  $ sf project delete tracking --target-org my-scratch
6061
6092
  ```
6062
6093
 
6063
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/delete/tracking.ts)_
6094
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/delete/tracking.ts)_
6064
6095
 
6065
6096
  ## `sf project deploy cancel`
6066
6097
 
@@ -6132,7 +6163,7 @@ FLAG DESCRIPTIONS
6132
6163
  project deploy report".
6133
6164
  ```
6134
6165
 
6135
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/cancel.ts)_
6166
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/cancel.ts)_
6136
6167
 
6137
6168
  ## `sf project deploy preview`
6138
6169
 
@@ -6215,7 +6246,7 @@ FLAG DESCRIPTIONS
6215
6246
  All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
6216
6247
  ```
6217
6248
 
6218
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/preview.ts)_
6249
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/preview.ts)_
6219
6250
 
6220
6251
  ## `sf project deploy quick`
6221
6252
 
@@ -6308,7 +6339,7 @@ ERROR CODES
6308
6339
  Canceling (69) The deploy is being canceled.
6309
6340
  ```
6310
6341
 
6311
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/quick.ts)_
6342
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/quick.ts)_
6312
6343
 
6313
6344
  ## `sf project deploy report`
6314
6345
 
@@ -6400,7 +6431,7 @@ FLAG DESCRIPTIONS
6400
6431
  --coverage-formatters lcov --coverage-formatters clover
6401
6432
  ```
6402
6433
 
6403
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/report.ts)_
6434
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/report.ts)_
6404
6435
 
6405
6436
  ## `sf project deploy resume`
6406
6437
 
@@ -6497,7 +6528,7 @@ ERROR CODES
6497
6528
  Canceling (69) The deploy is being canceled.
6498
6529
  ```
6499
6530
 
6500
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/resume.ts)_
6531
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/resume.ts)_
6501
6532
 
6502
6533
  ## `sf project deploy start`
6503
6534
 
@@ -6507,8 +6538,8 @@ Deploy metadata to an org from your local project.
6507
6538
  USAGE
6508
6539
  $ sf project deploy start -o <value> [--json] [--flags-dir <value>] [-a <value>] [--async | -w <minutes>] [--concise |
6509
6540
  --verbose] [--dry-run] [-c] [-r] [-g] [--single-package ] [-t <value>...] [-l
6510
- NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg] [--purge-on-delete [-x <value> | -d <value>... | -m
6511
- <value>... | --metadata-dir <value>]] [--pre-destructive-changes <value> ] [--post-destructive-changes <value> ]
6541
+ NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg] [--purge-on-delete] [--pre-destructive-changes <value>
6542
+ [-x <value> | -d <value>... | -m <value>... | --metadata-dir <value>]] [--post-destructive-changes <value> ]
6512
6543
  [--coverage-formatters clover|cobertura|html-spa|html|json|json-summary|lcovonly|none|teamcity|text|text-summary...]
6513
6544
  [--junit] [--results-dir <value>]
6514
6545
 
@@ -6636,6 +6667,16 @@ EXAMPLES
6636
6667
 
6637
6668
  $ sf project deploy start --metadata ApexClass --test-level RunLocalTests
6638
6669
 
6670
+ Deploy all metadata formatted files in the "MDAPI" directory:
6671
+
6672
+ $ sf project deploy start --metadata-dir MDAPI
6673
+
6674
+ Deploy all metadata formatted files in the "MDAPI" directory; items listed in the MDAPI/destructiveChangesPre.xml
6675
+ and MDAPI/destructiveChangesPost.xml manifests are immediately eligible for deletion rather than stored in the
6676
+ Recycle Bin:
6677
+
6678
+ $ sf project deploy start --metadata-dir MDAPI --purge-on-delete
6679
+
6639
6680
  FLAG DESCRIPTIONS
6640
6681
  -a, --api-version=<value> Target API version for the deploy.
6641
6682
 
@@ -6740,7 +6781,7 @@ ERROR CODES
6740
6781
  Canceling (69) The deploy is being canceled.
6741
6782
  ```
6742
6783
 
6743
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/start.ts)_
6784
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/start.ts)_
6744
6785
 
6745
6786
  ## `sf project deploy validate`
6746
6787
 
@@ -6930,7 +6971,7 @@ ERROR CODES
6930
6971
  Canceling (69) The deploy is being canceled.
6931
6972
  ```
6932
6973
 
6933
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/validate.ts)_
6974
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/validate.ts)_
6934
6975
 
6935
6976
  ## `sf project generate`
6936
6977
 
@@ -7112,7 +7153,7 @@ EXAMPLES
7112
7153
  $ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
7113
7154
  ```
7114
7155
 
7115
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/generate/manifest.ts)_
7156
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/generate/manifest.ts)_
7116
7157
 
7117
7158
  ## `sf project list ignored`
7118
7159
 
@@ -7154,7 +7195,7 @@ EXAMPLES
7154
7195
  $ sf project list ignored --source-dir package.xml
7155
7196
  ```
7156
7197
 
7157
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/list/ignored.ts)_
7198
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/list/ignored.ts)_
7158
7199
 
7159
7200
  ## `sf project reset tracking`
7160
7201
 
@@ -7203,7 +7244,7 @@ EXAMPLES
7203
7244
  $ sf project reset tracking --revision 30
7204
7245
  ```
7205
7246
 
7206
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/reset/tracking.ts)_
7247
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/reset/tracking.ts)_
7207
7248
 
7208
7249
  ## `sf project retrieve preview`
7209
7250
 
@@ -7257,7 +7298,7 @@ FLAG DESCRIPTIONS
7257
7298
  production orgs.
7258
7299
  ```
7259
7300
 
7260
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/retrieve/preview.ts)_
7301
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/retrieve/preview.ts)_
7261
7302
 
7262
7303
  ## `sf project retrieve start`
7263
7304
 
@@ -7424,7 +7465,7 @@ ENVIRONMENT VARIABLES
7424
7465
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
7425
7466
  ```
7426
7467
 
7427
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/retrieve/start.ts)_
7468
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/retrieve/start.ts)_
7428
7469
 
7429
7470
  ## `sf schema generate field`
7430
7471
 
@@ -7816,7 +7857,7 @@ EXAMPLES
7816
7857
  $ sf update --available
7817
7858
  ```
7818
7859
 
7819
- _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.4.3/src/commands/update.ts)_
7860
+ _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.4.4/src/commands/update.ts)_
7820
7861
 
7821
7862
  ## `sf version`
7822
7863
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.49.0",
3
+ "version": "2.49.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.49.0",
9
+ "version": "2.49.1",
10
10
  "hasInstallScript": true,
11
11
  "license": "BSD-3-Clause",
12
12
  "dependencies": {
@@ -18,16 +18,16 @@
18
18
  "@oclif/plugin-not-found": "3.2.6",
19
19
  "@oclif/plugin-plugins": "5.3.2",
20
20
  "@oclif/plugin-search": "1.2.0",
21
- "@oclif/plugin-update": "4.4.3",
21
+ "@oclif/plugin-update": "4.4.4",
22
22
  "@oclif/plugin-version": "2.2.4",
23
23
  "@oclif/plugin-warn-if-update-available": "3.1.6",
24
24
  "@oclif/plugin-which": "3.2.4",
25
25
  "@salesforce/core": "^8.0.2",
26
26
  "@salesforce/kit": "^3.1.0",
27
- "@salesforce/plugin-apex": "3.2.0",
27
+ "@salesforce/plugin-apex": "3.2.1",
28
28
  "@salesforce/plugin-auth": "3.6.27",
29
29
  "@salesforce/plugin-data": "3.5.2",
30
- "@salesforce/plugin-deploy-retrieve": "3.9.9",
30
+ "@salesforce/plugin-deploy-retrieve": "3.9.11",
31
31
  "@salesforce/plugin-info": "3.3.11",
32
32
  "@salesforce/plugin-limits": "3.3.15",
33
33
  "@salesforce/plugin-marketplace": "1.2.17",
@@ -4376,9 +4376,9 @@
4376
4376
  }
4377
4377
  },
4378
4378
  "node_modules/@oclif/plugin-update": {
4379
- "version": "4.4.3",
4380
- "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.3.tgz",
4381
- "integrity": "sha512-hJyAht6Vhxs4tX1T0Kud1OH8/12agrGZtyS/klLv/H0LKA/XlTRomTD8FYyEXGjHlNvraDxgnVWqGtDCul6i1Q==",
4379
+ "version": "4.4.4",
4380
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.4.tgz",
4381
+ "integrity": "sha512-Qfj4jkDVcxV3u1XuDKFMkXFKgTNO7tJzHVxGMj8VBA2qVSouRzgQ5itdc459T5tT344ixxKwYxdE4GrFGOoB0A==",
4382
4382
  "license": "MIT",
4383
4383
  "dependencies": {
4384
4384
  "@inquirer/select": "^2.3.6",
@@ -5004,9 +5004,9 @@
5004
5004
  }
5005
5005
  },
5006
5006
  "node_modules/@salesforce/plugin-apex": {
5007
- "version": "3.2.0",
5008
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.0.tgz",
5009
- "integrity": "sha512-H/KY/8faIiskb6yGEgMR5zFYRbGJ34zqs890LTMVm+HJgwCmOCM738OXsxOWqYW0MvMj3v6t2v3TaE4jFpv8cQ==",
5007
+ "version": "3.2.1",
5008
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.1.tgz",
5009
+ "integrity": "sha512-lPmc10izyyzaItlXlgCHrI8qk7EthMzvAIFDWhAXlfTDYI1ODsSOoroWv57Dyjl3pXPrnCH39inc3+LtJjCFjg==",
5010
5010
  "license": "BSD-3-Clause",
5011
5011
  "dependencies": {
5012
5012
  "@oclif/core": "^4",
@@ -5239,14 +5239,14 @@
5239
5239
  "license": "MIT"
5240
5240
  },
5241
5241
  "node_modules/@salesforce/plugin-deploy-retrieve": {
5242
- "version": "3.9.9",
5243
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.9.tgz",
5244
- "integrity": "sha512-orDEUFRDf/fwAA2avW2gMFQIydWI1FlZxm9qVDAUbIQ2Oa8ZsNKOac2SIXjv5ppCxpMqnx972LHESQBRuYSQzg==",
5242
+ "version": "3.9.11",
5243
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.11.tgz",
5244
+ "integrity": "sha512-rFhkGfp8scILfEsAlgkzRAs9QJoJkEv3SdmQ6pB5gzefMwz1IEdKjARLnwUBgj0+W+fQjL/w4q+7mgM+a8X8/g==",
5245
5245
  "license": "BSD-3-Clause",
5246
5246
  "dependencies": {
5247
5247
  "@oclif/core": "^4.0.3",
5248
5248
  "@salesforce/apex-node": "^6.2.0",
5249
- "@salesforce/core": "^8.0.1",
5249
+ "@salesforce/core": "^8.0.3",
5250
5250
  "@salesforce/kit": "^3.1.6",
5251
5251
  "@salesforce/plugin-info": "^3.3.10",
5252
5252
  "@salesforce/sf-plugins-core": "^11.1.1",
package/oclif.lock CHANGED
@@ -2047,10 +2047,10 @@
2047
2047
  ansi-escapes "^7.0.0"
2048
2048
  inquirer-autocomplete-standalone "^0.8.1"
2049
2049
 
2050
- "@oclif/plugin-update@4.4.3":
2051
- version "4.4.3"
2052
- resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.3.tgz"
2053
- integrity sha512-hJyAht6Vhxs4tX1T0Kud1OH8/12agrGZtyS/klLv/H0LKA/XlTRomTD8FYyEXGjHlNvraDxgnVWqGtDCul6i1Q==
2050
+ "@oclif/plugin-update@4.4.4":
2051
+ version "4.4.4"
2052
+ resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.4.tgz"
2053
+ integrity sha512-Qfj4jkDVcxV3u1XuDKFMkXFKgTNO7tJzHVxGMj8VBA2qVSouRzgQ5itdc459T5tT344ixxKwYxdE4GrFGOoB0A==
2054
2054
  dependencies:
2055
2055
  "@inquirer/select" "^2.3.6"
2056
2056
  "@oclif/core" "^4"
@@ -2445,10 +2445,10 @@
2445
2445
  jszip "^3.10.1"
2446
2446
  object-treeify "^2"
2447
2447
 
2448
- "@salesforce/plugin-apex@3.2.0":
2449
- version "3.2.0"
2450
- resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.0.tgz"
2451
- integrity sha512-H/KY/8faIiskb6yGEgMR5zFYRbGJ34zqs890LTMVm+HJgwCmOCM738OXsxOWqYW0MvMj3v6t2v3TaE4jFpv8cQ==
2448
+ "@salesforce/plugin-apex@3.2.1":
2449
+ version "3.2.1"
2450
+ resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.1.tgz"
2451
+ integrity sha512-lPmc10izyyzaItlXlgCHrI8qk7EthMzvAIFDWhAXlfTDYI1ODsSOoroWv57Dyjl3pXPrnCH39inc3+LtJjCFjg==
2452
2452
  dependencies:
2453
2453
  "@oclif/core" "^4"
2454
2454
  "@salesforce/apex-node" "^6.1.2"
@@ -2503,14 +2503,14 @@
2503
2503
  csv-stringify "^6.5.0"
2504
2504
  form-data "^4.0.0"
2505
2505
 
2506
- "@salesforce/plugin-deploy-retrieve@3.9.9":
2507
- version "3.9.9"
2508
- resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.9.tgz"
2509
- integrity sha512-orDEUFRDf/fwAA2avW2gMFQIydWI1FlZxm9qVDAUbIQ2Oa8ZsNKOac2SIXjv5ppCxpMqnx972LHESQBRuYSQzg==
2506
+ "@salesforce/plugin-deploy-retrieve@3.9.11":
2507
+ version "3.9.11"
2508
+ resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.11.tgz"
2509
+ integrity sha512-rFhkGfp8scILfEsAlgkzRAs9QJoJkEv3SdmQ6pB5gzefMwz1IEdKjARLnwUBgj0+W+fQjL/w4q+7mgM+a8X8/g==
2510
2510
  dependencies:
2511
2511
  "@oclif/core" "^4.0.3"
2512
2512
  "@salesforce/apex-node" "^6.2.0"
2513
- "@salesforce/core" "^8.0.1"
2513
+ "@salesforce/core" "^8.0.3"
2514
2514
  "@salesforce/kit" "^3.1.6"
2515
2515
  "@salesforce/plugin-info" "^3.3.10"
2516
2516
  "@salesforce/sf-plugins-core" "^11.1.1"
@@ -5337,5 +5337,5 @@
5337
5337
  ]
5338
5338
  }
5339
5339
  },
5340
- "version": "2.49.0"
5340
+ "version": "2.49.1"
5341
5341
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.49.0",
4
+ "version": "2.49.1",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -146,16 +146,16 @@
146
146
  "@oclif/plugin-not-found": "3.2.6",
147
147
  "@oclif/plugin-plugins": "5.3.2",
148
148
  "@oclif/plugin-search": "1.2.0",
149
- "@oclif/plugin-update": "4.4.3",
149
+ "@oclif/plugin-update": "4.4.4",
150
150
  "@oclif/plugin-version": "2.2.4",
151
151
  "@oclif/plugin-warn-if-update-available": "3.1.6",
152
152
  "@oclif/plugin-which": "3.2.4",
153
153
  "@salesforce/core": "^8.0.2",
154
154
  "@salesforce/kit": "^3.1.0",
155
- "@salesforce/plugin-apex": "3.2.0",
155
+ "@salesforce/plugin-apex": "3.2.1",
156
156
  "@salesforce/plugin-auth": "3.6.27",
157
157
  "@salesforce/plugin-data": "3.5.2",
158
- "@salesforce/plugin-deploy-retrieve": "3.9.9",
158
+ "@salesforce/plugin-deploy-retrieve": "3.9.11",
159
159
  "@salesforce/plugin-info": "3.3.11",
160
160
  "@salesforce/plugin-limits": "3.3.15",
161
161
  "@salesforce/plugin-marketplace": "1.2.17",