Skip to content

Commit 1e94ef5

Browse files
committed
chore(release): 3.0.8 [skip ci]
1 parent c58ae37 commit 1e94ef5

File tree

3 files changed

+42
-27
lines changed

3 files changed

+42
-27
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.0.8](https://github.com/salesforcecli/plugin-org/compare/3.0.7...3.0.8) (2023-11-26)
2+
3+
### Bug Fixes
4+
5+
- **deps:** bump @salesforce/sf-plugins-core from 5.0.1 to 5.0.3 ([b17a50a](https://github.com/salesforcecli/plugin-org/commit/b17a50a30240c2f97f0c4255693805a3a7792c92))
6+
17
## [3.0.7](https://github.com/salesforcecli/plugin-org/compare/3.0.6...3.0.7) (2023-11-21)
28

39
### Bug Fixes

README.md

Lines changed: 35 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ USAGE
129129
FLAGS
130130
-a, --setalias=<value> Alias for the cloned org.
131131
-f, --definitionfile=<value> Path to the sandbox definition file.
132-
-o, --target-org=<value> (required) Username or alias of the target org.
132+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
133+
configuration variable is already set.
133134
-s, --setdefaultusername Set the cloned org as your default.
134135
-t, --type=<option> (required) Type of org to create.
135136
<options: sandbox>
@@ -162,7 +163,7 @@ FLAG DESCRIPTIONS
162163
for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
163164
```
164165

165-
_See code: [src/commands/force/org/clone.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/clone.ts)_
166+
_See code: [src/commands/force/org/clone.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/force/org/clone.ts)_
166167

167168
## `sf force org create`
168169

@@ -184,7 +185,8 @@ FLAGS
184185
-s, --setdefaultusername Set the created org as the default username.
185186
-t, --type=<option> [default: scratch] Type of org to create.
186187
<options: scratch|sandbox>
187-
-v, --target-dev-hub=<value> Username or alias of the Dev Hub org.
188+
-v, --target-dev-hub=<value> Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration
189+
variable is already set.
188190
-w, --wait=<value> [default: 6 minutes] Streaming client socket timeout (in minutes).
189191
--api-version=<value> Override the api version used for api requests made by this command
190192
@@ -210,7 +212,7 @@ EXAMPLES
210212
$ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
211213
```
212214

213-
_See code: [src/commands/force/org/create.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/create.ts)_
215+
_See code: [src/commands/force/org/create.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/force/org/create.ts)_
214216

215217
## `sf force org delete`
216218

@@ -242,7 +244,7 @@ EXAMPLES
242244
$ sf force org delete -u MyOrgAlias -p
243245
```
244246

245-
_See code: [src/commands/force/org/delete.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/delete.ts)_
247+
_See code: [src/commands/force/org/delete.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/force/org/delete.ts)_
246248

247249
## `sf force org status`
248250

@@ -255,7 +257,8 @@ USAGE
255257
FLAGS
256258
-a, --setalias=<value> Alias for the created or cloned org.
257259
-n, --sandboxname=<value> (required) Name of the sandbox org to check status for.
258-
-o, --target-org=<value> (required) Username or alias of the target org.
260+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
261+
configuration variable is already set.
259262
-s, --setdefaultusername Set the created or cloned org as your default.
260263
-w, --wait=<value> [default: 6 minutes] Number of minutes to wait while polling for status.
261264
--api-version=<value> Override the api version used for api requests made by this command
@@ -280,7 +283,7 @@ EXAMPLES
280283
$ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
281284
```
282285

283-
_See code: [src/commands/force/org/status.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/status.ts)_
286+
_See code: [src/commands/force/org/status.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/force/org/status.ts)_
284287

285288
## `sf org create sandbox`
286289

@@ -385,7 +388,7 @@ FLAG DESCRIPTIONS
385388
sandbox.
386389
```
387390

388-
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/create/sandbox.ts)_
391+
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/create/sandbox.ts)_
389392

390393
## `sf org create scratch`
391394

@@ -538,7 +541,7 @@ FLAG DESCRIPTIONS
538541
Omit this flag to have Salesforce generate a unique username for your org.
539542
```
540543

541-
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/create/scratch.ts)_
544+
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/create/scratch.ts)_
542545

543546
## `sf org delete sandbox`
544547

@@ -582,7 +585,7 @@ EXAMPLES
582585
$ sf org delete sandbox --target-org my-sandbox --no-prompt
583586
```
584587

585-
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/delete/sandbox.ts)_
588+
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/delete/sandbox.ts)_
586589

587590
## `sf org delete scratch`
588591

@@ -624,7 +627,7 @@ EXAMPLES
624627
$ sf org delete scratch --target-org my-scratch-org --no-prompt
625628
```
626629

627-
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/delete/scratch.ts)_
630+
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/delete/scratch.ts)_
628631

629632
## `sf org disable tracking`
630633

@@ -635,7 +638,8 @@ USAGE
635638
$ sf org disable tracking -o <value> [--json]
636639
637640
FLAGS
638-
-o, --target-org=<value> (required) Username or alias of the target org.
641+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
642+
configuration variable is already set.
639643
640644
GLOBAL FLAGS
641645
--json Format output as json.
@@ -661,7 +665,7 @@ EXAMPLES
661665
$ sf org disable tracking
662666
```
663667

664-
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/disable/tracking.ts)_
668+
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/disable/tracking.ts)_
665669

666670
## `sf org display`
667671

@@ -672,7 +676,8 @@ USAGE
672676
$ sf org display -o <value> [--json] [--api-version <value>] [--verbose]
673677
674678
FLAGS
675-
-o, --target-org=<value> (required) Username or alias of the target org.
679+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
680+
configuration variable is already set.
676681
--api-version=<value> Override the api version used for api requests made by this command
677682
--verbose Display the sfdxAuthUrl property.
678683
@@ -704,7 +709,7 @@ EXAMPLES
704709
$ sf org display --target-org TestOrg1 --verbose
705710
```
706711

707-
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/display.ts)_
712+
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/display.ts)_
708713

709714
## `sf org enable tracking`
710715

@@ -715,7 +720,8 @@ USAGE
715720
$ sf org enable tracking -o <value> [--json]
716721
717722
FLAGS
718-
-o, --target-org=<value> (required) Username or alias of the target org.
723+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
724+
configuration variable is already set.
719725
720726
GLOBAL FLAGS
721727
--json Format output as json.
@@ -744,7 +750,7 @@ EXAMPLES
744750
$ sf org enable tracking
745751
```
746752

747-
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/enable/tracking.ts)_
753+
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/enable/tracking.ts)_
748754

749755
## `sf org list`
750756

@@ -782,7 +788,7 @@ EXAMPLES
782788
$ sf org list --clean
783789
```
784790

785-
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/list.ts)_
791+
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/list.ts)_
786792

787793
## `sf org list metadata`
788794

@@ -796,7 +802,8 @@ FLAGS
796802
-f, --output-file=<value> Pathname of the file in which to write the results.
797803
-m, --metadata-type=<value> (required) Metadata type to be retrieved, such as CustomObject; metadata type names are
798804
case-sensitive.
799-
-o, --target-org=<value> (required) Username or alias of the target org.
805+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
806+
configuration variable is already set.
800807
--api-version=<value> API version to use; default is the most recent API version.
801808
--folder=<value> Folder associated with the component; required for components that use folders; folder
802809
names are case-sensitive.
@@ -846,7 +853,7 @@ FLAG DESCRIPTIONS
846853
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
847854
```
848855

849-
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/list/metadata.ts)_
856+
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/list/metadata.ts)_
850857

851858
## `sf org list metadata-types`
852859

@@ -858,7 +865,8 @@ USAGE
858865
859866
FLAGS
860867
-f, --output-file=<value> Pathname of the file in which to write the results.
861-
-o, --target-org=<value> (required) Username or alias of the target org.
868+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
869+
configuration variable is already set.
862870
--api-version=<value> API version to use; default is the most recent API version.
863871
864872
GLOBAL FLAGS
@@ -899,7 +907,7 @@ FLAG DESCRIPTIONS
899907
Override the api version used for api requests made by this command
900908
```
901909

902-
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/list/metadata-types.ts)_
910+
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/list/metadata-types.ts)_
903911

904912
## `sf org open`
905913

@@ -914,7 +922,8 @@ FLAGS
914922
-b, --browser=<option> Browser where the org opens.
915923
<options: chrome|edge|firefox>
916924
-f, --source-file=<value> Path to an ApexPage or FlexiPage to open in Lightning App Builder.
917-
-o, --target-org=<value> (required) Username or alias of the target org.
925+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
926+
configuration variable is already set.
918927
-p, --path=<value> Navigation URL path to open a specific page.
919928
-r, --url-only Display navigation URL, but don’t launch browser.
920929
--api-version=<value> Override the api version used for api requests made by this command
@@ -964,7 +973,7 @@ EXAMPLES
964973
$ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
965974
```
966975

967-
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/open.ts)_
976+
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/open.ts)_
968977

969978
## `sf org resume sandbox`
970979

@@ -1026,7 +1035,7 @@ FLAG DESCRIPTIONS
10261035
returns the job ID. To resume checking the sandbox creation, rerun this command.
10271036
```
10281037

1029-
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/resume/sandbox.ts)_
1038+
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/resume/sandbox.ts)_
10301039

10311040
## `sf org resume scratch`
10321041

@@ -1072,6 +1081,6 @@ FLAG DESCRIPTIONS
10721081
The job ID is valid for 24 hours after you start the scratch org creation.
10731082
```
10741083

1075-
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/resume/scratch.ts)_
1084+
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/resume/scratch.ts)_
10761085

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

0 commit comments

Comments
 (0)