Skip to content

Commit ddb6697

Browse files
committed
chore(release): 4.4.0 [skip ci]
1 parent bdb36a3 commit ddb6697

3 files changed

Lines changed: 19 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [4.4.0](https://github.com/salesforcecli/plugin-auth/compare/4.3.13...4.4.0) (2026-05-19)
2+
3+
### Features
4+
5+
- remove sensitive output ([f066245](https://github.com/salesforcecli/plugin-auth/commit/f066245a3a7a83513786395536ad27fa6177e486))
6+
17
## [4.3.13](https://github.com/salesforcecli/plugin-auth/compare/4.3.12...4.3.13) (2026-05-16)
28

39
### Bug Fixes

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ EXAMPLES
107107
$ sf org list auth
108108
```
109109

110-
_See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/list/auth.ts)_
110+
_See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/list/auth.ts)_
111111

112112
## `sf org login access-token`
113113

@@ -161,7 +161,7 @@ FLAG DESCRIPTIONS
161161
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
162162
```
163163

164-
_See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/access-token.ts)_
164+
_See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/access-token.ts)_
165165

166166
## `sf org login jwt`
167167

@@ -252,7 +252,7 @@ FLAG DESCRIPTIONS
252252
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
253253
```
254254

255-
_See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/jwt.ts)_
255+
_See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/jwt.ts)_
256256

257257
## `sf org login sfdx-url`
258258

@@ -284,21 +284,21 @@ DESCRIPTION
284284
"https://"). Note that although the SFDX authorization URL starts with "force://", it has nothing to do with the
285285
actual authorization. Salesforce CLI always communicates with your org using HTTPS.
286286
287-
To see an example of an SFDX authorization URL, run "org display --verbose" on an org.
287+
To see the SFDX authorization URL for an org, run "org auth show-sfdx-auth-url".
288288
289289
You have three options when creating the authorization file. The easiest option is to redirect the output of the "sf
290-
org display --verbose --json" command into a file. For example, using an org with alias my-org that you've already
291-
authorized:
290+
org auth show-sfdx-auth-url --json" command into a file. For example, using an org with alias my-org that you've
291+
already authorized:
292292
293-
$ sf org display --target-org my-org --verbose --json > authFile.json
293+
$ sf org auth show-sfdx-auth-url --target-org my-org --json > authFile.json
294294
295295
The resulting JSON file contains the URL in the "sfdxAuthUrl" property of the "result" object. You can then reference
296296
the file when running this command:
297297
298298
$ sf org login sfdx-url --sfdx-url-file authFile.json
299299
300-
NOTE: The "sf org display --verbose" command displays the refresh token only for orgs authorized with the web server
301-
flow, and not the JWT bearer flow.
300+
NOTE: The SFDX auth URL is only available for orgs authorized with a web-based OAuth flow, and not the JWT bearer
301+
flow.
302302
303303
You can also create a JSON file that has a top-level property named sfdxAuthUrl whose value is the authorization URL.
304304
Finally, you can create a normal text file that includes just the URL and nothing else.
@@ -322,7 +322,7 @@ EXAMPLES
322322
$ echo url | sf org login sfdx-url --sfdx-url-stdin
323323
```
324324

325-
_See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/sfdx-url.ts)_
325+
_See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/sfdx-url.ts)_
326326

327327
## `sf org login web`
328328

@@ -427,7 +427,7 @@ FLAG DESCRIPTIONS
427427
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
428428
```
429429

430-
_See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/web.ts)_
430+
_See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/web.ts)_
431431

432432
## `sf org logout`
433433

@@ -493,6 +493,6 @@ FLAG DESCRIPTIONS
493493
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
494494
```
495495

496-
_See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/logout.ts)_
496+
_See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/logout.ts)_
497497

498498
<!-- 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-auth",
33
"description": "plugin for sf auth commands",
4-
"version": "4.3.13",
4+
"version": "4.4.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"enableO11y": true,

0 commit comments

Comments
 (0)