Skip to content

Commit

Permalink
chore(release): 3.0.7 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed Dec 3, 2023
1 parent f878b8e commit c3c5d2e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [3.0.7](https://github.com/salesforcecli/plugin-user/compare/3.0.6...3.0.7) (2023-12-03)

### Bug Fixes

- **deps:** bump @salesforce/sf-plugins-core from 5.0.1 to 5.0.5 ([55c6c95](https://github.com/salesforcecli/plugin-user/commit/55c6c959863c2f2ab30426753e12c68f96eacc18))

## [3.0.6](https://github.com/salesforcecli/plugin-user/compare/3.0.5...3.0.6) (2023-11-26)

### Bug Fixes
Expand Down
26 changes: 15 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ EXAMPLES
[email protected]
```

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

## `sf org assign permset`

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

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

## `sf org assign permsetlicense`

Expand Down Expand Up @@ -246,7 +246,7 @@ EXAMPLES
user3
```

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

## `sf org create user`

Expand All @@ -259,7 +259,8 @@ USAGE
FLAGS
-a, --set-alias=<value> Set an alias for the created username to reference in other CLI commands.
-f, --definition-file=<value> File path to a user definition file for customizing the new user.
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-s, --set-unique-username Force the username, if specified in the definition file or at the command line, to be
unique by appending the org ID.
--api-version=<value> Override the api version used for api requests made by this command
Expand Down Expand Up @@ -344,7 +345,7 @@ FLAG DESCRIPTIONS
might be different than what you specify in the definition file.
```

_See code: [src/commands/org/create/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.0.6/src/commands/org/create/user.ts)_
_See code: [src/commands/org/create/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.0.7/src/commands/org/create/user.ts)_

## `sf org display user`

Expand All @@ -355,7 +356,8 @@ USAGE
$ sf org display user -o <value> [--json] [--api-version <value>]
FLAGS
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
--api-version=<value> Override the api version used for api requests made by this command
GLOBAL FLAGS
Expand All @@ -381,7 +383,7 @@ EXAMPLES
$ sf org display user --target-org [email protected] --json
```

_See code: [src/commands/org/display/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.0.6/src/commands/org/display/user.ts)_
_See code: [src/commands/org/display/user.ts](https://github.com/salesforcecli/plugin-user/blob/3.0.7/src/commands/org/display/user.ts)_

## `sf org generate password`

Expand All @@ -398,7 +400,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, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
--api-version=<value> Override the api version used for api requests made by this command
GLOBAL FLAGS
Expand Down Expand Up @@ -445,7 +448,7 @@ EXAMPLES
$ sf org generate password --on-behalf-of [email protected] --on-behalf-of [email protected] --on-behalf-of [email protected]
```

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

## `sf org list users`

Expand All @@ -456,7 +459,8 @@ USAGE
$ sf org list users -o <value> [--json] [--api-version <value>]
FLAGS
-o, --target-org=<value> (required) Username or alias of the target org.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
--api-version=<value> Override the api version used for api requests made by this command
GLOBAL FLAGS
Expand All @@ -481,6 +485,6 @@ EXAMPLES
$ sf org list users --target-org [email protected]
```

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

<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-user",
"description": "Commands to interact with Users and Permission Sets",
"version": "3.0.6",
"version": "3.0.7",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
Expand Down

0 comments on commit c3c5d2e

Please sign in to comment.