Skip to content

Commit

Permalink
v9.5.0 (#3091)
Browse files Browse the repository at this point in the history
  • Loading branch information
k80bowman authored Nov 13, 2024
1 parent 9e9ba88 commit 61bf905
Show file tree
Hide file tree
Showing 41 changed files with 295 additions and 273 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.

# [9.5.0](https://github.com/heroku/cli/compare/v9.4.0...v9.5.0) (2024-11-13)


### Features

* **addons:** add inference disclaimer ([#3076](https://github.com/heroku/cli/issues/3076)) ([6d33a56](https://github.com/heroku/cli/commit/6d33a5653df971680826d7b6006932a5920a4b93))





# [9.4.0](https://github.com/heroku/cli/compare/v9.3.2...v9.4.0) (2024-11-11)


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.4.0/packages/cli/src/commands/access/index.ts)_
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/access/index.ts)_

## `heroku access:add EMAIL`

Expand All @@ -52,7 +52,7 @@ EXAMPLES
$ heroku access:add [email protected] --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.4.0/packages/cli/src/commands/access/add.ts)_
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/access/add.ts)_

## `heroku access:remove`

Expand All @@ -73,7 +73,7 @@ EXAMPLES
$ heroku access:remove [email protected] --app APP
```

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

## `heroku access:update EMAIL`

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

_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v9.4.0/packages/cli/src/commands/access/update.ts)_
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/addons/index.ts)_
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/index.ts)_

## `heroku addons:attach ADDON_NAME`

Expand All @@ -72,7 +72,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.4.0/packages/cli/src/commands/addons/attach.ts)_
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/attach.ts)_

## `heroku addons:create SERVICE:PLAN`

Expand Down Expand Up @@ -107,7 +107,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.4.0/packages/cli/src/commands/addons/create.ts)_
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/create.ts)_

## `heroku addons:destroy ADDONNAME`

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

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

## `heroku addons:detach ATTACHMENT_NAME`

Expand All @@ -155,7 +155,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.4.0/packages/cli/src/commands/addons/detach.ts)_
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/detach.ts)_

## `heroku addons:docs ADDON`

Expand All @@ -177,7 +177,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.4.0/packages/cli/src/commands/addons/docs.ts)_
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/docs.ts)_

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

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

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

## `heroku addons:open ADDON`

Expand All @@ -256,7 +256,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.4.0/packages/cli/src/commands/addons/open.ts)_
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/open.ts)_

## `heroku addons:plans SERVICE`

Expand All @@ -276,7 +276,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.4.0/packages/cli/src/commands/addons/plans.ts)_
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/plans.ts)_

## `heroku addons:rename ADDON_NAME NEW_NAME`

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

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

## `heroku addons:services`

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

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

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

Expand Down Expand Up @@ -349,7 +349,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.4.0/packages/cli/src/commands/addons/upgrade.ts)_
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/addons/upgrade.ts)_

## `heroku addons:wait [ADDON]`

Expand All @@ -371,4 +371,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.4.0/packages/cli/src/commands/addons/wait.ts)_
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/index.ts)_
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/create.ts)_
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/destroy.ts)_
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/errors.ts)_
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/favorites/index.ts)_
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/favorites/add.ts)_
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/favorites/remove.ts)_
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/info.ts)_
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/join.ts)_
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/leave.ts)_
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/apps/lock.ts)_
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/apps/lock.ts)_

## `heroku apps:open [PATH]`

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

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

## `heroku apps:rename NEWNAME`

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

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

## `heroku apps:stacks`

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

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

## `heroku apps:stacks:set STACK`

Expand All @@ -369,7 +369,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.4.0/packages/cli/src/commands/apps/stacks/set.ts)_
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/apps/stacks/set.ts)_

## `heroku apps:transfer RECIPIENT`

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

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

## `heroku apps:unlock`

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

_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v9.4.0/packages/cli/src/commands/apps/unlock.ts)_
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/auth/2fa/index.ts)_
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/auth/2fa/disable.ts)_
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/auth/login.ts)_
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/auth/logout.ts)_
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/auth/token.ts)_
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v9.5.0/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.4.0/packages/cli/src/commands/auth/whoami.ts)_
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v9.5.0/packages/cli/src/commands/auth/whoami.ts)_
Loading

0 comments on commit 61bf905

Please sign in to comment.