Skip to content

Commit 60eb4d9

Browse files
committed
chore(release): 3.2.0 [skip ci]
1 parent 5b823e4 commit 60eb4d9

File tree

3 files changed

+13
-73
lines changed

3 files changed

+13
-73
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [3.2.0](https://github.com/salesforcecli/plugin-user/compare/3.1.5...3.2.0) (2024-01-02)
2+
3+
### Features
4+
5+
- deprecation warnings on renamed commands ([77f0651](https://github.com/salesforcecli/plugin-user/commit/77f0651bd51dd9003e63ddc3be3538cee4b25674))
6+
17
## [3.1.5](https://github.com/salesforcecli/plugin-user/compare/3.1.4...3.1.5) (2023-12-31)
28

39
### Bug Fixes

README.md

Lines changed: 6 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -88,79 +88,13 @@ For more NUT options and examples, see <https://github.com/salesforcecli/cli-plu
8888

8989
<!-- commands -->
9090

91-
- [`sf force user password generate`](#sf-force-user-password-generate)
9291
- [`sf org assign permset`](#sf-org-assign-permset)
9392
- [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense)
9493
- [`sf org create user`](#sf-org-create-user)
9594
- [`sf org display user`](#sf-org-display-user)
9695
- [`sf org generate password`](#sf-org-generate-password)
9796
- [`sf org list users`](#sf-org-list-users)
9897

99-
## `sf force user password generate`
100-
101-
Generate a random password for scratch org users.
102-
103-
```
104-
USAGE
105-
$ sf force user password generate -u <value> [--json] [-o <value>] [-l <value>] [-c <value>] [--api-version <value>]
106-
107-
FLAGS
108-
-c, --complexity=<value> [default: 5] Level of password complexity or strength; the higher the value, the
109-
stronger the password.
110-
-l, --length=<value> [default: 13] Number of characters in the generated password; valid values are between
111-
8 and 100.
112-
-o, --on-behalf-of=<value>... Comma-separated list of usernames or aliases to assign the password to; must have been
113-
created locally with the "org create user" command.
114-
-u, --target-org=<value> (required) Scratch org alias or login user.
115-
--api-version=<value> Override the api version used for api requests made by this command
116-
117-
GLOBAL FLAGS
118-
--json Format output as json.
119-
120-
DESCRIPTION
121-
Generate a random password for scratch org users.
122-
123-
By default, new scratch orgs contain one admin user with no password. Use this command to generate or change a
124-
password for this admin user. After it's set, you can’t unset a password, you can only change it.
125-
126-
You can also use the --on-behalf-of flag to generate a password for a scratch org user that you've created locally
127-
with the "org create user" command. This command doesn't work for users you created in the scratch org using Setup.
128-
129-
To change the password strength, set the --complexity flag to a value between 0 and 5. Each value specifies the types
130-
of characters used in the generated password:
131-
132-
0 - lower case letters only
133-
1 - lower case letters and numbers only
134-
2 - lower case letters and symbols only
135-
3 - lower and upper case letters and numbers only
136-
4 - lower and upper case letters and symbols only
137-
5 - lower and upper case letters and numbers and symbols only
138-
139-
To see a password that was previously generated, run "org display user".
140-
141-
EXAMPLES
142-
Generate a password for the original admin user of your default scratch org:
143-
144-
$ sf force user password generate
145-
146-
Generate a password that contains 12 characters for the original admin user of the scratch org with alias
147-
"my-scratch":
148-
149-
$ sf force user password generate --length 12 --target-org my-scratch
150-
151-
Generate a password for your default scratch org admin user that uses lower and upper case letters and numbers only:
152-
153-
$ sf force user password generate --complexity 3
154-
155-
Generate a password for the specified users in the default scratch org; these users must have been created locally
156-
with the "org create user" command:
157-
158-
$ sf force user password generate --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of \
159-
user3@my.org
160-
```
161-
162-
_See code: [src/commands/force/user/password/generate.ts](https://github.com/salesforcecli/plugin-user/blob/3.1.5/src/commands/force/user/password/generate.ts)_
163-
16498
## `sf org assign permset`
16599

166100
Assign a permission set to one or more users of a scratch org.
@@ -202,7 +136,7 @@ EXAMPLES
202136
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
203137
```
204138

205-
_See code: [src/commands/org/assign/permset.ts](https://github.com/salesforcecli/plugin-user/blob/3.1.5/src/commands/org/assign/permset.ts)_
139+
_See code: [src/commands/org/assign/permset.ts](https://github.com/salesforcecli/plugin-user/blob/3.2.0/src/commands/org/assign/permset.ts)_
206140

207141
## `sf org assign permsetlicense`
208142

@@ -246,7 +180,7 @@ EXAMPLES
246180
user3
247181
```
248182

249-
_See code: [src/commands/org/assign/permsetlicense.ts](https://github.com/salesforcecli/plugin-user/blob/3.1.5/src/commands/org/assign/permsetlicense.ts)_
183+
_See code: [src/commands/org/assign/permsetlicense.ts](https://github.com/salesforcecli/plugin-user/blob/3.2.0/src/commands/org/assign/permsetlicense.ts)_
250184

251185
## `sf org create user`
252186

@@ -345,7 +279,7 @@ FLAG DESCRIPTIONS
345279
might be different than what you specify in the definition file.
346280
```
347281

348-
_See code: [src/commands/org/create/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.1.5/src/commands/org/create/user.ts)_
282+
_See code: [src/commands/org/create/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.2.0/src/commands/org/create/user.ts)_
349283

350284
## `sf org display user`
351285

@@ -383,7 +317,7 @@ EXAMPLES
383317
$ sf org display user --target-org me@my.org --json
384318
```
385319

386-
_See code: [src/commands/org/display/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.1.5/src/commands/org/display/user.ts)_
320+
_See code: [src/commands/org/display/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.2.0/src/commands/org/display/user.ts)_
387321

388322
## `sf org generate password`
389323

@@ -448,7 +382,7 @@ EXAMPLES
448382
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
449383
```
450384

451-
_See code: [src/commands/org/generate/password.ts](https://github.com/salesforcecli/plugin-user/blob/3.1.5/src/commands/org/generate/password.ts)_
385+
_See code: [src/commands/org/generate/password.ts](https://github.com/salesforcecli/plugin-user/blob/3.2.0/src/commands/org/generate/password.ts)_
452386

453387
## `sf org list users`
454388

@@ -485,6 +419,6 @@ EXAMPLES
485419
$ sf org list users --target-org me@my.org
486420
```
487421

488-
_See code: [src/commands/org/list/users.ts](https://github.com/salesforcecli/plugin-user/blob/3.1.5/src/commands/org/list/users.ts)_
422+
_See code: [src/commands/org/list/users.ts](https://github.com/salesforcecli/plugin-user/blob/3.2.0/src/commands/org/list/users.ts)_
489423

490424
<!-- 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-user",
33
"description": "Commands to interact with Users and Permission Sets",
4-
"version": "3.1.5",
4+
"version": "3.2.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)