Skip to content

Commit 219956e

Browse files
committed
chore(release): 3.18.0 [skip ci]
1 parent 898141c commit 219956e

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [3.18.0](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.17.7...3.18.0) (2025-01-27)
2+
3+
### Features
4+
5+
- bump sdr and stl to pickup esr decomposition ([#1275](https://github.com/salesforcecli/plugin-deploy-retrieve/issues/1275)) ([898141c](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/898141c85356628494af203b12a681fc74df4f93))
6+
17
## [3.17.7](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.17.6...3.17.7) (2025-01-22)
28

39
### Bug Fixes

README.md

+21-20
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.17.7/src/commands/project/convert/mdapi.ts)_
144+
_See code: [src/commands/project/convert/mdapi.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/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.17.7/src/commands/project/convert/source.ts)_
217+
_See code: [src/commands/project/convert/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/convert/source.ts)_
218218

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

@@ -224,14 +224,15 @@ Enable a behavior of your project source files, and then update your Salesforce
224224
USAGE
225225
$ sf project convert source-behavior -b
226226
decomposeCustomLabelsBeta2|decomposeCustomLabelsBeta|decomposePermissionSetBeta|decomposePermissionSetBeta2|decompos
227-
eSharingRulesBeta|decomposeWorkflowBeta [--json] [--flags-dir <value>] [--dry-run] [--preserve-temp-dir] [-o
228-
<value>]
227+
eSharingRulesBeta|decomposeWorkflowBeta|decomposeExternalServiceRegistrationBeta [--json] [--flags-dir <value>]
228+
[--dry-run] [--preserve-temp-dir] [-o <value>]
229229
230230
FLAGS
231231
-b, --behavior=<option> (required) Behavior to enable; the values correspond to the possible values of the
232232
"sourceBehaviorOption" option in the "sfdx-project.json" file.
233233
<options: decomposeCustomLabelsBeta2|decomposeCustomLabelsBeta|decomposePermissionSetBeta|de
234-
composePermissionSetBeta2|decomposeSharingRulesBeta|decomposeWorkflowBeta>
234+
composePermissionSetBeta2|decomposeSharingRulesBeta|decomposeWorkflowBeta|decomposeExternalS
235+
erviceRegistrationBeta>
235236
-o, --target-org=<value> Username or alias of the target org.
236237
--dry-run Display what the command would do, but don't make any actual changes.
237238
--preserve-temp-dir Don't delete the metadata API format temporary directory that this command creates. Useful
@@ -272,7 +273,7 @@ EXAMPLES
272273
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
273274
```
274275

275-
_See code: [src/commands/project/convert/source-behavior.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/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.18.0/src/commands/project/convert/source-behavior.ts)_
276277

277278
## `sf project delete source`
278279

@@ -412,7 +413,7 @@ FLAG DESCRIPTIONS
412413
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
413414
```
414415

415-
_See code: [src/commands/project/delete/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/delete/source.ts)_
416+
_See code: [src/commands/project/delete/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/delete/source.ts)_
416417

417418
## `sf project delete tracking`
418419

@@ -449,7 +450,7 @@ EXAMPLES
449450
$ sf project delete tracking --target-org my-scratch
450451
```
451452

452-
_See code: [src/commands/project/delete/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/delete/tracking.ts)_
453+
_See code: [src/commands/project/delete/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/delete/tracking.ts)_
453454

454455
## `sf project deploy cancel`
455456

@@ -521,7 +522,7 @@ FLAG DESCRIPTIONS
521522
project deploy report".
522523
```
523524

524-
_See code: [src/commands/project/deploy/cancel.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/deploy/cancel.ts)_
525+
_See code: [src/commands/project/deploy/cancel.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/deploy/cancel.ts)_
525526

526527
## `sf project deploy preview`
527528

@@ -604,7 +605,7 @@ FLAG DESCRIPTIONS
604605
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
605606
```
606607

607-
_See code: [src/commands/project/deploy/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/deploy/preview.ts)_
608+
_See code: [src/commands/project/deploy/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/deploy/preview.ts)_
608609

609610
## `sf project deploy quick`
610611

@@ -688,7 +689,7 @@ FLAG DESCRIPTIONS
688689
deploy report".
689690
```
690691

691-
_See code: [src/commands/project/deploy/quick.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/deploy/quick.ts)_
692+
_See code: [src/commands/project/deploy/quick.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/deploy/quick.ts)_
692693

693694
## `sf project deploy report`
694695

@@ -780,7 +781,7 @@ FLAG DESCRIPTIONS
780781
--coverage-formatters lcov --coverage-formatters clover
781782
```
782783

783-
_See code: [src/commands/project/deploy/report.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/deploy/report.ts)_
784+
_See code: [src/commands/project/deploy/report.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/deploy/report.ts)_
784785

785786
## `sf project deploy resume`
786787

@@ -865,7 +866,7 @@ FLAG DESCRIPTIONS
865866
--coverage-formatters lcov --coverage-formatters clover
866867
```
867868

868-
_See code: [src/commands/project/deploy/resume.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/deploy/resume.ts)_
869+
_See code: [src/commands/project/deploy/resume.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/deploy/resume.ts)_
869870

870871
## `sf project deploy start`
871872

@@ -1101,7 +1102,7 @@ FLAG DESCRIPTIONS
11011102
--coverage-formatters lcov --coverage-formatters clover
11021103
```
11031104

1104-
_See code: [src/commands/project/deploy/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/deploy/start.ts)_
1105+
_See code: [src/commands/project/deploy/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/deploy/start.ts)_
11051106

11061107
## `sf project deploy validate`
11071108

@@ -1274,7 +1275,7 @@ FLAG DESCRIPTIONS
12741275
--coverage-formatters lcov --coverage-formatters clover
12751276
```
12761277

1277-
_See code: [src/commands/project/deploy/validate.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/deploy/validate.ts)_
1278+
_See code: [src/commands/project/deploy/validate.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/deploy/validate.ts)_
12781279

12791280
## `sf project generate manifest`
12801281

@@ -1370,7 +1371,7 @@ EXAMPLES
13701371
$ sf project generate manifest --from-org [email protected] --excluded-metadata StandardValueSet
13711372
```
13721373

1373-
_See code: [src/commands/project/generate/manifest.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/generate/manifest.ts)_
1374+
_See code: [src/commands/project/generate/manifest.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/generate/manifest.ts)_
13741375

13751376
## `sf project list ignored`
13761377

@@ -1412,7 +1413,7 @@ EXAMPLES
14121413
$ sf project list ignored --source-dir package.xml
14131414
```
14141415

1415-
_See code: [src/commands/project/list/ignored.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/list/ignored.ts)_
1416+
_See code: [src/commands/project/list/ignored.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/list/ignored.ts)_
14161417

14171418
## `sf project reset tracking`
14181419

@@ -1461,7 +1462,7 @@ EXAMPLES
14611462
$ sf project reset tracking --revision 30
14621463
```
14631464

1464-
_See code: [src/commands/project/reset/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/reset/tracking.ts)_
1465+
_See code: [src/commands/project/reset/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/reset/tracking.ts)_
14651466

14661467
## `sf project retrieve preview`
14671468

@@ -1515,7 +1516,7 @@ FLAG DESCRIPTIONS
15151516
production orgs.
15161517
```
15171518

1518-
_See code: [src/commands/project/retrieve/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/retrieve/preview.ts)_
1519+
_See code: [src/commands/project/retrieve/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/retrieve/preview.ts)_
15191520

15201521
## `sf project retrieve start`
15211522

@@ -1684,6 +1685,6 @@ FLAG DESCRIPTIONS
16841685
If you specify this flag, don’t specify --metadata or --source-dir.
16851686
```
16861687

1687-
_See code: [src/commands/project/retrieve/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.17.7/src/commands/project/retrieve/start.ts)_
1688+
_See code: [src/commands/project/retrieve/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.0/src/commands/project/retrieve/start.ts)_
16881689

16891690
<!-- commandsstop -->

package.json

+1-1
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.17.7",
4+
"version": "3.18.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)