Skip to content

Commit

Permalink
Merge pull request #1204 from salesforcecli/release/2.13.3
Browse files Browse the repository at this point in the history
Release PR for 2.13.3 as nightly
  • Loading branch information
svc-cli-bot authored Oct 7, 2023
2 parents 7b2ffbd + bc444c0 commit e82e500
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 20 deletions.
38 changes: 24 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
$ sf COMMAND
running command...
$ sf (--version|-v)
@salesforce/cli/2.13.2 linux-x64 node-v18.18.0
@salesforce/cli/2.13.3 linux-x64 node-v18.18.0
$ sf --help [COMMAND]
USAGE
$ sf COMMAND
Expand Down Expand Up @@ -3093,7 +3093,8 @@ FLAGS
stronger the password.
-l, --length=<value> [default: 13] Number of characters in the generated password; valid values are between
8 and 100.
-o, --on-behalf-of=<value>... Comma-separated list of usernames or aliases to assign the password to.
-o, --on-behalf-of=<value>... Comma-separated list of usernames or aliases to assign the password to; must have been
created locally with the "org create user" command.
-u, --target-org=<value> (required) Scratch org alias or login user.
--api-version=<value> Override the api version used for api requests made by this command
Expand All @@ -3104,7 +3105,10 @@ DESCRIPTION
Generate a random password for scratch org users.
By default, new scratch orgs contain one admin user with no password. Use this command to generate or change a
password for any scratch org user. After it's set, you can’t unset a password, you can only change it.
password for this admin user. After it's set, you can’t unset a password, you can only change it.
You can also use the --on-behalf-of flag to generate a password for a scratch org user that you've created locally
with the "org create user" command. This command doesn't work for users you created in the scratch org using Setup.
To change the password strength, set the --complexity flag to a value between 0 and 5. Each value specifies the types
of characters used in the generated password:
Expand Down Expand Up @@ -3132,13 +3136,14 @@ EXAMPLES
$ sf force user password generate --complexity 3
Generate a password for the specified users in the default scratch org:
Generate a password for the specified users in the default scratch org; these users must have been created locally
with the "org create user" command:
$ sf force user password generate --on-behalf-of [email protected] --on-behalf-of [email protected] --on-behalf-of \
[email protected]
```

_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.35/src/commands/force/user/password/generate.ts)_
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.36/src/commands/force/user/password/generate.ts)_

## `sf help [COMMANDS]`

Expand Down Expand Up @@ -3655,7 +3660,7 @@ EXAMPLES
$ sf org assign permset --name DreamHouse --on-behalf-of [email protected] --on-behalf-of user2 --on-behalf-of user
```

_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.35/src/commands/org/assign/permset.ts)_
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.36/src/commands/org/assign/permset.ts)_

## `sf org assign permsetlicense`

Expand Down Expand Up @@ -3699,7 +3704,7 @@ EXAMPLES
user3
```

_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.35/src/commands/org/assign/permsetlicense.ts)_
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.36/src/commands/org/assign/permsetlicense.ts)_

## `sf org create sandbox`

Expand Down Expand Up @@ -4055,7 +4060,7 @@ FLAG DESCRIPTIONS
might be different than what you specify in the definition file.
```

_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.35/src/commands/org/create/user.ts)_
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.36/src/commands/org/create/user.ts)_

## `sf org delete sandbox`

Expand Down Expand Up @@ -4219,7 +4224,7 @@ EXAMPLES
$ sf org display user --target-org [email protected] --json
```

_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.35/src/commands/org/display/user.ts)_
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.36/src/commands/org/display/user.ts)_

## `sf org generate password`

Expand All @@ -4230,7 +4235,8 @@ USAGE
$ sf org generate password -o <value> [--json] [-b <value>] [-l <value>] [-c <value>] [--api-version <value>]
FLAGS
-b, --on-behalf-of=<value>... Comma-separated list of usernames or aliases to assign the password to.
-b, --on-behalf-of=<value>... Comma-separated list of usernames or aliases to assign the password to; must have been
created locally with the "org create user" command.
-c, --complexity=<value> [default: 5] Level of password complexity or strength; the higher the value, the
stronger the password.
-l, --length=<value> [default: 13] Number of characters in the generated password; valid values are between
Expand All @@ -4245,7 +4251,10 @@ DESCRIPTION
Generate a random password for scratch org users.
By default, new scratch orgs contain one admin user with no password. Use this command to generate or change a
password for any scratch org user. After it's set, you can’t unset a password, you can only change it.
password for this admin user. After it's set, you can’t unset a password, you can only change it.
You can also use the --on-behalf-of flag to generate a password for a scratch org user that you've created locally
with the "org create user" command. This command doesn't work for users you created in the scratch org using Setup.
To change the password strength, set the --complexity flag to a value between 0 and 5. Each value specifies the types
of characters used in the generated password:
Expand Down Expand Up @@ -4273,12 +4282,13 @@ EXAMPLES
$ sf org generate password --complexity 3
Generate a password for the specified users in the default scratch org:
Generate a password for the specified users in the default scratch org; these users must have been created locally
with the "org create user" command:
$ sf org generate password --on-behalf-of [email protected] --on-behalf-of [email protected] --on-behalf-of [email protected]
```

_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.35/src/commands/org/generate/password.ts)_
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.36/src/commands/org/generate/password.ts)_

## `sf org list`

Expand Down Expand Up @@ -4500,7 +4510,7 @@ EXAMPLES
$ sf org list users --target-org [email protected]
```

_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.35/src/commands/org/list/users.ts)_
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/2.3.36/src/commands/org/list/users.ts)_

## `sf org login access-token`

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/cli",
"description": "The Salesforce CLI",
"version": "2.13.2",
"version": "2.13.3",
"author": "Salesforce",
"bin": {
"sf": "./bin/run.js",
Expand Down Expand Up @@ -150,7 +150,7 @@
"@salesforce/plugin-telemetry": "2.3.6",
"@salesforce/plugin-templates": "55.5.14",
"@salesforce/plugin-trust": "2.6.18",
"@salesforce/plugin-user": "2.3.35",
"@salesforce/plugin-user": "2.3.36",
"@salesforce/sf-plugins-core": "4.0.0",
"debug": "^4.3.4"
},
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1851,10 +1851,10 @@
shelljs "^0.8.4"
tslib "^2"

"@salesforce/[email protected].35":
version "2.3.35"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-user/-/plugin-user-2.3.35.tgz#b7d7d5935c142de673466dba9e51c359b8eaed11"
integrity sha512-Iprqc6dEZ4nwt3xC3k0L+cVjwPoCrEm5byOvuSXyFTyXRy116Qz62VcSUKzKNtxHgVTjMzBlpMRHCH8bnQFVmA==
"@salesforce/[email protected].36":
version "2.3.36"
resolved "https://registry.yarnpkg.com/@salesforce/plugin-user/-/plugin-user-2.3.36.tgz#7bd9e6f4414a2552684c4433222392d36c09a775"
integrity sha512-XzqNSg7TMRHAiMolm86tMJuQ42LDC5zq/lM/XEfaHA249KmNktsDb81TsK5WwYURVKZi+IS6zifLASAAdrnlpg==
dependencies:
"@oclif/core" "^2.15.0"
"@salesforce/core" "^5.2.6"
Expand Down

0 comments on commit e82e500

Please sign in to comment.