Skip to content

Commit aad463a

Browse files
committed
chore(release): 5.11.0 [skip ci]
1 parent 39484de commit aad463a

3 files changed

Lines changed: 168 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [5.11.0](https://github.com/salesforcecli/plugin-org/compare/5.10.14...5.11.0) (2026-05-18)
2+
3+
### Bug Fixes
4+
5+
- Apply suggestions from code review ([3a6422d](https://github.com/salesforcecli/plugin-org/commit/3a6422d3c309540cdfc30b3708a1dda87638589b))
6+
- few more edits ([fa484a5](https://github.com/salesforcecli/plugin-org/commit/fa484a5dfc241b2d8e5d1ee97e9092e44f2c8f51))
7+
8+
### Features
9+
10+
- add show-access-token command ([807853e](https://github.com/salesforcecli/plugin-org/commit/807853edf36de2b519082749c0c5c71e9a471930))
11+
- add show-sfdx-auth-url command ([9b2c933](https://github.com/salesforcecli/plugin-org/commit/9b2c9330ab105374dfe4db8ea68338a2fcb67876))
12+
- show-user-password command ([f635aa6](https://github.com/salesforcecli/plugin-org/commit/f635aa61212d585c11f060b671f36127f4128a13))
13+
114
## [5.10.14](https://github.com/salesforcecli/plugin-org/compare/5.10.13...5.10.14) (2026-05-17)
215

316
### Bug Fixes

README.md

Lines changed: 154 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ the [SandboxNuts](https://github.com/salesforcecli/plugin-org/actions/workflows/
9999

100100
<!-- commands -->
101101

102+
- [`sf org auth show-access-token`](#sf-org-auth-show-access-token)
103+
- [`sf org auth show-sfdx-auth-url`](#sf-org-auth-show-sfdx-auth-url)
104+
- [`sf org auth show-user-password`](#sf-org-auth-show-user-password)
102105
- [`sf org create agent-user`](#sf-org-create-agent-user)
103106
- [`sf org create sandbox`](#sf-org-create-sandbox)
104107
- [`sf org create scratch`](#sf-org-create-scratch)
@@ -117,6 +120,140 @@ the [SandboxNuts](https://github.com/salesforcecli/plugin-org/actions/workflows/
117120
- [`sf org resume sandbox`](#sf-org-resume-sandbox)
118121
- [`sf org resume scratch`](#sf-org-resume-scratch)
119122

123+
## `sf org auth show-access-token`
124+
125+
Show the current access token for an org.
126+
127+
```
128+
USAGE
129+
$ sf org auth show-access-token -o <value> [--json] [--flags-dir <value>] [-p]
130+
131+
FLAGS
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.
134+
-p, --no-prompt Skip the security warning and reveal the access token without confirmation.
135+
136+
GLOBAL FLAGS
137+
--flags-dir=<value> Import flag values from a directory.
138+
--json Format output as json.
139+
140+
DESCRIPTION
141+
Show the current access token for an org.
142+
143+
Because access tokens are sensitive credentials that grant full access to an org, this command prompts for
144+
confirmation before revealing the token. Skip confirmation by specifying either the --no-prompt or --json flag.
145+
146+
EXAMPLES
147+
Show the access token for the default org:
148+
149+
$ sf org auth show-access-token
150+
151+
Show the access token for an org with alias "my-org":
152+
153+
$ sf org auth show-access-token --target-org my-org
154+
155+
Show the access token without the confirmation prompt:
156+
157+
$ sf org auth show-access-token --target-org my-org --no-prompt
158+
159+
Get the access token as JSON for use in scripts:
160+
161+
$ sf org auth show-access-token --target-org my-org --json
162+
```
163+
164+
_See code: [src/commands/org/auth/show-access-token.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-access-token.ts)_
165+
166+
## `sf org auth show-sfdx-auth-url`
167+
168+
Show the SFDX Auth URL for an org.
169+
170+
```
171+
USAGE
172+
$ sf org auth show-sfdx-auth-url -o <value> [--json] [--flags-dir <value>] [-p]
173+
174+
FLAGS
175+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
176+
configuration variable is already set.
177+
-p, --no-prompt Skip the security warning and reveal the SFDX Auth URL without confirmation.
178+
179+
GLOBAL FLAGS
180+
--flags-dir=<value> Import flag values from a directory.
181+
--json Format output as json.
182+
183+
DESCRIPTION
184+
Show the SFDX Auth URL for an org.
185+
186+
Shows the SFDX Auth URL for an org. This URL is only available for orgs authenticated via a web-based OAuth flow. This
187+
command prompts for confirmation before revealing it. Skip confirmation by specifying either the --no-prompt or --json
188+
flag.
189+
190+
EXAMPLES
191+
Show the SFDX Auth URL for the default org:
192+
193+
$ sf org auth show-sfdx-auth-url
194+
195+
Show the SFDX Auth URL for an org with alias "my-org":
196+
197+
$ sf org auth show-sfdx-auth-url --target-org my-org
198+
199+
Show the SFDX Auth URL without the confirmation prompt:
200+
201+
$ sf org auth show-sfdx-auth-url --target-org my-org --no-prompt
202+
203+
Get the SFDX Auth URL as JSON for use in scripts:
204+
205+
$ sf org auth show-sfdx-auth-url --target-org my-org --json
206+
```
207+
208+
_See code: [src/commands/org/auth/show-sfdx-auth-url.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-sfdx-auth-url.ts)_
209+
210+
## `sf org auth show-user-password`
211+
212+
Show the stored password for an org's user.
213+
214+
```
215+
USAGE
216+
$ sf org auth show-user-password -o <value> [--json] [--flags-dir <value>] [-p]
217+
218+
FLAGS
219+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
220+
configuration variable is already set.
221+
-p, --no-prompt Skip the security warning and reveal the password without confirmation.
222+
223+
GLOBAL FLAGS
224+
--flags-dir=<value> Import flag values from a directory.
225+
--json Format output as json.
226+
227+
DESCRIPTION
228+
Show the stored password for an org's user.
229+
230+
This command shows only passwords that were generated locally in your DX project with either the "org generate
231+
password" or "org create user" CLI command. If you generated a password for a user in Setup in your org, you can't
232+
show it with this command.
233+
234+
Because passwords are sensitive credentials, this command prompts for confirmation before revealing it. Skip
235+
confirmation by specifying either the --no-prompt or --json flag.
236+
237+
EXAMPLES
238+
Show the password for the default org's user:
239+
240+
$ sf org auth show-user-password
241+
242+
Show the password for an org with alias "my-org":
243+
244+
$ sf org auth show-user-password --target-org my-org
245+
246+
Show the password without the confirmation prompt:
247+
248+
$ sf org auth show-user-password --target-org my-org --no-prompt
249+
250+
Get the password as JSON for use in scripts:
251+
252+
$ sf org auth show-user-password --target-org my-org --json
253+
```
254+
255+
_See code: [src/commands/org/auth/show-user-password.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-user-password.ts)_
256+
120257
## `sf org create agent-user`
121258

122259
Create the default Salesforce user that is used to run an agent.
@@ -193,7 +330,7 @@ FLAG DESCRIPTIONS
193330
"agent.user.<GUID>@your-org-domain.com".
194331
```
195332

196-
_See code: [src/commands/org/create/agent-user.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/create/agent-user.ts)_
333+
_See code: [src/commands/org/create/agent-user.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/create/agent-user.ts)_
197334

198335
## `sf org create sandbox`
199336

@@ -327,7 +464,7 @@ FLAG DESCRIPTIONS
327464
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
328465
```
329466

330-
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/create/sandbox.ts)_
467+
_See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/create/sandbox.ts)_
331468

332469
## `sf org create scratch`
333470

@@ -509,7 +646,7 @@ FLAG DESCRIPTIONS
509646
Omit this flag to have Salesforce generate a unique username for your org.
510647
```
511648

512-
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/create/scratch.ts)_
649+
_See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/create/scratch.ts)_
513650

514651
## `sf org delete sandbox`
515652

@@ -555,7 +692,7 @@ EXAMPLES
555692
$ sf org delete sandbox --target-org my-sandbox --no-prompt
556693
```
557694

558-
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/delete/sandbox.ts)_
695+
_See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/delete/sandbox.ts)_
559696

560697
## `sf org delete scratch`
561698

@@ -599,7 +736,7 @@ EXAMPLES
599736
$ sf org delete scratch --target-org my-scratch-org --no-prompt
600737
```
601738

602-
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/delete/scratch.ts)_
739+
_See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/delete/scratch.ts)_
603740

604741
## `sf org disable tracking`
605742

@@ -638,7 +775,7 @@ EXAMPLES
638775
$ sf org disable tracking
639776
```
640777

641-
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/disable/tracking.ts)_
778+
_See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/disable/tracking.ts)_
642779

643780
## `sf org display`
644781

@@ -683,7 +820,7 @@ EXAMPLES
683820
$ sf org display --target-org TestOrg1 --verbose
684821
```
685822

686-
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/display.ts)_
823+
_See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/display.ts)_
687824

688825
## `sf org enable tracking`
689826

@@ -725,7 +862,7 @@ EXAMPLES
725862
$ sf org enable tracking
726863
```
727864

728-
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/enable/tracking.ts)_
865+
_See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/enable/tracking.ts)_
729866

730867
## `sf org list`
731868

@@ -764,7 +901,7 @@ EXAMPLES
764901
$ sf org list --clean
765902
```
766903

767-
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/list.ts)_
904+
_See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/list.ts)_
768905

769906
## `sf org list metadata`
770907

@@ -831,7 +968,7 @@ FLAG DESCRIPTIONS
831968
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
832969
```
833970

834-
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/list/metadata.ts)_
971+
_See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/list/metadata.ts)_
835972

836973
## `sf org list metadata-types`
837974

@@ -886,7 +1023,7 @@ FLAG DESCRIPTIONS
8861023
Override the api version used for api requests made by this command
8871024
```
8881025

889-
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/list/metadata-types.ts)_
1026+
_See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/list/metadata-types.ts)_
8901027

8911028
## `sf org open`
8921029

@@ -962,7 +1099,7 @@ EXAMPLES
9621099
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
9631100
```
9641101

965-
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/open.ts)_
1102+
_See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/open.ts)_
9661103

9671104
## `sf org open agent`
9681105

@@ -1037,7 +1174,7 @@ FLAG DESCRIPTIONS
10371174
flag.
10381175
```
10391176

1040-
_See code: [src/commands/org/open/agent.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/open/agent.ts)_
1177+
_See code: [src/commands/org/open/agent.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/open/agent.ts)_
10411178

10421179
## `sf org open authoring-bundle`
10431180

@@ -1083,7 +1220,7 @@ EXAMPLES
10831220
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
10841221
```
10851222

1086-
_See code: [src/commands/org/open/authoring-bundle.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/open/authoring-bundle.ts)_
1223+
_See code: [src/commands/org/open/authoring-bundle.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/open/authoring-bundle.ts)_
10871224

10881225
## `sf org refresh sandbox`
10891226

@@ -1186,7 +1323,7 @@ FLAG DESCRIPTIONS
11861323
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
11871324
```
11881325

1189-
_See code: [src/commands/org/refresh/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/refresh/sandbox.ts)_
1326+
_See code: [src/commands/org/refresh/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/refresh/sandbox.ts)_
11901327

11911328
## `sf org resume sandbox`
11921329

@@ -1249,7 +1386,7 @@ FLAG DESCRIPTIONS
12491386
returns the job ID. To resume checking the sandbox creation, rerun this command.
12501387
```
12511388

1252-
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/resume/sandbox.ts)_
1389+
_See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/resume/sandbox.ts)_
12531390

12541391
## `sf org resume scratch`
12551392

@@ -1302,6 +1439,6 @@ FLAG DESCRIPTIONS
13021439
returns the job ID. To resume checking the scratch creation, rerun this command.
13031440
```
13041441

1305-
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/resume/scratch.ts)_
1442+
_See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/resume/scratch.ts)_
13061443

13071444
<!-- 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.10.14",
4+
"version": "5.11.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"enableO11y": true,

0 commit comments

Comments
 (0)