Skip to content

Commit

Permalink
v9.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
k80bowman committed Sep 5, 2024
1 parent 39b4d08 commit 534ce30
Show file tree
Hide file tree
Showing 41 changed files with 286 additions and 273 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [9.2.0](https://github.com/heroku/cli/compare/v9.1.0...v9.2.0) (2024-08-26)
## [9.2.1](https://github.com/heroku/cli/compare/v9.2.0...v9.2.1) (2024-09-05)

### Features
**Note:** Version bump only for package heroku





# [9.2.0](https://github.com/heroku/cli/compare/v9.1.0...v9.2.0) (2024-08-26)

* added backwards compatibility for passing flags to addons:create ([#2982](https://github.com/heroku/cli/pull/2982))

### Bug Fixes

Expand Down
8 changes: 4 additions & 4 deletions docs/access.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ DESCRIPTION
list who has access to an app
```

_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/access/index.ts)_
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/access/index.ts)_

## `heroku access:add EMAIL`

Expand All @@ -49,7 +49,7 @@ EXAMPLES
$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated
```

_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/access/add.ts)_
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/access/add.ts)_

## `heroku access:remove`

Expand All @@ -70,7 +70,7 @@ EXAMPLES
$ heroku access:remove user@email.com --app APP
```

_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/access/remove.ts)_
_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/access/remove.ts)_

## `heroku access:update EMAIL`

Expand All @@ -89,4 +89,4 @@ DESCRIPTION
update existing collaborators on an team app
```

_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/access/update.ts)_
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/access/update.ts)_
26 changes: 13 additions & 13 deletions docs/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ EXAMPLES
$ heroku addons --app acme-inc-www
```

_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/index.ts)_
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/index.ts)_

## `heroku addons:attach ADDON_NAME`

Expand All @@ -69,7 +69,7 @@ DESCRIPTION
attach an existing add-on resource to an app
```

_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/attach.ts)_
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/attach.ts)_

## `heroku addons:create SERVICE:PLAN`

Expand Down Expand Up @@ -101,7 +101,7 @@ EXAMPLES
$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE
```

_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/create.ts)_
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/create.ts)_

## `heroku addons:destroy ADDONNAME`

Expand All @@ -125,7 +125,7 @@ EXAMPLES
addons:destroy [ADDON]... [flags]
```

_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/destroy.ts)_
_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/destroy.ts)_

## `heroku addons:detach ATTACHMENT_NAME`

Expand All @@ -143,7 +143,7 @@ DESCRIPTION
detach an existing add-on resource from an app
```

_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/detach.ts)_
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/detach.ts)_

## `heroku addons:docs ADDON`

Expand All @@ -162,7 +162,7 @@ DESCRIPTION
open an add-on's Dev Center documentation in your browser
```

_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/docs.ts)_
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/docs.ts)_

## `heroku addons:downgrade ADDON [PLAN]`

Expand Down Expand Up @@ -212,7 +212,7 @@ DESCRIPTION
show detailed add-on resource and attachment information
```

_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/info.ts)_
_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/info.ts)_

## `heroku addons:open ADDON`

Expand All @@ -231,7 +231,7 @@ DESCRIPTION
open an add-on's dashboard in your browser
```

_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/open.ts)_
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/open.ts)_

## `heroku addons:plans SERVICE`

Expand All @@ -248,7 +248,7 @@ DESCRIPTION
list all available plans for an add-on service
```

_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/plans.ts)_
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/plans.ts)_

## `heroku addons:rename ADDON_NAME NEW_NAME`

Expand All @@ -262,7 +262,7 @@ DESCRIPTION
rename an add-on
```

_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/rename.ts)_
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/rename.ts)_

## `heroku addons:services`

Expand All @@ -279,7 +279,7 @@ DESCRIPTION
list all available add-on services
```

_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/services.ts)_
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/services.ts)_

## `heroku addons:upgrade ADDON [PLAN]`

Expand Down Expand Up @@ -313,7 +313,7 @@ EXAMPLES
$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2
```

_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/upgrade.ts)_
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/upgrade.ts)_

## `heroku addons:wait [ADDON]`

Expand All @@ -332,4 +332,4 @@ DESCRIPTION
show provisioning status of the add-ons on the app
```

_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/addons/wait.ts)_
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/addons/wait.ts)_
34 changes: 17 additions & 17 deletions docs/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ EXAMPLES
$ heroku apps
```

_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/index.ts)_
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/index.ts)_

## `heroku apps:create [APP]`

Expand Down Expand Up @@ -89,7 +89,7 @@ EXAMPLES
$ heroku apps:create --region eu
```

_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/create.ts)_
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/create.ts)_

## `heroku apps:destroy`

Expand All @@ -108,7 +108,7 @@ DESCRIPTION
permanently destroy an app
```

_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/destroy.ts)_
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/destroy.ts)_

## `heroku apps:errors`

Expand All @@ -130,7 +130,7 @@ DESCRIPTION
view app errors
```

_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/errors.ts)_
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/errors.ts)_

## `heroku apps:favorites`

Expand All @@ -147,7 +147,7 @@ DESCRIPTION
list favorited apps
```

_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/favorites/index.ts)_
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/favorites/index.ts)_

## `heroku apps:favorites:add`

Expand All @@ -165,7 +165,7 @@ DESCRIPTION
favorites an app
```

_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/favorites/add.ts)_
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/favorites/add.ts)_

## `heroku apps:favorites:remove`

Expand All @@ -183,7 +183,7 @@ DESCRIPTION
unfavorites an app
```

_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/favorites/remove.ts)_
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/favorites/remove.ts)_

## `heroku apps:info`

Expand All @@ -208,7 +208,7 @@ EXAMPLES
$ heroku apps:info --shell
```

_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/info.ts)_
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/info.ts)_

## `heroku apps:join`

Expand All @@ -229,7 +229,7 @@ ALIASES
$ heroku join
```

_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/join.ts)_
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/join.ts)_

## `heroku apps:leave`

Expand All @@ -253,7 +253,7 @@ EXAMPLES
$ heroku apps:leave -a APP
```

_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/leave.ts)_
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/leave.ts)_

## `heroku apps:lock`

Expand All @@ -274,7 +274,7 @@ ALIASES
$ heroku lock
```

_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/lock.ts)_
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/lock.ts)_

## `heroku apps:open [PATH]`

Expand All @@ -297,7 +297,7 @@ EXAMPLES
$ heroku open -a myapp /foo
```

_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/open.ts)_
_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/open.ts)_

## `heroku apps:rename NEWNAME`

Expand All @@ -318,7 +318,7 @@ EXAMPLES
$ heroku apps:rename --app oldname newname
```

_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/rename.ts)_
_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/rename.ts)_

## `heroku apps:stacks`

Expand All @@ -336,7 +336,7 @@ DESCRIPTION
show the list of available stacks
```

_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/stacks/index.ts)_
_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/stacks/index.ts)_

## `heroku apps:stacks:set STACK`

Expand All @@ -360,7 +360,7 @@ EXAMPLES
Run git push heroku main to trigger a new build on myapp.
```

_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/stacks/set.ts)_
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/stacks/set.ts)_

## `heroku apps:transfer RECIPIENT`

Expand Down Expand Up @@ -391,7 +391,7 @@ EXAMPLES
...
```

_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/transfer.ts)_
_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/transfer.ts)_

## `heroku apps:unlock`

Expand All @@ -412,4 +412,4 @@ ALIASES
$ heroku unlock
```

_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/apps/unlock.ts)_
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/apps/unlock.ts)_
12 changes: 6 additions & 6 deletions docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ALIASES
$ heroku twofactor
```

_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/auth/2fa/index.ts)_
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/auth/2fa/index.ts)_

## `heroku auth:2fa:disable`

Expand All @@ -47,7 +47,7 @@ EXAMPLES
$ heroku auth:2fa:disable
```

_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/auth/2fa/disable.ts)_
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/auth/2fa/disable.ts)_

## `heroku auth:login`

Expand All @@ -69,7 +69,7 @@ ALIASES
$ heroku login
```

_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/auth/login.ts)_
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/auth/login.ts)_

## `heroku auth:logout`

Expand All @@ -86,7 +86,7 @@ ALIASES
$ heroku logout
```

_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/auth/logout.ts)_
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/auth/logout.ts)_

## `heroku auth:token`

Expand All @@ -105,7 +105,7 @@ DESCRIPTION
authorizations:create
```

_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/auth/token.ts)_
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/auth/token.ts)_

## `heroku auth:whoami`

Expand All @@ -122,4 +122,4 @@ ALIASES
$ heroku whoami
```

_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v9.2.0/packages/cli/src/commands/auth/whoami.ts)_
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v9.2.1/packages/cli/src/commands/auth/whoami.ts)_
Loading

0 comments on commit 534ce30

Please sign in to comment.