Skip to content

Commit

Permalink
release v8.11.0 (#2732)
Browse files Browse the repository at this point in the history
* v8.11.0

* Fix scripting errors
  • Loading branch information
zwhitfield3 committed Mar 21, 2024
1 parent 32e97bb commit a525d5e
Show file tree
Hide file tree
Showing 51 changed files with 340 additions and 168 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.11.0](https://github.com/heroku/cli/compare/v8.10.0...v8.11.0) (2024-03-20)


### Bug Fixes

* **tests:** Increasing Mocha timeouts ([#2649](https://github.com/heroku/cli/issues/2649)) ([fe49fa0](https://github.com/heroku/cli/commit/fe49fa031d89193906cb86c4f793e0c69453c7d6))
* **workflow:** remove fig command & update workflow ([#2686](https://github.com/heroku/cli/issues/2686)) ([748e71c](https://github.com/heroku/cli/commit/748e71c1026474bb75bf44ccd5c10720ff811f7b))
* **workflow:** update fig autocomplete workflow ([#2679](https://github.com/heroku/cli/issues/2679)) ([536b2ec](https://github.com/heroku/cli/commit/536b2ecdf797d352bdcc994e439c909e5e09222e))


### Features

* **pg:upgrade:** support essential dbs ([#2637](https://github.com/heroku/cli/issues/2637)) ([c062c59](https://github.com/heroku/cli/commit/c062c590956afe38c60ea57982ccc28b51b2c5b5))





# [8.10.0](https://github.com/heroku/cli/compare/v8.9.0...v8.10.0) (2024-02-19)

**Note:** Version bump only for package heroku
Expand Down
12 changes: 6 additions & 6 deletions docs/auth.md
Expand Up @@ -26,7 +26,7 @@ ALIASES
$ heroku twofactor
```

_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/auth/2fa/index.ts)_
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v8.11.0/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/v8.10.0/src/commands/auth/2fa/disable.ts)_
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v8.11.0/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/v8.10.0/src/commands/auth/login.ts)_
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v8.11.0/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/v8.10.0/src/commands/auth/logout.ts)_
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v8.11.0/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/v8.10.0/src/commands/auth/token.ts)_
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v8.11.0/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/v8.10.0/src/commands/auth/whoami.ts)_
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/auth/whoami.ts)_
12 changes: 6 additions & 6 deletions docs/authorizations.md
Expand Up @@ -29,7 +29,7 @@ EXAMPLES
$ heroku authorizations
```

_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/authorizations/index.ts)_
_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/authorizations/index.ts)_

## `heroku authorizations:create`

Expand All @@ -53,7 +53,7 @@ EXAMPLES
$ heroku authorizations:create --description "For use with Anvil"
```

_See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/authorizations/create.ts)_
_See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/authorizations/create.ts)_

## `heroku authorizations:destroy ID`

Expand Down Expand Up @@ -89,7 +89,7 @@ DESCRIPTION
show an existing OAuth authorization
```

_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/authorizations/info.ts)_
_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/authorizations/info.ts)_

## `heroku authorizations:revoke ID`

Expand All @@ -110,7 +110,7 @@ EXAMPLES
$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb
```

_See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/authorizations/revoke.ts)_
_See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/authorizations/revoke.ts)_

## `heroku authorizations:rotate ID`

Expand All @@ -124,7 +124,7 @@ DESCRIPTION
updates an OAuth authorization token
```

_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/authorizations/rotate.ts)_
_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/authorizations/rotate.ts)_

## `heroku authorizations:update ID`

Expand All @@ -143,4 +143,4 @@ DESCRIPTION
updates an OAuth authorization
```

_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/authorizations/update.ts)_
_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/authorizations/update.ts)_
2 changes: 1 addition & 1 deletion docs/autocomplete.md
Expand Up @@ -32,4 +32,4 @@ EXAMPLES
$ heroku autocomplete --refresh-cache
```

_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/autocomplete/index.ts)_
_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/autocomplete/index.ts)_
16 changes: 8 additions & 8 deletions docs/buildpacks.md
Expand Up @@ -28,7 +28,7 @@ DESCRIPTION
display the buildpacks for an app
```

_See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/index.ts)_
_See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/index.ts)_

## `heroku buildpacks:add BUILDPACK`

Expand All @@ -50,7 +50,7 @@ DESCRIPTION
add new app buildpack, inserting into list of buildpacks if necessary
```

_See code: [src/commands/buildpacks/add.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/add.ts)_
_See code: [src/commands/buildpacks/add.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/add.ts)_

## `heroku buildpacks:clear`

Expand All @@ -68,7 +68,7 @@ DESCRIPTION
clear all buildpacks set on the app
```

_See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/clear.ts)_
_See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/clear.ts)_

## `heroku buildpacks:info BUILDPACK`

Expand All @@ -85,7 +85,7 @@ DESCRIPTION
fetch info about a buildpack
```

_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/info.ts)_
_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/info.ts)_

## `heroku buildpacks:remove [BUILDPACK]`

Expand All @@ -107,7 +107,7 @@ DESCRIPTION
remove a buildpack set on the app
```

_See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/remove.ts)_
_See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/remove.ts)_

## `heroku buildpacks:search [TERM]`

Expand All @@ -129,7 +129,7 @@ DESCRIPTION
search for buildpacks
```

_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/search.ts)_
_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/search.ts)_

## `heroku buildpacks:set BUILDPACK`

Expand All @@ -146,7 +146,7 @@ FLAGS
-r, --remote=<value> git remote of app to use
```

_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/set.ts)_
_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/set.ts)_

## `heroku buildpacks:versions BUILDPACK`

Expand All @@ -163,4 +163,4 @@ DESCRIPTION
list versions of a buildpack
```

_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/buildpacks/versions.ts)_
_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/buildpacks/versions.ts)_
24 changes: 12 additions & 12 deletions docs/certs.md
Expand Up @@ -32,7 +32,7 @@ DESCRIPTION
list SSL certificates for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/index.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/index.js)_

## `heroku certs:add CRT KEY`

Expand All @@ -57,7 +57,7 @@ EXAMPLES
https://help.salesforce.com/s/articleView?id=000333504&type=1
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/add.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/add.js)_

## `heroku certs:auto`

Expand All @@ -76,7 +76,7 @@ DESCRIPTION
show ACM status for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/auto/index.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/index.js)_

## `heroku certs:auto:disable`

Expand All @@ -94,7 +94,7 @@ DESCRIPTION
disable ACM for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/auto/disable.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/disable.js)_

## `heroku certs:auto:enable`

Expand All @@ -113,7 +113,7 @@ DESCRIPTION
enable ACM status for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/auto/enable.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/enable.js)_

## `heroku certs:auto:refresh`

Expand All @@ -131,7 +131,7 @@ DESCRIPTION
refresh ACM for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/auto/refresh.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/refresh.js)_

## `heroku certs:chain`

Expand All @@ -149,7 +149,7 @@ DESCRIPTION
print an ordered & complete chain for a certificate
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/chain.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/chain.js)_

## `heroku certs:generate DOMAIN`

Expand Down Expand Up @@ -183,7 +183,7 @@ EXAMPLES
$ heroku certs:generate example.com
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/generate.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/generate.js)_

## `heroku certs:info`

Expand All @@ -204,7 +204,7 @@ DESCRIPTION
show certificate information for an SSL certificate
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/info.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/info.js)_

## `heroku certs:key`

Expand All @@ -227,7 +227,7 @@ EXAMPLES
$ heroku certs:key example.com.crt example.com.key
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/key.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/key.js)_

## `heroku certs:remove`

Expand All @@ -247,7 +247,7 @@ DESCRIPTION
remove an SSL certificate from an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/remove.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/remove.js)_

## `heroku certs:update CRT KEY`

Expand All @@ -274,4 +274,4 @@ EXAMPLES
https://help.salesforce.com/s/articleView?id=000333504&type=1
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.10.0/packages/certs-v5/commands/certs/update.js)_
_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/update.js)_
10 changes: 5 additions & 5 deletions docs/ci.md
Expand Up @@ -37,7 +37,7 @@ EXAMPLES
$ heroku ci --app murmuring-headland-14719
```

_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/ci/index.ts)_
_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/ci/index.ts)_

## `heroku ci:config`

Expand Down Expand Up @@ -174,7 +174,7 @@ EXAMPLES
$ heroku ci:info 1288 --app murmuring-headland-14719
```

_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/ci/info.ts)_
_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/ci/info.ts)_

## `heroku ci:last`

Expand All @@ -196,7 +196,7 @@ EXAMPLES
$ heroku ci:last --pipeline=my-pipeline --node 100
```

_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/ci/last.ts)_
_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/ci/last.ts)_

## `heroku ci:migrate-manifest`

Expand Down Expand Up @@ -258,7 +258,7 @@ EXAMPLES
$ heroku ci:rerun 985 --app murmuring-headland-14719
```

_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/ci/rerun.ts)_
_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/ci/rerun.ts)_

## `heroku ci:run`

Expand All @@ -279,4 +279,4 @@ EXAMPLES
$ heroku ci:run --app murmuring-headland-14719
```

_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/ci/run.ts)_
_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/ci/run.ts)_
12 changes: 6 additions & 6 deletions docs/clients.md
Expand Up @@ -25,7 +25,7 @@ DESCRIPTION
list your OAuth clients
```

_See code: [src/commands/clients/index.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/clients/index.ts)_
_See code: [src/commands/clients/index.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/clients/index.ts)_

## `heroku clients:create NAME REDIRECT_URI`

Expand All @@ -46,7 +46,7 @@ EXAMPLES
$ heroku clients:create "Amazing" https://amazing-client.herokuapp.com/auth/heroku/callback
```

_See code: [src/commands/clients/create.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/clients/create.ts)_
_See code: [src/commands/clients/create.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/clients/create.ts)_

## `heroku clients:destroy ID`

Expand All @@ -60,7 +60,7 @@ DESCRIPTION
delete client by ID
```

_See code: [src/commands/clients/destroy.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/clients/destroy.ts)_
_See code: [src/commands/clients/destroy.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/clients/destroy.ts)_

## `heroku clients:info ID`

Expand All @@ -81,7 +81,7 @@ EXAMPLES
$ heroku clients:info 36120128-fee7-455e-8b7f-807aee130946
```

_See code: [src/commands/clients/info.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/clients/info.ts)_
_See code: [src/commands/clients/info.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/clients/info.ts)_

## `heroku clients:rotate ID`

Expand All @@ -99,7 +99,7 @@ DESCRIPTION
rotate OAuth client secret
```

_See code: [src/commands/clients/rotate.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/clients/rotate.ts)_
_See code: [src/commands/clients/rotate.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/clients/rotate.ts)_

## `heroku clients:update ID`

Expand All @@ -120,4 +120,4 @@ EXAMPLES
$ heroku clients:update 3e304bda-d376-4278-bdea-6d6c08aa1359 --url https://amazing-client.herokuapp.com/auth/heroku/callback
```

_See code: [src/commands/clients/update.ts](https://github.com/heroku/cli/blob/v8.10.0/src/commands/clients/update.ts)_
_See code: [src/commands/clients/update.ts](https://github.com/heroku/cli/blob/v8.11.0/src/commands/clients/update.ts)_

0 comments on commit a525d5e

Please sign in to comment.