Skip to content

Commit 59302ea

Browse files
committed
chore(release): 3.18.3 [skip ci]
1 parent 95ab136 commit 59302ea

File tree

3 files changed

+41
-19
lines changed

3 files changed

+41
-19
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,37 @@
1+
## [3.18.3](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.18.2...3.18.3) (2025-02-12)
2+
3+
## [3.18.1-manifest.0](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.18.0...3.18.1-manifest.0) (2025-02-06)
4+
5+
### Bug Fixes
6+
7+
- add back the exclusive with source-dir ([3d1b89d](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/3d1b89d0dd096301e0670a541765d8a9fcfe85e1))
8+
- adds tests for generate manifest ([d3983cf](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/d3983cfffc6ef88934a6d11272e83cbac66838bc))
9+
- allow source-dir flag with metadata and excluded metadata ([a64eff0](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/a64eff044e52121d6f162fab62867c287b375a75))
10+
- fix flag config ([d79dbd5](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/d79dbd559cb352082463beb5a272543bda3ead05))
11+
- remove manifest:generate flag validation ([4b706f8](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/4b706f8868d8107b315875ff4e908ed231db096f))
12+
113
## [3.18.2](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.18.1...3.18.2) (2025-02-11)
214

315
### Bug Fixes
416

517
- support retrieving agent pseudo type ([ac8dfa3](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/ac8dfa3606c1ccd66a2bc625cc82555e133a0770))
618

7-
## [3.18.1](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.18.0...3.18.1) (2025-02-10)
19+
## [3.18.1](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.18.1-manifest.0...3.18.1) (2025-02-10)
820

921
### Bug Fixes
1022

1123
- always render apex test reports ([#1284](https://github.com/salesforcecli/plugin-deploy-retrieve/issues/1284)) ([46cfcd3](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/46cfcd36c66eeb15ef82d6ba309530380ae85ab5))
1224

25+
## [3.18.1-manifest.0](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.18.0...3.18.1-manifest.0) (2025-02-06)
26+
27+
### Bug Fixes
28+
29+
- add back the exclusive with source-dir ([3d1b89d](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/3d1b89d0dd096301e0670a541765d8a9fcfe85e1))
30+
- adds tests for generate manifest ([d3983cf](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/d3983cfffc6ef88934a6d11272e83cbac66838bc))
31+
- allow source-dir flag with metadata and excluded metadata ([a64eff0](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/a64eff044e52121d6f162fab62867c287b375a75))
32+
- fix flag config ([d79dbd5](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/d79dbd559cb352082463beb5a272543bda3ead05))
33+
- remove manifest:generate flag validation ([4b706f8](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/4b706f8868d8107b315875ff4e908ed231db096f))
34+
1335
# [3.18.0](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/3.17.7...3.18.0) (2025-01-27)
1436

1537
### Features

README.md

Lines changed: 17 additions & 17 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.18.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.18.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.18.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.18.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.18.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.18.3/src/commands/project/convert/source-behavior.ts)_
277277

278278
## `sf project delete source`
279279

@@ -413,7 +413,7 @@ FLAG DESCRIPTIONS
413413
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
414414
```
415415

416-
_See code: [src/commands/project/delete/source.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/delete/source.ts)_
417417

418418
## `sf project delete tracking`
419419

@@ -450,7 +450,7 @@ EXAMPLES
450450
$ sf project delete tracking --target-org my-scratch
451451
```
452452

453-
_See code: [src/commands/project/delete/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/delete/tracking.ts)_
454454

455455
## `sf project deploy cancel`
456456

@@ -522,7 +522,7 @@ FLAG DESCRIPTIONS
522522
project deploy report".
523523
```
524524

525-
_See code: [src/commands/project/deploy/cancel.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/deploy/cancel.ts)_
526526

527527
## `sf project deploy preview`
528528

@@ -605,7 +605,7 @@ FLAG DESCRIPTIONS
605605
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
606606
```
607607

608-
_See code: [src/commands/project/deploy/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/deploy/preview.ts)_
609609

610610
## `sf project deploy quick`
611611

@@ -689,7 +689,7 @@ FLAG DESCRIPTIONS
689689
deploy report".
690690
```
691691

692-
_See code: [src/commands/project/deploy/quick.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/deploy/quick.ts)_
693693

694694
## `sf project deploy report`
695695

@@ -781,7 +781,7 @@ FLAG DESCRIPTIONS
781781
--coverage-formatters lcov --coverage-formatters clover
782782
```
783783

784-
_See code: [src/commands/project/deploy/report.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/deploy/report.ts)_
785785

786786
## `sf project deploy resume`
787787

@@ -866,7 +866,7 @@ FLAG DESCRIPTIONS
866866
--coverage-formatters lcov --coverage-formatters clover
867867
```
868868

869-
_See code: [src/commands/project/deploy/resume.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/deploy/resume.ts)_
870870

871871
## `sf project deploy start`
872872

@@ -1102,7 +1102,7 @@ FLAG DESCRIPTIONS
11021102
--coverage-formatters lcov --coverage-formatters clover
11031103
```
11041104

1105-
_See code: [src/commands/project/deploy/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/deploy/start.ts)_
11061106

11071107
## `sf project deploy validate`
11081108

@@ -1275,7 +1275,7 @@ FLAG DESCRIPTIONS
12751275
--coverage-formatters lcov --coverage-formatters clover
12761276
```
12771277

1278-
_See code: [src/commands/project/deploy/validate.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/deploy/validate.ts)_
12791279

12801280
## `sf project generate manifest`
12811281

@@ -1371,7 +1371,7 @@ EXAMPLES
13711371
$ sf project generate manifest --from-org [email protected] --excluded-metadata StandardValueSet
13721372
```
13731373

1374-
_See code: [src/commands/project/generate/manifest.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/generate/manifest.ts)_
13751375

13761376
## `sf project list ignored`
13771377

@@ -1413,7 +1413,7 @@ EXAMPLES
14131413
$ sf project list ignored --source-dir package.xml
14141414
```
14151415

1416-
_See code: [src/commands/project/list/ignored.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/list/ignored.ts)_
14171417

14181418
## `sf project reset tracking`
14191419

@@ -1462,7 +1462,7 @@ EXAMPLES
14621462
$ sf project reset tracking --revision 30
14631463
```
14641464

1465-
_See code: [src/commands/project/reset/tracking.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/reset/tracking.ts)_
14661466

14671467
## `sf project retrieve preview`
14681468

@@ -1516,7 +1516,7 @@ FLAG DESCRIPTIONS
15161516
production orgs.
15171517
```
15181518

1519-
_See code: [src/commands/project/retrieve/preview.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/retrieve/preview.ts)_
15201520

15211521
## `sf project retrieve start`
15221522

@@ -1685,6 +1685,6 @@ FLAG DESCRIPTIONS
16851685
If you specify this flag, don’t specify --metadata or --source-dir.
16861686
```
16871687

1688-
_See code: [src/commands/project/retrieve/start.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.18.2/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.3/src/commands/project/retrieve/start.ts)_
16891689

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

0 commit comments

Comments
 (0)