diff --git a/CHANGELOG.md b/CHANGELOG.md index 89ee69f1d1..f23530221b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.4.0](https://github.com/heroku/cli/compare/v8.3.1...v8.4.0) (2023-08-23) + + +### Bug Fixes + +* rollbar version segmentation and telemetry initialization ([#2451](https://github.com/heroku/cli/issues/2451)) ([46725e7](https://github.com/heroku/cli/commit/46725e712f6d8bc17ff3b34bc4dc7e296bbf08fe)) + + + + + ## [8.3.1](https://github.com/heroku/cli/compare/v8.3.0...v8.3.1) (2023-08-18) diff --git a/docs/addons.md b/docs/addons.md index e8cf09bf96..93a88ded74 100644 --- a/docs/addons.md +++ b/docs/addons.md @@ -99,6 +99,7 @@ FLAGS -c, --confirm= -f, --force allow destruction even if connected to other apps -r, --remote= git remote of app to use + --wait watch add-on destruction status and exit when complete DESCRIPTION permanently destroy an add-on resource diff --git a/docs/auth.md b/docs/auth.md index 3082b974ef..1f0b3627d4 100644 --- a/docs/auth.md +++ b/docs/auth.md @@ -26,7 +26,7 @@ ALIASES $ heroku twofactor ``` -_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/auth/2fa/index.ts)_ +_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/auth/2fa/index.ts)_ ## `heroku auth:2fa:disable` @@ -47,7 +47,7 @@ EXAMPLES $ heroku auth:2fa:disable ``` -_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/auth/2fa/disable.ts)_ +_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/auth/2fa/disable.ts)_ ## `heroku auth:login` @@ -69,7 +69,7 @@ ALIASES $ heroku login ``` -_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/auth/login.ts)_ +_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/auth/login.ts)_ ## `heroku auth:logout` @@ -86,7 +86,7 @@ ALIASES $ heroku logout ``` -_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/auth/logout.ts)_ +_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/auth/logout.ts)_ ## `heroku auth:token` @@ -105,7 +105,7 @@ DESCRIPTION authorizations:create ``` -_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/auth/token.ts)_ +_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/auth/token.ts)_ ## `heroku auth:whoami` @@ -122,4 +122,4 @@ ALIASES $ heroku whoami ``` -_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/auth/whoami.ts)_ +_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/auth/whoami.ts)_ diff --git a/docs/authorizations.md b/docs/authorizations.md index c6ab1dba1e..b476fc3fff 100644 --- a/docs/authorizations.md +++ b/docs/authorizations.md @@ -29,7 +29,7 @@ EXAMPLES $ heroku authorizations ``` -_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/authorizations/index.ts)_ +_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/authorizations/index.ts)_ ## `heroku authorizations:create` @@ -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.3.1/src/commands/authorizations/create.ts)_ +_See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/authorizations/create.ts)_ ## `heroku authorizations:destroy ID` @@ -89,7 +89,7 @@ DESCRIPTION show an existing OAuth authorization ``` -_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/authorizations/info.ts)_ +_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/authorizations/info.ts)_ ## `heroku authorizations:revoke ID` @@ -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.3.1/src/commands/authorizations/revoke.ts)_ +_See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/authorizations/revoke.ts)_ ## `heroku authorizations:rotate ID` @@ -124,7 +124,7 @@ DESCRIPTION updates an OAuth authorization token ``` -_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/authorizations/rotate.ts)_ +_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/authorizations/rotate.ts)_ ## `heroku authorizations:update ID` @@ -143,4 +143,4 @@ DESCRIPTION updates an OAuth authorization ``` -_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/authorizations/update.ts)_ +_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/authorizations/update.ts)_ diff --git a/docs/autocomplete.md b/docs/autocomplete.md index 4d9127adcc..627507d0c3 100644 --- a/docs/autocomplete.md +++ b/docs/autocomplete.md @@ -32,4 +32,4 @@ EXAMPLES $ heroku autocomplete --refresh-cache ``` -_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/autocomplete/index.ts)_ +_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/autocomplete/index.ts)_ diff --git a/docs/buildpacks.md b/docs/buildpacks.md index 0a0d4d04f0..3eb7571027 100644 --- a/docs/buildpacks.md +++ b/docs/buildpacks.md @@ -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.3.1/src/commands/buildpacks/index.ts)_ +_See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/index.ts)_ ## `heroku buildpacks:add BUILDPACK` @@ -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.3.1/src/commands/buildpacks/add.ts)_ +_See code: [src/commands/buildpacks/add.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/add.ts)_ ## `heroku buildpacks:clear` @@ -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.3.1/src/commands/buildpacks/clear.ts)_ +_See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/clear.ts)_ ## `heroku buildpacks:info BUILDPACK` @@ -85,7 +85,7 @@ DESCRIPTION fetch info about a buildpack ``` -_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/buildpacks/info.ts)_ +_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/info.ts)_ ## `heroku buildpacks:remove [BUILDPACK]` @@ -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.3.1/src/commands/buildpacks/remove.ts)_ +_See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/remove.ts)_ ## `heroku buildpacks:search [TERM]` @@ -129,7 +129,7 @@ DESCRIPTION search for buildpacks ``` -_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/buildpacks/search.ts)_ +_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/search.ts)_ ## `heroku buildpacks:set BUILDPACK` @@ -146,7 +146,7 @@ FLAGS -r, --remote= git remote of app to use ``` -_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/buildpacks/set.ts)_ +_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/set.ts)_ ## `heroku buildpacks:versions BUILDPACK` @@ -163,4 +163,4 @@ DESCRIPTION list versions of a buildpack ``` -_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/buildpacks/versions.ts)_ +_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/buildpacks/versions.ts)_ diff --git a/docs/ci.md b/docs/ci.md index c13ac8702b..15cd4f8a6f 100644 --- a/docs/ci.md +++ b/docs/ci.md @@ -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.3.1/src/commands/ci/index.ts)_ +_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ci/index.ts)_ ## `heroku ci:config` @@ -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.3.1/src/commands/ci/info.ts)_ +_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ci/info.ts)_ ## `heroku ci:last` @@ -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.3.1/src/commands/ci/last.ts)_ +_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ci/last.ts)_ ## `heroku ci:migrate-manifest` @@ -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.3.1/src/commands/ci/rerun.ts)_ +_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ci/rerun.ts)_ ## `heroku ci:run` @@ -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.3.1/src/commands/ci/run.ts)_ +_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ci/run.ts)_ diff --git a/docs/clients.md b/docs/clients.md index 1aa761711c..92b2b46999 100644 --- a/docs/clients.md +++ b/docs/clients.md @@ -25,7 +25,7 @@ DESCRIPTION list your OAuth clients ``` -_See code: [src/commands/clients/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/clients/index.ts)_ +_See code: [src/commands/clients/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/clients/index.ts)_ ## `heroku clients:create NAME REDIRECT_URI` @@ -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.3.1/src/commands/clients/create.ts)_ +_See code: [src/commands/clients/create.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/clients/create.ts)_ ## `heroku clients:destroy ID` @@ -60,7 +60,7 @@ DESCRIPTION delete client by ID ``` -_See code: [src/commands/clients/destroy.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/clients/destroy.ts)_ +_See code: [src/commands/clients/destroy.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/clients/destroy.ts)_ ## `heroku clients:info ID` @@ -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.3.1/src/commands/clients/info.ts)_ +_See code: [src/commands/clients/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/clients/info.ts)_ ## `heroku clients:rotate ID` @@ -99,7 +99,7 @@ DESCRIPTION rotate OAuth client secret ``` -_See code: [src/commands/clients/rotate.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/clients/rotate.ts)_ +_See code: [src/commands/clients/rotate.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/clients/rotate.ts)_ ## `heroku clients:update ID` @@ -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.3.1/src/commands/clients/update.ts)_ +_See code: [src/commands/clients/update.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/clients/update.ts)_ diff --git a/docs/config.md b/docs/config.md index 5d20958889..99758d6adc 100644 --- a/docs/config.md +++ b/docs/config.md @@ -28,7 +28,7 @@ DESCRIPTION display the config vars for an app ``` -_See code: [src/commands/config/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/config/index.ts)_ +_See code: [src/commands/config/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/config/index.ts)_ ## `heroku config:edit [KEY]` @@ -64,7 +64,7 @@ EXAMPLES $ VISUAL="atom --wait" heroku config:edit ``` -_See code: [src/commands/config/edit.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/config/edit.ts)_ +_See code: [src/commands/config/edit.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/config/edit.ts)_ ## `heroku config:get KEY...` @@ -87,7 +87,7 @@ EXAMPLES production ``` -_See code: [src/commands/config/get.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/config/get.ts)_ +_See code: [src/commands/config/get.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/config/get.ts)_ ## `heroku config:remove` @@ -167,4 +167,4 @@ EXAMPLES Unsetting RAILS_ENV, RACK_ENV and restarting example... done, v10 ``` -_See code: [src/commands/config/unset.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/config/unset.ts)_ +_See code: [src/commands/config/unset.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/config/unset.ts)_ diff --git a/docs/domains.md b/docs/domains.md index 7bd7b87ca7..57b6172ec2 100644 --- a/docs/domains.md +++ b/docs/domains.md @@ -48,7 +48,7 @@ EXAMPLES $ heroku domains --filter 'Domain Name=www.example.com' ``` -_See code: [src/commands/domains/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/domains/index.ts)_ +_See code: [src/commands/domains/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/domains/index.ts)_ ## `heroku domains:add HOSTNAME` @@ -73,7 +73,7 @@ EXAMPLES $ heroku domains:add www.example.com ``` -_See code: [src/commands/domains/add.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/domains/add.ts)_ +_See code: [src/commands/domains/add.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/domains/add.ts)_ ## `heroku domains:clear` @@ -95,7 +95,7 @@ EXAMPLES $ heroku domains:clear ``` -_See code: [src/commands/domains/clear.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/domains/clear.ts)_ +_See code: [src/commands/domains/clear.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/domains/clear.ts)_ ## `heroku domains:info HOSTNAME` @@ -117,7 +117,7 @@ EXAMPLES $ heroku domains:info www.example.com ``` -_See code: [src/commands/domains/info.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/domains/info.ts)_ +_See code: [src/commands/domains/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/domains/info.ts)_ ## `heroku domains:remove HOSTNAME` @@ -139,7 +139,7 @@ EXAMPLES $ heroku domains:remove www.example.com ``` -_See code: [src/commands/domains/remove.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/domains/remove.ts)_ +_See code: [src/commands/domains/remove.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/domains/remove.ts)_ ## `heroku domains:update HOSTNAME` @@ -162,7 +162,7 @@ EXAMPLES $ heroku domains:update www.example.com --cert mycert ``` -_See code: [src/commands/domains/update.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/domains/update.ts)_ +_See code: [src/commands/domains/update.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/domains/update.ts)_ ## `heroku domains:wait [HOSTNAME]` @@ -181,4 +181,4 @@ DESCRIPTION wait for domain to be active for an app ``` -_See code: [src/commands/domains/wait.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/domains/wait.ts)_ +_See code: [src/commands/domains/wait.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/domains/wait.ts)_ diff --git a/docs/git.md b/docs/git.md index 8262db0c6d..b478caa26b 100644 --- a/docs/git.md +++ b/docs/git.md @@ -31,7 +31,7 @@ EXAMPLES ... ``` -_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/git/clone.ts)_ +_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/git/clone.ts)_ ## `heroku git:remote` @@ -57,4 +57,4 @@ EXAMPLES $ heroku git:remote --remote heroku-staging -a example ``` -_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/git/remote.ts)_ +_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/git/remote.ts)_ diff --git a/docs/labs.md b/docs/labs.md index 8d4282b63c..7401c981de 100644 --- a/docs/labs.md +++ b/docs/labs.md @@ -42,7 +42,7 @@ DESCRIPTION disables an experimental feature ``` -_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/labs/disable.ts)_ +_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/labs/disable.ts)_ ## `heroku labs:enable FEATURE` diff --git a/docs/local.md b/docs/local.md index f8a2fb7be7..25e465360b 100644 --- a/docs/local.md +++ b/docs/local.md @@ -35,7 +35,7 @@ EXAMPLES $ heroku local web=1,worker=2 ``` -_See code: [src/commands/local/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/local/index.ts)_ +_See code: [src/commands/local/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/local/index.ts)_ ## `heroku local:run` @@ -56,7 +56,7 @@ EXAMPLES $ heroku local:run bin/migrate ``` -_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/local/run.ts)_ +_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/local/run.ts)_ ## `heroku local:start [PROCESSNAME]` @@ -97,4 +97,4 @@ DESCRIPTION display node-foreman version ``` -_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/local/version.ts)_ +_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/local/version.ts)_ diff --git a/docs/logs.md b/docs/logs.md index d3c0e0d335..81205083d5 100644 --- a/docs/logs.md +++ b/docs/logs.md @@ -36,4 +36,4 @@ EXAMPLES $ heroku logs --app=my-app --tail ``` -_See code: [src/commands/logs.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/logs.ts)_ +_See code: [src/commands/logs.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/logs.ts)_ diff --git a/docs/pipelines.md b/docs/pipelines.md index 6eb57dfe2f..7df0cad32e 100644 --- a/docs/pipelines.md +++ b/docs/pipelines.md @@ -1,7 +1,7 @@ `heroku pipelines` ================== -list pipelines you have access to +manage pipelines * [`heroku pipelines`](#heroku-pipelines) * [`heroku pipelines:add PIPELINE`](#heroku-pipelinesadd-pipeline) @@ -36,7 +36,7 @@ EXAMPLES $ heroku pipelines ``` -_See code: [src/commands/pipelines/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/index.ts)_ +_See code: [src/commands/pipelines/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/index.ts)_ ## `heroku pipelines:add PIPELINE` @@ -63,7 +63,7 @@ EXAMPLES $ heroku pipelines:add my-pipeline -a my-app -s production ``` -_See code: [src/commands/pipelines/add.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/add.ts)_ +_See code: [src/commands/pipelines/add.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/add.ts)_ ## `heroku pipelines:connect NAME` @@ -86,7 +86,7 @@ EXAMPLES $ heroku pipelines:connect my-pipeline -r githuborg/reponame ``` -_See code: [src/commands/pipelines/connect.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/connect.ts)_ +_See code: [src/commands/pipelines/connect.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/connect.ts)_ ## `heroku pipelines:create [NAME]` @@ -118,7 +118,7 @@ EXAMPLES $ heroku pipelines:create my-pipeline -a my-app-staging ``` -_See code: [src/commands/pipelines/create.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/create.ts)_ +_See code: [src/commands/pipelines/create.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/create.ts)_ ## `heroku pipelines:destroy PIPELINE` @@ -138,7 +138,7 @@ EXAMPLES $ heroku pipelines:destroy my-pipeline ``` -_See code: [src/commands/pipelines/destroy.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/destroy.ts)_ +_See code: [src/commands/pipelines/destroy.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/destroy.ts)_ ## `heroku pipelines:diff` @@ -159,7 +159,7 @@ EXAMPLES $ heroku pipelines:diff -a my-app-staging ``` -_See code: [src/commands/pipelines/diff.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/diff.ts)_ +_See code: [src/commands/pipelines/diff.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/diff.ts)_ ## `heroku pipelines:info PIPELINE` @@ -182,7 +182,7 @@ EXAMPLES $ heroku pipelines:info my-pipeline ``` -_See code: [src/commands/pipelines/info.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/info.ts)_ +_See code: [src/commands/pipelines/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/info.ts)_ ## `heroku pipelines:open PIPELINE` @@ -202,7 +202,7 @@ EXAMPLES $ heroku pipelines:open my-pipeline ``` -_See code: [src/commands/pipelines/open.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/open.ts)_ +_See code: [src/commands/pipelines/open.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/open.ts)_ ## `heroku pipelines:promote` @@ -224,7 +224,7 @@ EXAMPLES $ heroku pipelines:promote -a my-app-staging ``` -_See code: [src/commands/pipelines/promote.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/promote.ts)_ +_See code: [src/commands/pipelines/promote.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/promote.ts)_ ## `heroku pipelines:remove` @@ -245,7 +245,7 @@ EXAMPLES $ heroku pipelines:remove -a my-app ``` -_See code: [src/commands/pipelines/remove.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/remove.ts)_ +_See code: [src/commands/pipelines/remove.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/remove.ts)_ ## `heroku pipelines:rename PIPELINE NAME` @@ -266,7 +266,7 @@ EXAMPLES $ heroku pipelines:rename my-pipeline new-pipeline-name ``` -_See code: [src/commands/pipelines/rename.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/rename.ts)_ +_See code: [src/commands/pipelines/rename.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/rename.ts)_ ## `heroku pipelines:setup [NAME] [REPO]` @@ -292,7 +292,7 @@ EXAMPLES $ heroku pipelines:setup my-pipeline githuborg/reponame -t my-team ``` -_See code: [src/commands/pipelines/setup.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/setup.ts)_ +_See code: [src/commands/pipelines/setup.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/setup.ts)_ ## `heroku pipelines:transfer OWNER` @@ -318,7 +318,7 @@ EXAMPLES $ heroku pipelines:transfer admin-team -p my-pipeline ``` -_See code: [src/commands/pipelines/transfer.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/transfer.ts)_ +_See code: [src/commands/pipelines/transfer.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/transfer.ts)_ ## `heroku pipelines:update` @@ -340,4 +340,4 @@ EXAMPLES $ heroku pipelines:update -s staging -a my-app ``` -_See code: [src/commands/pipelines/update.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/pipelines/update.ts)_ +_See code: [src/commands/pipelines/update.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/pipelines/update.ts)_ diff --git a/docs/ps.md b/docs/ps.md index ac7c652231..06009016dd 100644 --- a/docs/ps.md +++ b/docs/ps.md @@ -62,7 +62,7 @@ DESCRIPTION disable web dyno autoscaling ``` -_See code: [src/commands/ps/autoscale/disable.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/ps/autoscale/disable.ts)_ +_See code: [src/commands/ps/autoscale/disable.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ps/autoscale/disable.ts)_ ## `heroku ps:autoscale:enable` @@ -84,7 +84,7 @@ DESCRIPTION enable web dyno autoscaling ``` -_See code: [src/commands/ps/autoscale/enable.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/ps/autoscale/enable.ts)_ +_See code: [src/commands/ps/autoscale/enable.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ps/autoscale/enable.ts)_ ## `heroku ps:copy FILE` @@ -341,4 +341,4 @@ DESCRIPTION wait for all dynos to be running latest version after a release ``` -_See code: [src/commands/ps/wait.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/ps/wait.ts)_ +_See code: [src/commands/ps/wait.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/ps/wait.ts)_ diff --git a/docs/regions.md b/docs/regions.md index 70637155ee..0f9e0c422a 100644 --- a/docs/regions.md +++ b/docs/regions.md @@ -22,4 +22,4 @@ DESCRIPTION list available regions for deployment ``` -_See code: [src/commands/regions.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/regions.ts)_ +_See code: [src/commands/regions.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/regions.ts)_ diff --git a/docs/reviewapps.md b/docs/reviewapps.md index e5ab8b7a7d..06852059a4 100644 --- a/docs/reviewapps.md +++ b/docs/reviewapps.md @@ -1,7 +1,7 @@ `heroku reviewapps` =================== -disable review apps and/or settings on an existing pipeline +manage reviewapps in pipelines * [`heroku reviewapps:disable`](#heroku-reviewappsdisable) * [`heroku reviewapps:enable`](#heroku-reviewappsenable) @@ -30,7 +30,7 @@ EXAMPLES $ heroku reviewapps:disable -p my-pipeline -a my-app --no-autodeploy ``` -_See code: [src/commands/reviewapps/disable.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/reviewapps/disable.ts)_ +_See code: [src/commands/reviewapps/disable.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/reviewapps/disable.ts)_ ## `heroku reviewapps:enable` @@ -55,4 +55,4 @@ EXAMPLES $ heroku reviewapps:enable -p my-pipeline -a my-app --autodeploy --autodestroy ``` -_See code: [src/commands/reviewapps/enable.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/reviewapps/enable.ts)_ +_See code: [src/commands/reviewapps/enable.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/reviewapps/enable.ts)_ diff --git a/docs/run.md b/docs/run.md index afdf56eddc..58acb6a097 100644 --- a/docs/run.md +++ b/docs/run.md @@ -35,7 +35,7 @@ EXAMPLES $ heroku run -s standard-2x -- myscript.sh -a arg1 -s arg2 ``` -_See code: [src/commands/run/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/run/index.ts)_ +_See code: [src/commands/run/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/run/index.ts)_ ## `heroku run:detached` @@ -60,4 +60,4 @@ EXAMPLES $ heroku run:detached ls ``` -_See code: [src/commands/run/detached.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/run/detached.ts)_ +_See code: [src/commands/run/detached.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/run/detached.ts)_ diff --git a/docs/sessions.md b/docs/sessions.md index b89985a174..461c81be12 100644 --- a/docs/sessions.md +++ b/docs/sessions.md @@ -21,7 +21,7 @@ DESCRIPTION list your OAuth sessions ``` -_See code: [src/commands/sessions/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/sessions/index.ts)_ +_See code: [src/commands/sessions/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/sessions/index.ts)_ ## `heroku sessions:destroy ID` @@ -35,4 +35,4 @@ DESCRIPTION delete (logout) OAuth session by ID ``` -_See code: [src/commands/sessions/destroy.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/sessions/destroy.ts)_ +_See code: [src/commands/sessions/destroy.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/sessions/destroy.ts)_ diff --git a/docs/status.md b/docs/status.md index 0987dd4b36..9f1ca99c8c 100644 --- a/docs/status.md +++ b/docs/status.md @@ -20,4 +20,4 @@ DESCRIPTION display current status of the Heroku platform ``` -_See code: [src/commands/status.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/status.ts)_ +_See code: [src/commands/status.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/status.ts)_ diff --git a/docs/webhooks.md b/docs/webhooks.md index f1a05792be..bd77abc007 100644 --- a/docs/webhooks.md +++ b/docs/webhooks.md @@ -32,7 +32,7 @@ EXAMPLES $ heroku webhooks ``` -_See code: [src/commands/webhooks/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/index.ts)_ +_See code: [src/commands/webhooks/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/index.ts)_ ## `heroku webhooks:add` @@ -58,7 +58,7 @@ EXAMPLES $ heroku webhooks:add -i api:dyno -l notify -u https://example.com/hooks ``` -_See code: [src/commands/webhooks/add.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/add.ts)_ +_See code: [src/commands/webhooks/add.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/add.ts)_ ## `heroku webhooks:deliveries` @@ -80,7 +80,7 @@ EXAMPLES $ heroku webhooks:deliveries ``` -_See code: [src/commands/webhooks/deliveries/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/deliveries/index.ts)_ +_See code: [src/commands/webhooks/deliveries/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/deliveries/index.ts)_ ## `heroku webhooks:deliveries:info ID` @@ -101,7 +101,7 @@ EXAMPLES $ heroku webhooks:deliveries:info 99999999-9999-9999-9999-999999999999 ``` -_See code: [src/commands/webhooks/deliveries/info.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/deliveries/info.ts)_ +_See code: [src/commands/webhooks/deliveries/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/deliveries/info.ts)_ ## `heroku webhooks:events` @@ -122,7 +122,7 @@ EXAMPLES $ heroku webhooks:events ``` -_See code: [src/commands/webhooks/events/index.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/events/index.ts)_ +_See code: [src/commands/webhooks/events/index.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/events/index.ts)_ ## `heroku webhooks:events:info ID` @@ -143,7 +143,7 @@ EXAMPLES $ heroku webhooks:events:info 99999999-9999-9999-9999-999999999999 ``` -_See code: [src/commands/webhooks/events/info.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/events/info.ts)_ +_See code: [src/commands/webhooks/events/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/events/info.ts)_ ## `heroku webhooks:info ID` @@ -164,7 +164,7 @@ EXAMPLES $ heroku webhooks:info 99999999-9999-9999-9999-999999999999 ``` -_See code: [src/commands/webhooks/info.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/info.ts)_ +_See code: [src/commands/webhooks/info.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/info.ts)_ ## `heroku webhooks:remove ID` @@ -188,7 +188,7 @@ EXAMPLES $ heroku webhooks:remove 99999999-9999-9999-9999-999999999999 ``` -_See code: [src/commands/webhooks/remove.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/remove.ts)_ +_See code: [src/commands/webhooks/remove.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/remove.ts)_ ## `heroku webhooks:update ID` @@ -214,4 +214,4 @@ EXAMPLES $ heroku webhooks:update 99999999-9999-9999-9999-999999999999 -i dyno -l notify -s 09928c40bf1b191b645174a19f7053d16a180da37332e719ef0998f4c0a2 -u https://example.com/hooks ``` -_See code: [src/commands/webhooks/update.ts](https://github.com/heroku/cli/blob/v8.3.1/src/commands/webhooks/update.ts)_ +_See code: [src/commands/webhooks/update.ts](https://github.com/heroku/cli/blob/v8.4.0/src/commands/webhooks/update.ts)_ diff --git a/lerna.json b/lerna.json index 73d3dd9cea..63b1a8a0a1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "8.3.1", + "version": "8.4.0", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/packages/addons-v5/CHANGELOG.md b/packages/addons-v5/CHANGELOG.md index f0aef8b36f..862c18dc78 100644 --- a/packages/addons-v5/CHANGELOG.md +++ b/packages/addons-v5/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [8.4.0](https://github.com/heroku/cli/compare/v8.3.1...v8.4.0) (2023-08-23) + + +### Features + +* **addons-v5:** handle asynchronous deprovisioning state ([#2422](https://github.com/heroku/cli/issues/2422)) ([e83df2c](https://github.com/heroku/cli/commit/e83df2c67d57ca31aec2cd55f7c68bf91983f19c)) + + +### Reverts + +* Revert "Revert "refactor: add per hour and max price per month to pricing displays"" (#2448) ([dd535a5](https://github.com/heroku/cli/commit/dd535a506e781e24b48208dcb666947a201460ba)), closes [#2448](https://github.com/heroku/cli/issues/2448) [#2439](https://github.com/heroku/cli/issues/2439) [#2447](https://github.com/heroku/cli/issues/2447) + + + + + # [8.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) diff --git a/packages/addons-v5/README.md b/packages/addons-v5/README.md index 69e39cde4f..2f60a50c90 100644 --- a/packages/addons-v5/README.md +++ b/packages/addons-v5/README.md @@ -103,6 +103,7 @@ FLAGS -c, --confirm= -f, --force allow destruction even if connected to other apps -r, --remote= git remote of app to use + --wait watch add-on destruction status and exit when complete DESCRIPTION permanently destroy an add-on resource diff --git a/packages/addons-v5/package.json b/packages/addons-v5/package.json index b3e1a4a7ed..159e87e958 100644 --- a/packages/addons-v5/package.json +++ b/packages/addons-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-addons-v5", "description": "`heroku addons:*` commands", - "version": "8.2.0", + "version": "8.4.0", "author": "Bo Jeanes @bjeanes", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/apps-v5/CHANGELOG.md b/packages/apps-v5/CHANGELOG.md index 948d4cfd65..e7fde61726 100644 --- a/packages/apps-v5/CHANGELOG.md +++ b/packages/apps-v5/CHANGELOG.md @@ -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.4.0](https://github.com/heroku/cli/compare/v8.3.1...v8.4.0) (2023-08-23) + + +### Reverts + +* Revert "Revert "refactor: add per hour and max price per month to pricing displays"" (#2448) ([dd535a5](https://github.com/heroku/cli/commit/dd535a506e781e24b48208dcb666947a201460ba)), closes [#2448](https://github.com/heroku/cli/issues/2448) [#2439](https://github.com/heroku/cli/issues/2439) [#2447](https://github.com/heroku/cli/issues/2447) + + + + + # [8.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) diff --git a/packages/apps-v5/README.md b/packages/apps-v5/README.md index f19c4ced70..5d291c12a7 100644 --- a/packages/apps-v5/README.md +++ b/packages/apps-v5/README.md @@ -13,7 +13,7 @@ $ npm install -g @heroku-cli/plugin-apps-v5 $ heroku COMMAND running command... $ heroku (--version) -@heroku-cli/plugin-apps-v5/8.2.0 darwin-x64 node-v16.19.0 +@heroku-cli/plugin-apps-v5/8.4.0 darwin-arm64 node-v16.19.0 $ heroku --help [COMMAND] USAGE $ heroku COMMAND diff --git a/packages/apps-v5/package.json b/packages/apps-v5/package.json index 55e309fe66..fa723cf21a 100644 --- a/packages/apps-v5/package.json +++ b/packages/apps-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-apps-v5", "description": "Heroku CLI plugin to manage apps.", - "version": "8.2.0", + "version": "8.4.0", "author": "Jeff Dickey (@jdxcode)", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 89ee69f1d1..f23530221b 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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.4.0](https://github.com/heroku/cli/compare/v8.3.1...v8.4.0) (2023-08-23) + + +### Bug Fixes + +* rollbar version segmentation and telemetry initialization ([#2451](https://github.com/heroku/cli/issues/2451)) ([46725e7](https://github.com/heroku/cli/commit/46725e712f6d8bc17ff3b34bc4dc7e296bbf08fe)) + + + + + ## [8.3.1](https://github.com/heroku/cli/compare/v8.3.0...v8.3.1) (2023-08-18) diff --git a/packages/cli/README.md b/packages/cli/README.md index a648f556ea..f1bdca06fa 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -56,15 +56,17 @@ For other issues, [submit a support ticket](https://help.heroku.com/). * [`heroku logs`](docs/logs.md) - display recent log output * [`heroku maintenance`](docs/maintenance.md) - enable/disable access to app * [`heroku members`](docs/members.md) - manage organization members +* [`heroku notifications`](docs/notifications.md) - display notifications * [`heroku orgs`](docs/orgs.md) - manage organizations * [`heroku pg`](docs/pg.md) - manage postgresql databases -* [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to +* [`heroku pipelines`](docs/pipelines.md) - manage pipelines * [`heroku plugins`](docs/plugins.md) - List installed plugins. * [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec * [`heroku psql`](docs/psql.md) - open a psql shell to the database * [`heroku redis`](docs/redis.md) - manage heroku redis instances * [`heroku regions`](docs/regions.md) - list available regions for deployment -* [`heroku reviewapps`](docs/reviewapps.md) - disable review apps and/or settings on an existing pipeline +* [`heroku releases`](docs/releases.md) - display the releases for an app +* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines * [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno * [`heroku sessions`](docs/sessions.md) - OAuth sessions * [`heroku spaces`](docs/spaces.md) - manage heroku private spaces diff --git a/packages/cli/package.json b/packages/cli/package.json index e7af705818..db22ac83b8 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "heroku", "description": "CLI to interact with Heroku", - "version": "8.3.1", + "version": "8.4.0", "author": "Jeff Dickey @jdxcode", "bin": "./bin/run", "bugs": "https://github.com/heroku/cli/issues", @@ -9,8 +9,8 @@ "@heroku-cli/color": "1.1.14", "@heroku-cli/command": "^10.0.0", "@heroku-cli/notifications": "^1.2.2", - "@heroku-cli/plugin-addons-v5": "^8.2.0", - "@heroku-cli/plugin-apps-v5": "^8.2.0", + "@heroku-cli/plugin-addons-v5": "^8.4.0", + "@heroku-cli/plugin-apps-v5": "^8.4.0", "@heroku-cli/plugin-certs-v5": "^8.2.0", "@heroku-cli/plugin-ci-v5": "^8.2.0", "@heroku-cli/plugin-container-registry-v5": "^8.2.0", @@ -19,7 +19,7 @@ "@heroku-cli/plugin-ps": "^8.1.7", "@heroku-cli/plugin-ps-exec": "^2.4.0", "@heroku-cli/plugin-redis-v5": "^8.2.0", - "@heroku-cli/plugin-spaces": "^8.2.0", + "@heroku-cli/plugin-spaces": "^8.4.0", "@heroku-cli/schema": "^1.0.25", "@heroku/buildpack-registry": "^1.0.1", "@heroku/eventsource": "^1.0.7", diff --git a/packages/spaces/CHANGELOG.md b/packages/spaces/CHANGELOG.md index e32eaab8e7..721f7ec8e4 100644 --- a/packages/spaces/CHANGELOG.md +++ b/packages/spaces/CHANGELOG.md @@ -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.4.0](https://github.com/heroku/cli/compare/v8.3.1...v8.4.0) (2023-08-23) + + +### Reverts + +* Revert "Revert "refactor: add per hour and max price per month to pricing displays"" (#2448) ([dd535a5](https://github.com/heroku/cli/commit/dd535a506e781e24b48208dcb666947a201460ba)), closes [#2448](https://github.com/heroku/cli/issues/2448) [#2439](https://github.com/heroku/cli/issues/2439) [#2447](https://github.com/heroku/cli/issues/2447) + + + + + # [8.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) diff --git a/packages/spaces/package.json b/packages/spaces/package.json index a1ba1be186..700062746b 100644 --- a/packages/spaces/package.json +++ b/packages/spaces/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-spaces", "description": "Heroku plugin to manage Heroku Private Spaces", - "version": "8.2.0", + "version": "8.4.0", "author": "Heroku", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/yarn.lock b/yarn.lock index f982fd8a9e..183431e8c8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -535,7 +535,7 @@ __metadata: languageName: node linkType: hard -"@heroku-cli/plugin-addons-v5@^8.2.0, @heroku-cli/plugin-addons-v5@workspace:packages/addons-v5": +"@heroku-cli/plugin-addons-v5@^8.4.0, @heroku-cli/plugin-addons-v5@workspace:packages/addons-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-addons-v5@workspace:packages/addons-v5" dependencies: @@ -572,7 +572,7 @@ __metadata: languageName: node linkType: hard -"@heroku-cli/plugin-apps-v5@^8.2.0, @heroku-cli/plugin-apps-v5@workspace:packages/apps-v5": +"@heroku-cli/plugin-apps-v5@^8.4.0, @heroku-cli/plugin-apps-v5@workspace:packages/apps-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-apps-v5@workspace:packages/apps-v5" dependencies: @@ -834,7 +834,7 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-spaces@^8.2.0, @heroku-cli/plugin-spaces@workspace:packages/spaces": +"@heroku-cli/plugin-spaces@^8.4.0, @heroku-cli/plugin-spaces@workspace:packages/spaces": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-spaces@workspace:packages/spaces" dependencies: @@ -9241,8 +9241,8 @@ __metadata: "@heroku-cli/color": 1.1.14 "@heroku-cli/command": ^10.0.0 "@heroku-cli/notifications": ^1.2.2 - "@heroku-cli/plugin-addons-v5": ^8.2.0 - "@heroku-cli/plugin-apps-v5": ^8.2.0 + "@heroku-cli/plugin-addons-v5": ^8.4.0 + "@heroku-cli/plugin-apps-v5": ^8.4.0 "@heroku-cli/plugin-certs-v5": ^8.2.0 "@heroku-cli/plugin-ci-v5": ^8.2.0 "@heroku-cli/plugin-container-registry-v5": ^8.2.0 @@ -9251,7 +9251,7 @@ __metadata: "@heroku-cli/plugin-ps": ^8.1.7 "@heroku-cli/plugin-ps-exec": ^2.4.0 "@heroku-cli/plugin-redis-v5": ^8.2.0 - "@heroku-cli/plugin-spaces": ^8.2.0 + "@heroku-cli/plugin-spaces": ^8.4.0 "@heroku-cli/schema": ^1.0.25 "@heroku/buildpack-registry": ^1.0.1 "@heroku/eventsource": ^1.0.7