Skip to content

Commit

Permalink
Updating changelog and migration guide to include changes from #738
Browse files Browse the repository at this point in the history
  • Loading branch information
willvedd committed Apr 14, 2023
1 parent 3aa6bad commit 4c041f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 25 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `--reveal` flag for reveal client secret renamed to `--reveal-secrets` [#591]
- More actionable output when executing `auth0 users import` [#735]
- Editorializing code "hints" throughout project [#570]
- Renamed `--connection` flag to `--connection-name` for `auth0 users` commands for consistency [#738]

### Removed

Expand Down Expand Up @@ -170,6 +171,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[unreleased]: https://github.com/auth0/auth0-cli/compare/v1.0.0...HEAD
[#733]: https://github.com/auth0/auth0-cli/issues/733
[#738]: https://github.com/auth0/auth0-cli/issues/738
[#735]: https://github.com/auth0/auth0-cli/issues/735
[#736]: https://github.com/auth0/auth0-cli/issues/736
[#694]: https://github.com/auth0/auth0-cli/issues/694
Expand Down
33 changes: 8 additions & 25 deletions MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,31 +167,14 @@ auth0 login --domain travel0.us.auth0.com \
</tr>
</table>

#### Users Import Command
#### Users Commands

The `-u` short form alias for the `--upsert` flag in the `auth0 users import` command has been redesignated to the `--users` flag which will likely see more prominent usage.
The `--connection` flag has been renamed to `--connection-name` for the `auth0 users update`, `auth0 users create` and `auth0 users import` commands for consistency.

<table>
<tr>
<th>Before (v0)</th>
<th>After (v1)</th>
</tr>
<tr>
<td>

```sh
# Example:
auth0 users import -u
```
Also notably for the `auth0 users import` command, the `-u` short form alias for the `--upsert` flag in the command has been redesignated to the `--users` flag.

</td>
<td>

```sh
# Example:
auth0 users import --upsert
```

</td>
</tr>
</table>
| **Before (v0)** | **After (v1)** |
| ------------------------------------ | ----------------------------------------------- |
| `auth0 users create --connection` | `auth0 users create --connection-name` |
| `auth0 users update --connection` | `auth0 users update --connection-name` |
| `auth0 users import -u --connection` | `auth0 users import --upsert --connection-name` |

0 comments on commit 4c041f7

Please sign in to comment.