Skip to content

Commit b687745

Browse files
committed
chore(release): 3.24.3 [skip ci]
1 parent 6042618 commit b687745

File tree

3 files changed

+60
-24
lines changed

3 files changed

+60
-24
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.24.3](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.24.2...3.24.3) (2026-01-07)
2+
3+
### Bug Fixes
4+
5+
- bump deps + add NUTs for consecutive errors W-18203875 ([#1495](https://github.com/salesforcecli/plugin-deploy-retrieve/issues/1495)) ([6042618](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/6042618cfbc4088f5db186d619af032be8471a3c))
6+
17
## [3.24.2](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.24.1...3.24.2) (2025-11-14)
28

39
### Bug Fixes

README.md

Lines changed: 53 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ FLAG DESCRIPTIONS
141141
If you specify this flag, don’t specify --metadata or --source-dir.
142142
```
143143

144-
_See code: [src/commands/project/convert/mdapi.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/convert/mdapi.ts)_
144+
_See code: [src/commands/project/convert/mdapi.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/convert/mdapi.ts)_
145145

146146
## `sf project convert source`
147147

@@ -214,7 +214,7 @@ FLAG DESCRIPTIONS
214214
Override the api version used for api requests made by this command
215215
```
216216

217-
_See code: [src/commands/project/convert/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/convert/source.ts)_
217+
_See code: [src/commands/project/convert/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/convert/source.ts)_
218218

219219
## `sf project convert source-behavior`
220220

@@ -273,7 +273,7 @@ EXAMPLES
273273
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
274274
```
275275

276-
_See code: [src/commands/project/convert/source-behavior.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/convert/source-behavior.ts)_
276+
_See code: [src/commands/project/convert/source-behavior.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/convert/source-behavior.ts)_
277277

278278
## `sf project delete source`
279279

@@ -388,8 +388,19 @@ FLAG DESCRIPTIONS
388388
389389
- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.
390390
391+
- RunRelevantTests (Beta) — Runs only tests that are relevant to the files being deployed. Salesforce automatically
392+
identifies the relevant tests based on an analysis of the deployment payload and the payload dependencies. For
393+
fine-grained control, you can also annotate test classes so that they always run in certain conditions. See "@IsTest
394+
Annotation" in the "Apex Developer Guide"
395+
(https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_isTest.htm). Each
396+
class and trigger in the deployment package must be covered by the executed tests for a minimum of 75% code
397+
coverage. This coverage is computed for each class and triggers individually and is different than the overall
398+
coverage percentage.
399+
391400
If you don’t specify a test level, the default behavior depends on the contents of your deployment package and
392-
target org. For more information, see “Running Tests in a Deployment” in the Metadata API Developer Guide.
401+
target org. For more information, see "Running Tests in a Deployment"
402+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the
403+
"Metadata API Developer Guide".
393404
394405
-m, --metadata=<value>... Metadata components to delete.
395406
@@ -415,7 +426,7 @@ FLAG DESCRIPTIONS
415426
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
416427
```
417428

418-
_See code: [src/commands/project/delete/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/delete/source.ts)_
429+
_See code: [src/commands/project/delete/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/delete/source.ts)_
419430

420431
## `sf project delete tracking`
421432

@@ -452,7 +463,7 @@ EXAMPLES
452463
$ sf project delete tracking --target-org my-scratch
453464
```
454465

455-
_See code: [src/commands/project/delete/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/delete/tracking.ts)_
466+
_See code: [src/commands/project/delete/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/delete/tracking.ts)_
456467

457468
## `sf project deploy cancel`
458469

@@ -524,7 +535,7 @@ FLAG DESCRIPTIONS
524535
project deploy report".
525536
```
526537

527-
_See code: [src/commands/project/deploy/cancel.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/deploy/cancel.ts)_
538+
_See code: [src/commands/project/deploy/cancel.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/cancel.ts)_
528539

529540
## `sf project deploy preview`
530541

@@ -607,7 +618,7 @@ FLAG DESCRIPTIONS
607618
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
608619
```
609620

610-
_See code: [src/commands/project/deploy/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/deploy/preview.ts)_
621+
_See code: [src/commands/project/deploy/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/preview.ts)_
611622

612623
## `sf project deploy quick`
613624

@@ -691,7 +702,7 @@ FLAG DESCRIPTIONS
691702
deploy report".
692703
```
693704

694-
_See code: [src/commands/project/deploy/quick.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/deploy/quick.ts)_
705+
_See code: [src/commands/project/deploy/quick.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/quick.ts)_
695706

696707
## `sf project deploy report`
697708

@@ -783,7 +794,7 @@ FLAG DESCRIPTIONS
783794
--coverage-formatters lcov --coverage-formatters clover
784795
```
785796

786-
_See code: [src/commands/project/deploy/report.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/deploy/report.ts)_
797+
_See code: [src/commands/project/deploy/report.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/report.ts)_
787798

788799
## `sf project deploy resume`
789800

@@ -868,7 +879,7 @@ FLAG DESCRIPTIONS
868879
--coverage-formatters lcov --coverage-formatters clover
869880
```
870881

871-
_See code: [src/commands/project/deploy/resume.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/deploy/resume.ts)_
882+
_See code: [src/commands/project/deploy/resume.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/resume.ts)_
872883

873884
## `sf project deploy start`
874885

@@ -1066,12 +1077,19 @@ FLAG DESCRIPTIONS
10661077
10671078
- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.
10681079
1069-
- RunRelevantTests — Runs only tests that are relevant to the files being deployed.
1080+
- RunRelevantTests (Beta) — Runs only tests that are relevant to the files being deployed. Salesforce automatically
1081+
identifies the relevant tests based on an analysis of the deployment payload and the payload dependencies. For
1082+
fine-grained control, you can also annotate test classes so that they always run in certain conditions. See "@IsTest
1083+
Annotation" in the "Apex Developer Guide"
1084+
(https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_isTest.htm). Each
1085+
class and trigger in the deployment package must be covered by the executed tests for a minimum of 75% code
1086+
coverage. This coverage is computed for each class and triggers individually and is different than the overall
1087+
coverage percentage.
10701088
10711089
If you don’t specify a test level, the default behavior depends on the contents of your deployment package and
1072-
target org. For more information, see [Running Tests in a
1073-
Deployment](https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm)
1074-
in the "Metadata API Developer Guide".
1090+
target org. For more information, see "Running Tests in a Deployment"
1091+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the
1092+
"Metadata API Developer Guide".
10751093
10761094
-r, --ignore-errors Ignore any errors and don’t roll back deployment.
10771095
@@ -1110,7 +1128,7 @@ FLAG DESCRIPTIONS
11101128
--coverage-formatters lcov --coverage-formatters clover
11111129
```
11121130

1113-
_See code: [src/commands/project/deploy/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/deploy/start.ts)_
1131+
_See code: [src/commands/project/deploy/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/start.ts)_
11141132

11151133
## `sf project deploy validate`
11161134

@@ -1251,7 +1269,19 @@ FLAG DESCRIPTIONS
12511269
12521270
- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.
12531271
1254-
- RunRelevantTests — Runs only tests that are relevant to the files being deployed.
1272+
- RunRelevantTests (Beta) — Runs only tests that are relevant to the files being deployed. Salesforce automatically
1273+
identifies the relevant tests based on an analysis of the deployment payload and the payload dependencies. For
1274+
fine-grained control, you can also annotate test classes so that they always run in certain conditions. See "@IsTest
1275+
Annotation" in the "Apex Developer Guide"
1276+
(https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_annotation_isTest.htm). Each
1277+
class and trigger in the deployment package must be covered by the executed tests for a minimum of 75% code
1278+
coverage. This coverage is computed for each class and triggers individually and is different than the overall
1279+
coverage percentage.
1280+
1281+
If you don’t specify a test level, the default behavior depends on the contents of your deployment package and
1282+
target org. For more information, see "Running Tests in a Deployment"
1283+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the
1284+
"Metadata API Developer Guide".
12551285
12561286
-t, --tests=<value>... Apex tests to run when --test-level is RunSpecifiedTests.
12571287
@@ -1285,7 +1315,7 @@ FLAG DESCRIPTIONS
12851315
--coverage-formatters lcov --coverage-formatters clover
12861316
```
12871317

1288-
_See code: [src/commands/project/deploy/validate.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/deploy/validate.ts)_
1318+
_See code: [src/commands/project/deploy/validate.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/deploy/validate.ts)_
12891319

12901320
## `sf project generate manifest`
12911321

@@ -1381,7 +1411,7 @@ EXAMPLES
13811411
$ sf project generate manifest --from-org [email protected] --excluded-metadata StandardValueSet
13821412
```
13831413

1384-
_See code: [src/commands/project/generate/manifest.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/generate/manifest.ts)_
1414+
_See code: [src/commands/project/generate/manifest.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/generate/manifest.ts)_
13851415

13861416
## `sf project list ignored`
13871417

@@ -1423,7 +1453,7 @@ EXAMPLES
14231453
$ sf project list ignored --source-dir package.xml
14241454
```
14251455

1426-
_See code: [src/commands/project/list/ignored.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/list/ignored.ts)_
1456+
_See code: [src/commands/project/list/ignored.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/list/ignored.ts)_
14271457

14281458
## `sf project reset tracking`
14291459

@@ -1472,7 +1502,7 @@ EXAMPLES
14721502
$ sf project reset tracking --revision 30
14731503
```
14741504

1475-
_See code: [src/commands/project/reset/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/reset/tracking.ts)_
1505+
_See code: [src/commands/project/reset/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/reset/tracking.ts)_
14761506

14771507
## `sf project retrieve preview`
14781508

@@ -1526,7 +1556,7 @@ FLAG DESCRIPTIONS
15261556
production orgs.
15271557
```
15281558

1529-
_See code: [src/commands/project/retrieve/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/retrieve/preview.ts)_
1559+
_See code: [src/commands/project/retrieve/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/retrieve/preview.ts)_
15301560

15311561
## `sf project retrieve start`
15321562

@@ -1699,6 +1729,6 @@ FLAG DESCRIPTIONS
16991729
If you specify this flag, don’t specify --metadata or --source-dir.
17001730
```
17011731

1702-
_See code: [src/commands/project/retrieve/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.2/src/commands/project/retrieve/start.ts)_
1732+
_See code: [src/commands/project/retrieve/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.3/src/commands/project/retrieve/start.ts)_
17031733

17041734
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-deploy-retrieve",
33
"description": "deploy and retrieve commands for sf",
4-
"version": "3.24.2",
4+
"version": "3.24.3",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)