Skip to content

Commit 78a7984

Browse files
committed
chore(release): 3.0.6 [skip ci]
1 parent 5ec3d58 commit 78a7984

File tree

3 files changed

+84
-16
lines changed

3 files changed

+84
-16
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## [3.0.6](https://github.com/salesforcecli/plugin-org/compare/3.0.5...3.0.6) (2023-11-21)
2+
13
## [3.0.5](https://github.com/salesforcecli/plugin-org/compare/3.0.4...3.0.5) (2023-11-15)
24

35
### Bug Fixes

README.md

Lines changed: 81 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ the [SandboxNuts](https://github.com/salesforcecli/plugin-org/actions/workflows/
107107
- [`sf org create scratch`](#sf-org-create-scratch)
108108
- [`sf org delete sandbox`](#sf-org-delete-sandbox)
109109
- [`sf org delete scratch`](#sf-org-delete-scratch)
110+
- [`sf org disable tracking`](#sf-org-disable-tracking)
110111
- [`sf org display`](#sf-org-display)
112+
- [`sf org enable tracking`](#sf-org-enable-tracking)
111113
- [`sf org list`](#sf-org-list)
112114
- [`sf org list metadata`](#sf-org-list-metadata)
113115
- [`sf org list metadata-types`](#sf-org-list-metadata-types)
@@ -160,7 +162,7 @@ FLAG DESCRIPTIONS
160162
for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
161163
```
162164

163-
_See code: [src/commands/force/org/clone.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/force/org/clone.ts)_
165+
_See code: [src/commands/force/org/clone.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/clone.ts)_
164166

165167
## `sf force org create`
166168

@@ -208,7 +210,7 @@ EXAMPLES
208210
$ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
209211
```
210212

211-
_See code: [src/commands/force/org/create.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/force/org/create.ts)_
213+
_See code: [src/commands/force/org/create.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/create.ts)_
212214

213215
## `sf force org delete`
214216

@@ -240,7 +242,7 @@ EXAMPLES
240242
$ sf force org delete -u MyOrgAlias -p
241243
```
242244

243-
_See code: [src/commands/force/org/delete.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/force/org/delete.ts)_
245+
_See code: [src/commands/force/org/delete.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/delete.ts)_
244246

245247
## `sf force org status`
246248

@@ -278,7 +280,7 @@ EXAMPLES
278280
$ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
279281
```
280282

281-
_See code: [src/commands/force/org/status.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/force/org/status.ts)_
283+
_See code: [src/commands/force/org/status.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/status.ts)_
282284

283285
## `sf org create sandbox`
284286

@@ -383,7 +385,7 @@ FLAG DESCRIPTIONS
383385
sandbox.
384386
```
385387

386-
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/create/sandbox.ts)_
388+
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/create/sandbox.ts)_
387389

388390
## `sf org create scratch`
389391

@@ -536,7 +538,7 @@ FLAG DESCRIPTIONS
536538
Omit this flag to have Salesforce generate a unique username for your org.
537539
```
538540

539-
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/create/scratch.ts)_
541+
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/create/scratch.ts)_
540542

541543
## `sf org delete sandbox`
542544

@@ -580,7 +582,7 @@ EXAMPLES
580582
$ sf org delete sandbox --target-org my-sandbox --no-prompt
581583
```
582584

583-
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/delete/sandbox.ts)_
585+
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/delete/sandbox.ts)_
584586

585587
## `sf org delete scratch`
586588

@@ -622,7 +624,38 @@ EXAMPLES
622624
$ sf org delete scratch --target-org my-scratch-org --no-prompt
623625
```
624626

625-
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/delete/scratch.ts)_
627+
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/delete/scratch.ts)_
628+
629+
## `sf org disable tracking`
630+
631+
Disable source tracking in local auth file.
632+
633+
```
634+
USAGE
635+
$ sf org disable tracking -o <value> [--json]
636+
637+
FLAGS
638+
-o, --target-org=<value> (required) Username or alias of the target org.
639+
640+
GLOBAL FLAGS
641+
--json Format output as json.
642+
643+
DESCRIPTION
644+
Disable source tracking in local auth file.
645+
646+
This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that no source
647+
tracking operations are executed when working with this org.
648+
649+
EXAMPLES
650+
Disable tracking on an org using an alias
651+
- sf org disable tracking -o someAlias
652+
Disable tracking on an org using a username
653+
- sf org disable tracking -o [email protected]
654+
Disable tracking on your default org
655+
- sf org disable tracking
656+
```
657+
658+
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/disable/tracking.ts)_
626659

627660
## `sf org display`
628661

@@ -665,7 +698,40 @@ EXAMPLES
665698
$ sf org display --target-org TestOrg1 --verbose
666699
```
667700

668-
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/display.ts)_
701+
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/display.ts)_
702+
703+
## `sf org enable tracking`
704+
705+
Enable source tracking in local auth file.
706+
707+
```
708+
USAGE
709+
$ sf org enable tracking -o <value> [--json]
710+
711+
FLAGS
712+
-o, --target-org=<value> (required) Username or alias of the target org.
713+
714+
GLOBAL FLAGS
715+
--json Format output as json.
716+
717+
DESCRIPTION
718+
Enable source tracking in local auth file.
719+
720+
This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that source
721+
tracking operations are executed when working with this org.
722+
723+
This command will throw an error if the org does not support tracking.
724+
725+
EXAMPLES
726+
Enable tracking on an org using an alias
727+
- sf org enable tracking -o someAlias
728+
Enable tracking on an org using a username
729+
- sf org enable tracking -o [email protected]
730+
Enable tracking on your default org
731+
- sf org enable tracking
732+
```
733+
734+
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/enable/tracking.ts)_
669735

670736
## `sf org list`
671737

@@ -703,7 +769,7 @@ EXAMPLES
703769
$ sf org list --clean
704770
```
705771

706-
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/list.ts)_
772+
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list.ts)_
707773

708774
## `sf org list metadata`
709775

@@ -767,7 +833,7 @@ FLAG DESCRIPTIONS
767833
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
768834
```
769835

770-
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/list/metadata.ts)_
836+
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list/metadata.ts)_
771837

772838
## `sf org list metadata-types`
773839

@@ -820,7 +886,7 @@ FLAG DESCRIPTIONS
820886
Override the api version used for api requests made by this command
821887
```
822888

823-
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/list/metadata-types.ts)_
889+
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list/metadata-types.ts)_
824890

825891
## `sf org open`
826892

@@ -885,7 +951,7 @@ EXAMPLES
885951
$ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
886952
```
887953

888-
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/open.ts)_
954+
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/open.ts)_
889955

890956
## `sf org resume sandbox`
891957

@@ -947,7 +1013,7 @@ FLAG DESCRIPTIONS
9471013
returns the job ID. To resume checking the sandbox creation, rerun this command.
9481014
```
9491015

950-
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/resume/sandbox.ts)_
1016+
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/resume/sandbox.ts)_
9511017

9521018
## `sf org resume scratch`
9531019

@@ -993,6 +1059,6 @@ FLAG DESCRIPTIONS
9931059
The job ID is valid for 24 hours after you start the scratch org creation.
9941060
```
9951061

996-
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.5/src/commands/org/resume/scratch.ts)_
1062+
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/resume/scratch.ts)_
9971063

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

0 commit comments

Comments
 (0)