@salesforce/cli 2.118.19 → 2.119.0
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 +54 -24
- package/npm-shrinkwrap.json +16 -16
- package/oclif.lock +16 -16
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
|
|
|
25
25
|
$ sf COMMAND
|
|
26
26
|
running command...
|
|
27
27
|
$ sf (--version|-v)
|
|
28
|
-
@salesforce/cli/2.
|
|
28
|
+
@salesforce/cli/2.119.0 linux-x64 node-v22.21.1
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -7870,7 +7870,7 @@ FLAG DESCRIPTIONS
|
|
|
7870
7870
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7871
7871
|
```
|
|
7872
7872
|
|
|
7873
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7873
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/convert/mdapi.ts)_
|
|
7874
7874
|
|
|
7875
7875
|
## `sf project convert source`
|
|
7876
7876
|
|
|
@@ -7943,7 +7943,7 @@ FLAG DESCRIPTIONS
|
|
|
7943
7943
|
Override the api version used for api requests made by this command
|
|
7944
7944
|
```
|
|
7945
7945
|
|
|
7946
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7946
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/convert/source.ts)_
|
|
7947
7947
|
|
|
7948
7948
|
## `sf project convert source-behavior`
|
|
7949
7949
|
|
|
@@ -8002,7 +8002,7 @@ EXAMPLES
|
|
|
8002
8002
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
8003
8003
|
```
|
|
8004
8004
|
|
|
8005
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8005
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/convert/source-behavior.ts)_
|
|
8006
8006
|
|
|
8007
8007
|
## `sf project delete source`
|
|
8008
8008
|
|
|
@@ -8117,8 +8117,19 @@ FLAG DESCRIPTIONS
|
|
|
8117
8117
|
|
|
8118
8118
|
- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.
|
|
8119
8119
|
|
|
8120
|
+
- RunRelevantTests (Beta) — Runs only tests that are relevant to the files being deployed. Salesforce automatically
|
|
8121
|
+
identifies the relevant tests based on an analysis of the deployment payload and the payload dependencies. For
|
|
8122
|
+
fine-grained control, you can also annotate test classes so that they always run in certain conditions. See "@IsTest
|
|
8123
|
+
Annotation" in the "Apex Developer Guide"
|
|
8124
|
+
(https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_isTest.htm). Each
|
|
8125
|
+
class and trigger in the deployment package must be covered by the executed tests for a minimum of 75% code
|
|
8126
|
+
coverage. This coverage is computed for each class and triggers individually and is different than the overall
|
|
8127
|
+
coverage percentage.
|
|
8128
|
+
|
|
8120
8129
|
If you don’t specify a test level, the default behavior depends on the contents of your deployment package and
|
|
8121
|
-
target org. For more information, see
|
|
8130
|
+
target org. For more information, see "Running Tests in a Deployment"
|
|
8131
|
+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the
|
|
8132
|
+
"Metadata API Developer Guide".
|
|
8122
8133
|
|
|
8123
8134
|
-m, --metadata=<value>... Metadata components to delete.
|
|
8124
8135
|
|
|
@@ -8144,7 +8155,7 @@ FLAG DESCRIPTIONS
|
|
|
8144
8155
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
8145
8156
|
```
|
|
8146
8157
|
|
|
8147
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8158
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/delete/source.ts)_
|
|
8148
8159
|
|
|
8149
8160
|
## `sf project delete tracking`
|
|
8150
8161
|
|
|
@@ -8181,7 +8192,7 @@ EXAMPLES
|
|
|
8181
8192
|
$ sf project delete tracking --target-org my-scratch
|
|
8182
8193
|
```
|
|
8183
8194
|
|
|
8184
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8195
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/delete/tracking.ts)_
|
|
8185
8196
|
|
|
8186
8197
|
## `sf project deploy cancel`
|
|
8187
8198
|
|
|
@@ -8253,7 +8264,7 @@ FLAG DESCRIPTIONS
|
|
|
8253
8264
|
project deploy report".
|
|
8254
8265
|
```
|
|
8255
8266
|
|
|
8256
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8267
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/cancel.ts)_
|
|
8257
8268
|
|
|
8258
8269
|
## `sf project deploy preview`
|
|
8259
8270
|
|
|
@@ -8336,7 +8347,7 @@ FLAG DESCRIPTIONS
|
|
|
8336
8347
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8337
8348
|
```
|
|
8338
8349
|
|
|
8339
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8350
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/preview.ts)_
|
|
8340
8351
|
|
|
8341
8352
|
## `sf project deploy quick`
|
|
8342
8353
|
|
|
@@ -8429,7 +8440,7 @@ ERROR CODES
|
|
|
8429
8440
|
Canceling (69) The deploy is being canceled.
|
|
8430
8441
|
```
|
|
8431
8442
|
|
|
8432
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8443
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/quick.ts)_
|
|
8433
8444
|
|
|
8434
8445
|
## `sf project deploy report`
|
|
8435
8446
|
|
|
@@ -8521,7 +8532,7 @@ FLAG DESCRIPTIONS
|
|
|
8521
8532
|
--coverage-formatters lcov --coverage-formatters clover
|
|
8522
8533
|
```
|
|
8523
8534
|
|
|
8524
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8535
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/report.ts)_
|
|
8525
8536
|
|
|
8526
8537
|
## `sf project deploy resume`
|
|
8527
8538
|
|
|
@@ -8618,7 +8629,7 @@ ERROR CODES
|
|
|
8618
8629
|
Canceling (69) The deploy is being canceled.
|
|
8619
8630
|
```
|
|
8620
8631
|
|
|
8621
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8632
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/resume.ts)_
|
|
8622
8633
|
|
|
8623
8634
|
## `sf project deploy start`
|
|
8624
8635
|
|
|
@@ -8816,12 +8827,19 @@ FLAG DESCRIPTIONS
|
|
|
8816
8827
|
|
|
8817
8828
|
- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.
|
|
8818
8829
|
|
|
8819
|
-
- RunRelevantTests — Runs only tests that are relevant to the files being deployed.
|
|
8830
|
+
- RunRelevantTests (Beta) — Runs only tests that are relevant to the files being deployed. Salesforce automatically
|
|
8831
|
+
identifies the relevant tests based on an analysis of the deployment payload and the payload dependencies. For
|
|
8832
|
+
fine-grained control, you can also annotate test classes so that they always run in certain conditions. See "@IsTest
|
|
8833
|
+
Annotation" in the "Apex Developer Guide"
|
|
8834
|
+
(https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_isTest.htm). Each
|
|
8835
|
+
class and trigger in the deployment package must be covered by the executed tests for a minimum of 75% code
|
|
8836
|
+
coverage. This coverage is computed for each class and triggers individually and is different than the overall
|
|
8837
|
+
coverage percentage.
|
|
8820
8838
|
|
|
8821
8839
|
If you don’t specify a test level, the default behavior depends on the contents of your deployment package and
|
|
8822
|
-
target org. For more information, see
|
|
8823
|
-
|
|
8824
|
-
|
|
8840
|
+
target org. For more information, see "Running Tests in a Deployment"
|
|
8841
|
+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the
|
|
8842
|
+
"Metadata API Developer Guide".
|
|
8825
8843
|
|
|
8826
8844
|
-r, --ignore-errors Ignore any errors and don’t roll back deployment.
|
|
8827
8845
|
|
|
@@ -8877,7 +8895,7 @@ ERROR CODES
|
|
|
8877
8895
|
Canceling (69) The deploy is being canceled.
|
|
8878
8896
|
```
|
|
8879
8897
|
|
|
8880
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8898
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/start.ts)_
|
|
8881
8899
|
|
|
8882
8900
|
## `sf project deploy validate`
|
|
8883
8901
|
|
|
@@ -9018,7 +9036,19 @@ FLAG DESCRIPTIONS
|
|
|
9018
9036
|
|
|
9019
9037
|
- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.
|
|
9020
9038
|
|
|
9021
|
-
- RunRelevantTests — Runs only tests that are relevant to the files being deployed.
|
|
9039
|
+
- RunRelevantTests (Beta) — Runs only tests that are relevant to the files being deployed. Salesforce automatically
|
|
9040
|
+
identifies the relevant tests based on an analysis of the deployment payload and the payload dependencies. For
|
|
9041
|
+
fine-grained control, you can also annotate test classes so that they always run in certain conditions. See "@IsTest
|
|
9042
|
+
Annotation" in the "Apex Developer Guide"
|
|
9043
|
+
(https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_isTest.htm). Each
|
|
9044
|
+
class and trigger in the deployment package must be covered by the executed tests for a minimum of 75% code
|
|
9045
|
+
coverage. This coverage is computed for each class and triggers individually and is different than the overall
|
|
9046
|
+
coverage percentage.
|
|
9047
|
+
|
|
9048
|
+
If you don’t specify a test level, the default behavior depends on the contents of your deployment package and
|
|
9049
|
+
target org. For more information, see "Running Tests in a Deployment"
|
|
9050
|
+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the
|
|
9051
|
+
"Metadata API Developer Guide".
|
|
9022
9052
|
|
|
9023
9053
|
-t, --tests=<value>... Apex tests to run when --test-level is RunSpecifiedTests.
|
|
9024
9054
|
|
|
@@ -9069,7 +9099,7 @@ ERROR CODES
|
|
|
9069
9099
|
Canceling (69) The deploy is being canceled.
|
|
9070
9100
|
```
|
|
9071
9101
|
|
|
9072
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9102
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/validate.ts)_
|
|
9073
9103
|
|
|
9074
9104
|
## `sf project generate`
|
|
9075
9105
|
|
|
@@ -9270,7 +9300,7 @@ EXAMPLES
|
|
|
9270
9300
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9271
9301
|
```
|
|
9272
9302
|
|
|
9273
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9303
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/generate/manifest.ts)_
|
|
9274
9304
|
|
|
9275
9305
|
## `sf project list ignored`
|
|
9276
9306
|
|
|
@@ -9312,7 +9342,7 @@ EXAMPLES
|
|
|
9312
9342
|
$ sf project list ignored --source-dir package.xml
|
|
9313
9343
|
```
|
|
9314
9344
|
|
|
9315
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9345
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/list/ignored.ts)_
|
|
9316
9346
|
|
|
9317
9347
|
## `sf project reset tracking`
|
|
9318
9348
|
|
|
@@ -9361,7 +9391,7 @@ EXAMPLES
|
|
|
9361
9391
|
$ sf project reset tracking --revision 30
|
|
9362
9392
|
```
|
|
9363
9393
|
|
|
9364
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9394
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/reset/tracking.ts)_
|
|
9365
9395
|
|
|
9366
9396
|
## `sf project retrieve preview`
|
|
9367
9397
|
|
|
@@ -9415,7 +9445,7 @@ FLAG DESCRIPTIONS
|
|
|
9415
9445
|
production orgs.
|
|
9416
9446
|
```
|
|
9417
9447
|
|
|
9418
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9448
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/retrieve/preview.ts)_
|
|
9419
9449
|
|
|
9420
9450
|
## `sf project retrieve start`
|
|
9421
9451
|
|
|
@@ -9596,7 +9626,7 @@ ENVIRONMENT VARIABLES
|
|
|
9596
9626
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9597
9627
|
```
|
|
9598
9628
|
|
|
9599
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9629
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/retrieve/start.ts)_
|
|
9600
9630
|
|
|
9601
9631
|
## `sf schema generate field`
|
|
9602
9632
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.119.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.119.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@salesforce/plugin-api": "1.3.6",
|
|
30
30
|
"@salesforce/plugin-auth": "3.9.26",
|
|
31
31
|
"@salesforce/plugin-data": "4.0.67",
|
|
32
|
-
"@salesforce/plugin-deploy-retrieve": "3.24.
|
|
32
|
+
"@salesforce/plugin-deploy-retrieve": "3.24.3",
|
|
33
33
|
"@salesforce/plugin-info": "3.4.100",
|
|
34
34
|
"@salesforce/plugin-limits": "3.3.74",
|
|
35
35
|
"@salesforce/plugin-marketplace": "1.3.8",
|
|
@@ -5379,9 +5379,9 @@
|
|
|
5379
5379
|
}
|
|
5380
5380
|
},
|
|
5381
5381
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
5382
|
-
"version": "3.24.
|
|
5383
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.
|
|
5384
|
-
"integrity": "sha512-
|
|
5382
|
+
"version": "3.24.3",
|
|
5383
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.3.tgz",
|
|
5384
|
+
"integrity": "sha512-I0HWzkiU9YmQvKyeUJF6RquoKmSp6Bn5rA1vHn4bAvzDssTjPxQUCCMMHC3vE5/nK8te0uWIjkiYoRLbM5YQGg==",
|
|
5385
5385
|
"license": "Apache-2.0",
|
|
5386
5386
|
"dependencies": {
|
|
5387
5387
|
"@inquirer/prompts": "^7.8.3",
|
|
@@ -5392,8 +5392,8 @@
|
|
|
5392
5392
|
"@salesforce/kit": "^3.2.4",
|
|
5393
5393
|
"@salesforce/plugin-info": "^3.4.93",
|
|
5394
5394
|
"@salesforce/sf-plugins-core": "^12.2.5",
|
|
5395
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
5396
|
-
"@salesforce/source-tracking": "^7.
|
|
5395
|
+
"@salesforce/source-deploy-retrieve": "^12.31.1",
|
|
5396
|
+
"@salesforce/source-tracking": "^7.8.0",
|
|
5397
5397
|
"@salesforce/ts-types": "^2.0.12",
|
|
5398
5398
|
"ansis": "^3.17.0",
|
|
5399
5399
|
"terminal-link": "^3.0.0"
|
|
@@ -5859,9 +5859,9 @@
|
|
|
5859
5859
|
}
|
|
5860
5860
|
},
|
|
5861
5861
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
5862
|
-
"version": "12.31.
|
|
5863
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.
|
|
5864
|
-
"integrity": "sha512-
|
|
5862
|
+
"version": "12.31.1",
|
|
5863
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.1.tgz",
|
|
5864
|
+
"integrity": "sha512-Hdv1wuRuDSSI0lKZv9NzHWoFLEhEwBD9lIjIWc9ZriJADGzqgKJDj2sbCdGbDDR7lPn+j7YBPBVTFAS1Psr9oA==",
|
|
5865
5865
|
"license": "Apache-2.0",
|
|
5866
5866
|
"dependencies": {
|
|
5867
5867
|
"@salesforce/core": "^8.23.4",
|
|
@@ -5997,14 +5997,14 @@
|
|
|
5997
5997
|
}
|
|
5998
5998
|
},
|
|
5999
5999
|
"node_modules/@salesforce/source-tracking": {
|
|
6000
|
-
"version": "7.
|
|
6001
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.
|
|
6002
|
-
"integrity": "sha512-
|
|
6000
|
+
"version": "7.8.0",
|
|
6001
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.0.tgz",
|
|
6002
|
+
"integrity": "sha512-5343ikDjNMKBwU0VxIb9GOtWTPshLejhepstxLhxZsezjuPyihcB2ERFV3wB574EMPNqnSahHYOZEBj0Fx5suw==",
|
|
6003
6003
|
"license": "Apache-2.0",
|
|
6004
6004
|
"dependencies": {
|
|
6005
|
-
"@salesforce/core": "^8.23.
|
|
6005
|
+
"@salesforce/core": "^8.23.5",
|
|
6006
6006
|
"@salesforce/kit": "^3.2.4",
|
|
6007
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
6007
|
+
"@salesforce/source-deploy-retrieve": "^12.30.0",
|
|
6008
6008
|
"@salesforce/ts-types": "^2.0.12",
|
|
6009
6009
|
"fast-xml-parser": "^4.5.3",
|
|
6010
6010
|
"graceful-fs": "^4.2.11",
|
package/oclif.lock
CHANGED
|
@@ -2313,10 +2313,10 @@
|
|
|
2313
2313
|
terminal-link "^3.0.0"
|
|
2314
2314
|
zod "^4.2.1"
|
|
2315
2315
|
|
|
2316
|
-
"@salesforce/plugin-deploy-retrieve@3.24.
|
|
2317
|
-
version "3.24.
|
|
2318
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.
|
|
2319
|
-
integrity sha512-
|
|
2316
|
+
"@salesforce/plugin-deploy-retrieve@3.24.3":
|
|
2317
|
+
version "3.24.3"
|
|
2318
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.3.tgz"
|
|
2319
|
+
integrity sha512-I0HWzkiU9YmQvKyeUJF6RquoKmSp6Bn5rA1vHn4bAvzDssTjPxQUCCMMHC3vE5/nK8te0uWIjkiYoRLbM5YQGg==
|
|
2320
2320
|
dependencies:
|
|
2321
2321
|
"@inquirer/prompts" "^7.8.3"
|
|
2322
2322
|
"@oclif/core" "^4.8.0"
|
|
@@ -2326,8 +2326,8 @@
|
|
|
2326
2326
|
"@salesforce/kit" "^3.2.4"
|
|
2327
2327
|
"@salesforce/plugin-info" "^3.4.93"
|
|
2328
2328
|
"@salesforce/sf-plugins-core" "^12.2.5"
|
|
2329
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2330
|
-
"@salesforce/source-tracking" "^7.
|
|
2329
|
+
"@salesforce/source-deploy-retrieve" "^12.31.1"
|
|
2330
|
+
"@salesforce/source-tracking" "^7.8.0"
|
|
2331
2331
|
"@salesforce/ts-types" "^2.0.12"
|
|
2332
2332
|
ansis "^3.17.0"
|
|
2333
2333
|
terminal-link "^3.0.0"
|
|
@@ -2555,10 +2555,10 @@
|
|
|
2555
2555
|
cli-progress "^3.12.0"
|
|
2556
2556
|
terminal-link "^3.0.0"
|
|
2557
2557
|
|
|
2558
|
-
"@salesforce/source-deploy-retrieve@^12.
|
|
2559
|
-
version "12.31.
|
|
2560
|
-
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.
|
|
2561
|
-
integrity sha512-
|
|
2558
|
+
"@salesforce/source-deploy-retrieve@^12.30.0", "@salesforce/source-deploy-retrieve@^12.31.0", "@salesforce/source-deploy-retrieve@^12.31.1":
|
|
2559
|
+
version "12.31.1"
|
|
2560
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.1.tgz"
|
|
2561
|
+
integrity sha512-Hdv1wuRuDSSI0lKZv9NzHWoFLEhEwBD9lIjIWc9ZriJADGzqgKJDj2sbCdGbDDR7lPn+j7YBPBVTFAS1Psr9oA==
|
|
2562
2562
|
dependencies:
|
|
2563
2563
|
"@salesforce/core" "^8.23.4"
|
|
2564
2564
|
"@salesforce/kit" "^3.2.4"
|
|
@@ -2575,14 +2575,14 @@
|
|
|
2575
2575
|
proxy-agent "^6.4.0"
|
|
2576
2576
|
yaml "^2.8.1"
|
|
2577
2577
|
|
|
2578
|
-
"@salesforce/source-tracking@^7.
|
|
2579
|
-
version "7.
|
|
2580
|
-
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.
|
|
2581
|
-
integrity sha512-
|
|
2578
|
+
"@salesforce/source-tracking@^7.8.0":
|
|
2579
|
+
version "7.8.0"
|
|
2580
|
+
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.0.tgz"
|
|
2581
|
+
integrity sha512-5343ikDjNMKBwU0VxIb9GOtWTPshLejhepstxLhxZsezjuPyihcB2ERFV3wB574EMPNqnSahHYOZEBj0Fx5suw==
|
|
2582
2582
|
dependencies:
|
|
2583
|
-
"@salesforce/core" "^8.23.
|
|
2583
|
+
"@salesforce/core" "^8.23.5"
|
|
2584
2584
|
"@salesforce/kit" "^3.2.4"
|
|
2585
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2585
|
+
"@salesforce/source-deploy-retrieve" "^12.30.0"
|
|
2586
2586
|
"@salesforce/ts-types" "^2.0.12"
|
|
2587
2587
|
fast-xml-parser "^4.5.3"
|
|
2588
2588
|
graceful-fs "^4.2.11"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.119.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
"@salesforce/plugin-api": "1.3.6",
|
|
163
163
|
"@salesforce/plugin-auth": "3.9.26",
|
|
164
164
|
"@salesforce/plugin-data": "4.0.67",
|
|
165
|
-
"@salesforce/plugin-deploy-retrieve": "3.24.
|
|
165
|
+
"@salesforce/plugin-deploy-retrieve": "3.24.3",
|
|
166
166
|
"@salesforce/plugin-info": "3.4.100",
|
|
167
167
|
"@salesforce/plugin-limits": "3.3.74",
|
|
168
168
|
"@salesforce/plugin-marketplace": "1.3.8",
|