Skip to content

Commit

Permalink
prerelease: bump cli version to 8.0.2-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k80bowman committed Mar 15, 2023
1 parent c3b89ce commit d01f4aa
Show file tree
Hide file tree
Showing 108 changed files with 3,561 additions and 3,866 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [8.0.2-beta.0](https://github.com/heroku/cli/compare/v7.69.1...v8.0.2-beta.0) (2023-03-15)


### Reverts

* Revert "refactor: revert oclif upgrade (#2256)" ([c970fed](https://github.com/heroku/cli/commit/c970fed7c76ee613b935a0b7930ed327068bf627)), closes [#2256](https://github.com/heroku/cli/issues/2256)





## [7.69.1](https://github.com/heroku/cli/compare/v7.69.0...v7.69.1) (2023-03-09)

**Note:** Version bump only for package heroku
Expand Down
54 changes: 35 additions & 19 deletions docs/access.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@ list who has access to an app

```
USAGE
$ heroku access
$ heroku access -a <value> [--json] [-r <value>]
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
--json output in json format
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--json output in json format
DESCRIPTION
list who has access to an app
```

## `heroku access:add EMAIL`
Expand All @@ -28,15 +31,20 @@ add new users to your app

```
USAGE
$ heroku access:add EMAIL
$ heroku access:add EMAIL -a <value> [-p <value>] [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-p, --permissions=<value> list of permissions comma separated
-r, --remote=<value> git remote of app to use
DESCRIPTION
add new users to your app
OPTIONS
-a, --app=app (required) app to run command against
-p, --permissions=permissions list of permissions comma separated
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku access:add [email protected] --app APP # add a collaborator to your app
$ heroku access:add [email protected] --app APP --permissions deploy,manage,operate # permissions must be comma separated
```

Expand All @@ -46,11 +54,15 @@ remove users from a team app

```
USAGE
$ heroku access:remove EMAIL
$ heroku access:remove EMAIL -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION
remove users from a team app
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku access:remove [email protected] --app APP
Expand All @@ -62,12 +74,16 @@ update existing collaborators on an team app

```
USAGE
$ heroku access:update EMAIL
$ heroku access:update EMAIL -a <value> [-p <value>] [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-p, --permissions=<value> comma-delimited list of permissions to update (deploy,manage,operate)
-r, --remote=<value> git remote of app to use
DESCRIPTION
update existing collaborators on an team app
OPTIONS
-a, --app=app (required) app to run command against
-p, --permissions=permissions comma-delimited list of permissions to update (deploy,manage,operate)
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku access:update [email protected] --app APP --permissions deploy,manage,operate
Expand Down
Loading

0 comments on commit d01f4aa

Please sign in to comment.