Skip to content

Commit 74117b6

Browse files
committed
chore(release): 3.6.10 [skip ci]
1 parent 37cbe9c commit 74117b6

File tree

3 files changed

+27
-19
lines changed

3 files changed

+27
-19
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.6.10](https://github.com/salesforcecli/plugin-user/compare/3.6.9...3.6.10) (2025-02-23)
2+
3+
### Bug Fixes
4+
5+
- **deps:** bump @salesforce/core from 8.8.2 to 8.8.3 ([8ea0a14](https://github.com/salesforcecli/plugin-user/commit/8ea0a14616d58fba85ed80a279c83ddc89794904))
6+
17
## [3.6.9](https://github.com/salesforcecli/plugin-user/compare/3.6.8...3.6.9) (2025-02-09)
28

39
### Bug Fixes

README.md

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ For more NUT options and examples, see <https://github.com/salesforcecli/cli-plu
9797

9898
## `sf org assign permset`
9999

100-
Assign a permission set to one or more users of a scratch org.
100+
Assign a permission set to one or more org users.
101101

102102
```
103103
USAGE
@@ -107,15 +107,16 @@ USAGE
107107
FLAGS
108108
-b, --on-behalf-of=<value>... Username or alias to assign the permission set to.
109109
-n, --name=<value>... (required) Permission set to assign.
110-
-o, --target-org=<value> (required) Scratch org alias or login user.
110+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
111+
configuration variable is already set.
111112
--api-version=<value> Override the api version used for api requests made by this command
112113
113114
GLOBAL FLAGS
114115
--flags-dir=<value> Import flag values from a directory.
115116
--json Format output as json.
116117
117118
DESCRIPTION
118-
Assign a permission set to one or more users of a scratch org.
119+
Assign a permission set to one or more org users.
119120
120121
To specify an alias for the --target-org or --on-behalf-of flags, use the CLI username alias, such as the one you set
121122
with the "alias set" command. Don't use the value of the Alias field of the User Salesforce object for the org user.
@@ -125,24 +126,24 @@ DESCRIPTION
125126
--on-behalf-of.
126127
127128
EXAMPLES
128-
Assign two permission sets called DreamHouse and CloudHouse to original admin user of your default scratch org:
129+
Assign two permission sets called DreamHouse and CloudHouse to original admin user of your default org:
129130
130131
$ sf org assign permset --name DreamHouse --name CloudHouse
131132
132-
Assign the Dreamhouse permission set to the original admin user of the scratch org with alias "my-scratch":
133+
Assign the Dreamhouse permission set to the original admin user of the org with alias "my-scratch":
133134
134135
$ sf org assign permset --name DreamHouse --target-org my-scratch
135136
136-
Assign the Dreamhouse permission set to the specified list of users of your default scratch org:
137+
Assign the Dreamhouse permission set to the specified list of users of your default org:
137138
138139
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
139140
```
140141

141-
_See code: [src/commands/org/assign/permset.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.9/src/commands/org/assign/permset.ts)_
142+
_See code: [src/commands/org/assign/permset.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.10/src/commands/org/assign/permset.ts)_
142143

143144
## `sf org assign permsetlicense`
144145

145-
Assign a permission set license to one or more users of a scratch org.
146+
Assign a permission set license to one or more org users.
146147

147148
```
148149
USAGE
@@ -152,15 +153,16 @@ USAGE
152153
FLAGS
153154
-b, --on-behalf-of=<value>... Usernames or alias to assign the permission set license to.
154155
-n, --name=<value>... (required) Name of the permission set license to assign.
155-
-o, --target-org=<value> (required) Scratch org alias or login user.
156+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
157+
configuration variable is already set.
156158
--api-version=<value> Override the api version used for api requests made by this command
157159
158160
GLOBAL FLAGS
159161
--flags-dir=<value> Import flag values from a directory.
160162
--json Format output as json.
161163
162164
DESCRIPTION
163-
Assign a permission set license to one or more users of a scratch org.
165+
Assign a permission set license to one or more org users.
164166
165167
To specify an alias for the --target-org or --on-behalf-of flags, use the CLI username alias, such as the one you set
166168
with the "alias set" command. Don't use the value of the Alias field of the User Salesforce object for the org user.
@@ -170,21 +172,21 @@ DESCRIPTION
170172
--on-behalf-of.
171173
172174
EXAMPLES
173-
Assign the DreamHouse permission set license to original admin user of your default scratch org:
175+
Assign the DreamHouse permission set license to original admin user of your default org:
174176
175177
$ sf org assign permsetlicense --name DreamHouse
176178
177-
Assign two permission set licenses to the original admin user of the scratch org with alias "my-scratch":
179+
Assign two permission set licenses to the original admin user of the org with alias "my-scratch":
178180
179181
$ sf org assign permsetlicense --name DreamHouse --name CloudHouse --target-org my-scratch
180182
181-
Assign the Dreamhouse permission set license to the specified list of users of your default scratch org:
183+
Assign the Dreamhouse permission set license to the specified list of users of your default org:
182184
183185
$ sf org assign permsetlicense --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of \
184186
user3
185187
```
186188

187-
_See code: [src/commands/org/assign/permsetlicense.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.9/src/commands/org/assign/permsetlicense.ts)_
189+
_See code: [src/commands/org/assign/permsetlicense.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.10/src/commands/org/assign/permsetlicense.ts)_
188190

189191
## `sf org create user`
190192

@@ -292,7 +294,7 @@ FLAG DESCRIPTIONS
292294
might be different than what you specify in the definition file.
293295
```
294296

295-
_See code: [src/commands/org/create/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.9/src/commands/org/create/user.ts)_
297+
_See code: [src/commands/org/create/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.10/src/commands/org/create/user.ts)_
296298

297299
## `sf org display user`
298300

@@ -331,7 +333,7 @@ EXAMPLES
331333
$ sf org display user --target-org me@my.org --json
332334
```
333335

334-
_See code: [src/commands/org/display/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.9/src/commands/org/display/user.ts)_
336+
_See code: [src/commands/org/display/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.10/src/commands/org/display/user.ts)_
335337

336338
## `sf org generate password`
337339

@@ -398,7 +400,7 @@ EXAMPLES
398400
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
399401
```
400402

401-
_See code: [src/commands/org/generate/password.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.9/src/commands/org/generate/password.ts)_
403+
_See code: [src/commands/org/generate/password.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.10/src/commands/org/generate/password.ts)_
402404

403405
## `sf org list users`
404406

@@ -436,6 +438,6 @@ EXAMPLES
436438
$ sf org list users --target-org me@my.org
437439
```
438440

439-
_See code: [src/commands/org/list/users.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.9/src/commands/org/list/users.ts)_
441+
_See code: [src/commands/org/list/users.ts](https://github.com/salesforcecli/plugin-user/blob/3.6.10/src/commands/org/list/users.ts)_
440442

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

0 commit comments

Comments
 (0)