Skip to content

Commit ee865dd

Browse files
committed
chore(release): 5.9.0 [skip ci]
1 parent be97f98 commit ee865dd

File tree

3 files changed

+40
-18
lines changed

3 files changed

+40
-18
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# [5.9.0](https://github.com/salesforcecli/plugin-org/compare/5.8.5...5.9.0) (2025-06-24)
2+
3+
### Bug Fixes
4+
5+
- add source-sandbox-name to exclusive ([f9f555d](https://github.com/salesforcecli/plugin-org/commit/f9f555d891e17fbbf37c9bea07c4437170d480cf))
6+
- add test for source sandbox with features ([1e3300d](https://github.com/salesforcecli/plugin-org/commit/1e3300debf725c5c11ba664d2058e4852d76a320))
7+
- remove message ([0b45f63](https://github.com/salesforcecli/plugin-org/commit/0b45f63b7da95406259a95a34f9acadad7de76fd))
8+
- remove query and move it to the core ([5fdc05a](https://github.com/salesforcecli/plugin-org/commit/5fdc05a87214a7f447e1354d9e3f6c69f0d25dff))
9+
- update help doc and add SandboxInfo prefix check ([d5aa828](https://github.com/salesforcecli/plugin-org/commit/d5aa82883b752d77f03fcc19b07731a532a28500))
10+
- update schemas and add feature function ([5ee4928](https://github.com/salesforcecli/plugin-org/commit/5ee4928d53e9c471ce65766c4788c7d0f131869a))
11+
- update the features to string[] and schemas ([1040142](https://github.com/salesforcecli/plugin-org/commit/1040142b2f814b6b054bc10ad84a03cd5b09a619))
12+
- update to latest sfdx-core ([5627558](https://github.com/salesforcecli/plugin-org/commit/56275584f1e521e7239fd8cec0be90883f58aafc))
13+
14+
### Features
15+
16+
- add features when cloning sandbox ([635e3a2](https://github.com/salesforcecli/plugin-org/commit/635e3a2a9d373941ceff31b60881259243bc6201))
17+
118
## [5.8.5](https://github.com/salesforcecli/plugin-org/compare/5.8.4...5.8.5) (2025-06-22)
219

320
### Bug Fixes

README.md

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ EXAMPLES
177177
$ sf org create sandbox --source-sandbox-name ExistingSandbox --name NewClonedSandbox --target-org prodOrg \
178178
--alias MyDevSandbox --set-default --wait 30
179179
180+
Clone the existing sandbox with ID "0GQB0000000TVobOAG" and do not wait.
181+
182+
$ sf org create sandbox --source-id 0GQB0000000TVobOAG --name SbxClone --target-org prodOrg --async
183+
180184
FLAG DESCRIPTIONS
181185
-a, --alias=<value> Alias for the sandbox org.
182186
@@ -228,8 +232,9 @@ FLAG DESCRIPTIONS
228232
229233
--source-id=<value> ID of the sandbox org to clone.
230234
231-
The value of --source-id must be an existing sandbox. The existing sandbox, and the new sandbox specified with the
232-
--name flag, must both be associated with the production org (--target-org) that contains the sandbox licenses.
235+
The value of --source-id must be an existing sandbox (SandboxInfo.Id). The existing sandbox, and the new sandbox
236+
specified with the --name flag, must both be associated with the production org (--target-org) that contains the
237+
sandbox licenses.
233238
234239
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
235240
@@ -242,7 +247,7 @@ FLAG DESCRIPTIONS
242247
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
243248
```
244249

245-
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/create/sandbox.ts)_
250+
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/create/sandbox.ts)_
246251

247252
## `sf org create scratch`
248253

@@ -424,7 +429,7 @@ FLAG DESCRIPTIONS
424429
Omit this flag to have Salesforce generate a unique username for your org.
425430
```
426431

427-
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/create/scratch.ts)_
432+
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/create/scratch.ts)_
428433

429434
## `sf org delete sandbox`
430435

@@ -470,7 +475,7 @@ EXAMPLES
470475
$ sf org delete sandbox --target-org my-sandbox --no-prompt
471476
```
472477

473-
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/delete/sandbox.ts)_
478+
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/delete/sandbox.ts)_
474479

475480
## `sf org delete scratch`
476481

@@ -514,7 +519,7 @@ EXAMPLES
514519
$ sf org delete scratch --target-org my-scratch-org --no-prompt
515520
```
516521

517-
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/delete/scratch.ts)_
522+
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/delete/scratch.ts)_
518523

519524
## `sf org disable tracking`
520525

@@ -553,7 +558,7 @@ EXAMPLES
553558
$ sf org disable tracking
554559
```
555560

556-
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/disable/tracking.ts)_
561+
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/disable/tracking.ts)_
557562

558563
## `sf org display`
559564

@@ -598,7 +603,7 @@ EXAMPLES
598603
$ sf org display --target-org TestOrg1 --verbose
599604
```
600605

601-
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/display.ts)_
606+
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/display.ts)_
602607

603608
## `sf org enable tracking`
604609

@@ -640,7 +645,7 @@ EXAMPLES
640645
$ sf org enable tracking
641646
```
642647

643-
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/enable/tracking.ts)_
648+
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/enable/tracking.ts)_
644649

645650
## `sf org list`
646651

@@ -679,7 +684,7 @@ EXAMPLES
679684
$ sf org list --clean
680685
```
681686

682-
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/list.ts)_
687+
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/list.ts)_
683688

684689
## `sf org list metadata`
685690

@@ -746,7 +751,7 @@ FLAG DESCRIPTIONS
746751
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
747752
```
748753

749-
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/list/metadata.ts)_
754+
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/list/metadata.ts)_
750755

751756
## `sf org list metadata-types`
752757

@@ -801,7 +806,7 @@ FLAG DESCRIPTIONS
801806
Override the api version used for api requests made by this command
802807
```
803808

804-
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/list/metadata-types.ts)_
809+
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/list/metadata-types.ts)_
805810

806811
## `sf org open`
807812

@@ -877,7 +882,7 @@ EXAMPLES
877882
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
878883
```
879884

880-
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/open.ts)_
885+
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/open.ts)_
881886

882887
## `sf org open agent`
883888

@@ -928,7 +933,7 @@ EXAMPLES
928933
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
929934
```
930935

931-
_See code: [src/commands/org/open/agent.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/open/agent.ts)_
936+
_See code: [src/commands/org/open/agent.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/open/agent.ts)_
932937

933938
## `sf org refresh sandbox`
934939

@@ -1031,7 +1036,7 @@ FLAG DESCRIPTIONS
10311036
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
10321037
```
10331038

1034-
_See code: [src/commands/org/refresh/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/refresh/sandbox.ts)_
1039+
_See code: [src/commands/org/refresh/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/refresh/sandbox.ts)_
10351040

10361041
## `sf org resume sandbox`
10371042

@@ -1094,7 +1099,7 @@ FLAG DESCRIPTIONS
10941099
returns the job ID. To resume checking the sandbox creation, rerun this command.
10951100
```
10961101

1097-
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/resume/sandbox.ts)_
1102+
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/resume/sandbox.ts)_
10981103

10991104
## `sf org resume scratch`
11001105

@@ -1147,6 +1152,6 @@ FLAG DESCRIPTIONS
11471152
returns the job ID. To resume checking the scratch creation, rerun this command.
11481153
```
11491154

1150-
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.8.5/src/commands/org/resume/scratch.ts)_
1155+
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.9.0/src/commands/org/resume/scratch.ts)_
11511156

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

0 commit comments

Comments
 (0)