Skip to content

Commit bcf09b0

Browse files
committed
chore(release): 3.2.2 [skip ci]
1 parent b68e48d commit bcf09b0

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.2.2](https://github.com/salesforcecli/plugin-org/compare/3.2.1...3.2.2) (2024-01-09)
2+
3+
### Bug Fixes
4+
5+
- use new inquirer via sf-plugins-core ([#917](https://github.com/salesforcecli/plugin-org/issues/917)) ([b68e48d](https://github.com/salesforcecli/plugin-org/commit/b68e48d242ae48581e44f5e70e790cee38e623d5))
6+
17
## [3.2.1](https://github.com/salesforcecli/plugin-org/compare/3.2.0...3.2.1) (2024-01-07)
28

39
### Bug Fixes

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ FLAG DESCRIPTIONS
216216
sandbox.
217217
```
218218

219-
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/create/sandbox.ts)_
219+
_See code: [lib/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/create/sandbox.ts)_
220220

221221
## `sf org create scratch`
222222

@@ -369,7 +369,7 @@ FLAG DESCRIPTIONS
369369
Omit this flag to have Salesforce generate a unique username for your org.
370370
```
371371

372-
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/create/scratch.ts)_
372+
_See code: [lib/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/create/scratch.ts)_
373373

374374
## `sf org delete sandbox`
375375

@@ -413,7 +413,7 @@ EXAMPLES
413413
$ sf org delete sandbox --target-org my-sandbox --no-prompt
414414
```
415415

416-
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/delete/sandbox.ts)_
416+
_See code: [lib/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/delete/sandbox.ts)_
417417

418418
## `sf org delete scratch`
419419

@@ -455,7 +455,7 @@ EXAMPLES
455455
$ sf org delete scratch --target-org my-scratch-org --no-prompt
456456
```
457457

458-
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/delete/scratch.ts)_
458+
_See code: [lib/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/delete/scratch.ts)_
459459

460460
## `sf org disable tracking`
461461

@@ -493,7 +493,7 @@ EXAMPLES
493493
$ sf org disable tracking
494494
```
495495

496-
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/disable/tracking.ts)_
496+
_See code: [lib/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/disable/tracking.ts)_
497497

498498
## `sf org display`
499499

@@ -537,7 +537,7 @@ EXAMPLES
537537
$ sf org display --target-org TestOrg1 --verbose
538538
```
539539

540-
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/display.ts)_
540+
_See code: [lib/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/display.ts)_
541541

542542
## `sf org enable tracking`
543543

@@ -578,7 +578,7 @@ EXAMPLES
578578
$ sf org enable tracking
579579
```
580580

581-
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/enable/tracking.ts)_
581+
_See code: [lib/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/enable/tracking.ts)_
582582

583583
## `sf org list`
584584

@@ -616,7 +616,7 @@ EXAMPLES
616616
$ sf org list --clean
617617
```
618618

619-
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/list.ts)_
619+
_See code: [lib/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/list.ts)_
620620

621621
## `sf org list metadata`
622622

@@ -681,7 +681,7 @@ FLAG DESCRIPTIONS
681681
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
682682
```
683683

684-
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/list/metadata.ts)_
684+
_See code: [lib/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/list/metadata.ts)_
685685

686686
## `sf org list metadata-types`
687687

@@ -735,7 +735,7 @@ FLAG DESCRIPTIONS
735735
Override the api version used for api requests made by this command
736736
```
737737

738-
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/list/metadata-types.ts)_
738+
_See code: [lib/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/list/metadata-types.ts)_
739739

740740
## `sf org open`
741741

@@ -801,7 +801,7 @@ EXAMPLES
801801
$ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
802802
```
803803

804-
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/open.ts)_
804+
_See code: [lib/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/open.ts)_
805805

806806
## `sf org resume sandbox`
807807

@@ -816,7 +816,7 @@ FLAGS
816816
-l, --use-most-recent Use the most recent sandbox create request.
817817
-n, --name=<value> Name of the sandbox org.
818818
-o, --target-org=<value> Username or alias of the production org that contains the sandbox license.
819-
-w, --wait=<minutes> Number of minutes to wait for the sandbox org to be ready.
819+
-w, --wait=<minutes> [default: 0 minutes] Number of minutes to wait for the sandbox org to be ready.
820820
821821
GLOBAL FLAGS
822822
--json Format output as json.
@@ -863,7 +863,7 @@ FLAG DESCRIPTIONS
863863
returns the job ID. To resume checking the sandbox creation, rerun this command.
864864
```
865865

866-
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/resume/sandbox.ts)_
866+
_See code: [lib/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/resume/sandbox.ts)_
867867

868868
## `sf org resume scratch`
869869

@@ -909,6 +909,6 @@ FLAG DESCRIPTIONS
909909
The job ID is valid for 24 hours after you start the scratch org creation.
910910
```
911911

912-
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.1/src/commands/org/resume/scratch.ts)_
912+
_See code: [lib/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.2.2/lib/commands/org/resume/scratch.ts)_
913913

914914
<!-- 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-org",
33
"description": "Commands to interact with Salesforce orgs",
4-
"version": "3.2.1",
4+
"version": "3.2.2",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)