From 1875102f332f215ad9788b5fc117b4a2bd6bbd8c Mon Sep 17 00:00:00 2001 From: RyanDagg Date: Tue, 15 Aug 2023 09:44:55 -0700 Subject: [PATCH] release v8.2.0 (#2437) * v8.2.0 * fix: update yarn.lock --- CHANGELOG.md | 19 ++++++++++ docs/auth.md | 12 +++++++ docs/authorizations.md | 37 ++++++++++++++----- docs/autocomplete.md | 2 ++ docs/buildpacks.md | 16 +++++++++ docs/certs.md | 24 +++++++++++++ docs/ci.md | 10 ++++++ docs/clients.md | 23 +++++++++++- docs/config.md | 8 +++++ docs/domains.md | 22 +++++++++--- docs/git.md | 6 +++- docs/help.md | 2 ++ docs/labs.md | 8 +++-- docs/local.md | 6 ++++ docs/logs.md | 2 ++ docs/pipelines.md | 30 +++++++++++++++- docs/plugins.md | 12 +++++++ docs/ps.md | 6 ++++ docs/regions.md | 2 ++ docs/reviewapps.md | 6 +++- docs/run.md | 4 +++ docs/sessions.md | 4 +++ docs/status.md | 2 ++ docs/update.md | 2 ++ docs/version.md | 2 ++ docs/webhooks.md | 18 ++++++++++ lerna.json | 2 +- packages/addons-v5/CHANGELOG.md | 11 ++++++ packages/addons-v5/package.json | 2 +- packages/apps-v5/CHANGELOG.md | 11 ++++++ packages/apps-v5/README.md | 2 +- packages/apps-v5/package.json | 2 +- packages/certs-v5/CHANGELOG.md | 11 ++++++ packages/certs-v5/README.md | 24 ++++++------- packages/certs-v5/package.json | 2 +- packages/ci-v5/CHANGELOG.md | 11 ++++++ packages/ci-v5/package.json | 4 +-- packages/cli/CHANGELOG.md | 19 ++++++++++ packages/cli/README.md | 6 ++-- packages/cli/package.json | 20 +++++------ packages/container-registry-v5/CHANGELOG.md | 11 ++++++ packages/container-registry-v5/package.json | 2 +- packages/orgs-v5/CHANGELOG.md | 11 ++++++ packages/orgs-v5/package.json | 2 +- packages/pg-v5/CHANGELOG.md | 11 ++++++ packages/pg-v5/package.json | 2 +- packages/redis-v5/CHANGELOG.md | 11 ++++++ packages/redis-v5/package.json | 2 +- packages/run-v5/CHANGELOG.md | 11 ++++++ packages/run-v5/package.json | 2 +- packages/spaces/CHANGELOG.md | 11 ++++++ packages/spaces/package.json | 2 +- yarn.lock | 40 ++++++++++----------- 53 files changed, 453 insertions(+), 77 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bb5203cec..585e16fa67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [8.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* build cli for all tests to save time. ([#2436](https://github.com/heroku/cli/issues/2436)) ([c81c801](https://github.com/heroku/cli/commit/c81c801e310738460f3d27d7241bfa2462426dcd)) +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) +* turns out tslib is actually a runtime dependency, not just dev. ([#2427](https://github.com/heroku/cli/issues/2427)) ([76b3dc3](https://github.com/heroku/cli/commit/76b3dc3829a998c5235879f21b8b3795d1fd2044)) +* use correct path for update hooks ([#2426](https://github.com/heroku/cli/issues/2426)) ([e55e00f](https://github.com/heroku/cli/commit/e55e00f920a066af01f1febd697054f812183c92)) + + +### Features + +* **cli:** add rollbar ([#2424](https://github.com/heroku/cli/issues/2424)) ([9a52f2f](https://github.com/heroku/cli/commit/9a52f2f8e9c8bf27e0d5c5cf04ca592e61188359)) + + + + + ## [8.1.9](https://github.com/heroku/cli/compare/v8.1.8...v8.1.9) (2023-06-21) **Note:** Version bump only for package heroku diff --git a/docs/auth.md b/docs/auth.md index 113dee7560..b8312b7481 100644 --- a/docs/auth.md +++ b/docs/auth.md @@ -26,6 +26,8 @@ ALIASES $ heroku twofactor ``` +_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/2fa/index.ts)_ + ## `heroku auth:2fa:disable` disables 2fa on account @@ -45,6 +47,8 @@ EXAMPLES $ heroku auth:2fa:disable ``` +_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/2fa/disable.ts)_ + ## `heroku auth:login` login with your Heroku credentials @@ -65,6 +69,8 @@ ALIASES $ heroku login ``` +_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/login.ts)_ + ## `heroku auth:logout` clears local login credentials and invalidates API session @@ -80,6 +86,8 @@ ALIASES $ heroku logout ``` +_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/logout.ts)_ + ## `heroku auth:token` outputs current CLI authentication token. @@ -97,6 +105,8 @@ DESCRIPTION authorizations:create ``` +_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/token.ts)_ + ## `heroku auth:whoami` display the current logged in user @@ -111,3 +121,5 @@ DESCRIPTION ALIASES $ heroku whoami ``` + +_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/whoami.ts)_ diff --git a/docs/authorizations.md b/docs/authorizations.md index a63888af9c..b14481848f 100644 --- a/docs/authorizations.md +++ b/docs/authorizations.md @@ -24,28 +24,37 @@ FLAGS DESCRIPTION list OAuth authorizations + +EXAMPLES + $ heroku authorizations ``` +_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/index.ts)_ + ## `heroku authorizations:create` create a new OAuth authorization ``` USAGE - $ heroku authorizations:create [-d ] [-s ] [-e ] [-S] [-j] + $ heroku authorizations:create [-d ] [-S] [-j] [-s ] [-e ] FLAGS -S, --short only output token - -d, --description= set a custom authorization description + -d, --description= set a custom authorization -e, --expires-in= set expiration in seconds (default no expiration) -j, --json output in json format -s, --scope= set custom OAuth scopes DESCRIPTION create a new OAuth authorization - This creates an authorization with access to your Heroku account. + +EXAMPLES + $ heroku authorizations:create --description "For use with Anvil" ``` +_See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/create.ts)_ + ## `heroku authorizations:destroy ID` revoke OAuth authorization @@ -57,10 +66,12 @@ USAGE DESCRIPTION revoke OAuth authorization - ALIASES - $ heroku authorizations:destroy $ heroku authorizations:revoke + $ heroku authorizations:destroy + +EXAMPLES + $ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb ``` ## `heroku authorizations:info ID` @@ -78,6 +89,8 @@ DESCRIPTION show an existing OAuth authorization ``` +_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/info.ts)_ + ## `heroku authorizations:revoke ID` revoke OAuth authorization @@ -89,12 +102,16 @@ USAGE DESCRIPTION revoke OAuth authorization - ALIASES - $ heroku authorizations:destroy $ heroku authorizations:revoke + $ heroku authorizations:destroy + +EXAMPLES + $ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb ``` +_See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/revoke.ts)_ + ## `heroku authorizations:rotate ID` updates an OAuth authorization token @@ -107,13 +124,15 @@ DESCRIPTION updates an OAuth authorization token ``` +_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/rotate.ts)_ + ## `heroku authorizations:update ID` updates an OAuth authorization ``` USAGE - $ heroku authorizations:update ID [-d ] [--client-id ] [--client-secret ] + $ heroku authorizations:update ID [-d ] [--client-id --client-secret ] FLAGS -d, --description= set a custom authorization description @@ -123,3 +142,5 @@ FLAGS DESCRIPTION updates an OAuth authorization ``` + +_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/update.ts)_ diff --git a/docs/autocomplete.md b/docs/autocomplete.md index 009416d41e..5697af7c03 100644 --- a/docs/autocomplete.md +++ b/docs/autocomplete.md @@ -31,3 +31,5 @@ EXAMPLES $ heroku autocomplete --refresh-cache ``` + +_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/autocomplete/index.ts)_ diff --git a/docs/buildpacks.md b/docs/buildpacks.md index 9dc4af373b..2e6e2b66f0 100644 --- a/docs/buildpacks.md +++ b/docs/buildpacks.md @@ -28,6 +28,8 @@ DESCRIPTION display the buildpacks for an app ``` +_See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/index.ts)_ + ## `heroku buildpacks:add BUILDPACK` add new app buildpack, inserting into list of buildpacks if necessary @@ -48,6 +50,8 @@ 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.2.0/src/commands/buildpacks/add.ts)_ + ## `heroku buildpacks:clear` clear all buildpacks set on the app @@ -64,6 +68,8 @@ DESCRIPTION clear all buildpacks set on the app ``` +_See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/clear.ts)_ + ## `heroku buildpacks:info BUILDPACK` fetch info about a buildpack @@ -79,6 +85,8 @@ DESCRIPTION fetch info about a buildpack ``` +_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/info.ts)_ + ## `heroku buildpacks:remove [BUILDPACK]` remove a buildpack set on the app @@ -99,6 +107,8 @@ DESCRIPTION remove a buildpack set on the app ``` +_See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/remove.ts)_ + ## `heroku buildpacks:search [TERM]` search for buildpacks @@ -119,6 +129,8 @@ DESCRIPTION search for buildpacks ``` +_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/search.ts)_ + ## `heroku buildpacks:set BUILDPACK` ``` @@ -134,6 +146,8 @@ FLAGS -r, --remote= git remote of app to use ``` +_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/set.ts)_ + ## `heroku buildpacks:versions BUILDPACK` list versions of a buildpack @@ -148,3 +162,5 @@ ARGUMENTS DESCRIPTION list versions of a buildpack ``` + +_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/versions.ts)_ diff --git a/docs/certs.md b/docs/certs.md index bd8ecb4d93..eaf70ef094 100644 --- a/docs/certs.md +++ b/docs/certs.md @@ -32,6 +32,8 @@ DESCRIPTION list SSL certificates for an app ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/index.js)_ + ## `heroku certs:add CRT KEY` add an SSL certificate to an app @@ -55,6 +57,8 @@ 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.2.0/packages/certs-v5/commands/certs/add.js)_ + ## `heroku certs:auto` show ACM status for an app @@ -72,6 +76,8 @@ DESCRIPTION show ACM status for an app ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/index.js)_ + ## `heroku certs:auto:disable` disable ACM for an app @@ -88,6 +94,8 @@ DESCRIPTION disable ACM for an app ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/disable.js)_ + ## `heroku certs:auto:enable` enable ACM status for an app @@ -105,6 +113,8 @@ DESCRIPTION enable ACM status for an app ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/enable.js)_ + ## `heroku certs:auto:refresh` refresh ACM for an app @@ -121,6 +131,8 @@ DESCRIPTION refresh ACM for an app ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/refresh.js)_ + ## `heroku certs:chain` print an ordered & complete chain for a certificate @@ -137,6 +149,8 @@ DESCRIPTION print an ordered & complete chain for a certificate ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/chain.js)_ + ## `heroku certs:generate DOMAIN` generate a key and a CSR or self-signed certificate @@ -169,6 +183,8 @@ EXAMPLES $ heroku certs:generate example.com ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/generate.js)_ + ## `heroku certs:info` show certificate information for an SSL certificate @@ -188,6 +204,8 @@ DESCRIPTION show certificate information for an SSL certificate ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/info.js)_ + ## `heroku certs:key` print the correct key for the given certificate @@ -209,6 +227,8 @@ EXAMPLES $ heroku certs:key example.com.crt example.com.key ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/key.js)_ + ## `heroku certs:remove` remove an SSL certificate from an app @@ -227,6 +247,8 @@ DESCRIPTION remove an SSL certificate from an app ``` +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/remove.js)_ + ## `heroku certs:update CRT KEY` update an SSL certificate on an app @@ -251,3 +273,5 @@ EXAMPLES If you require intermediate certificates, refer to this article on merging certificates to get a complete chain: https://help.salesforce.com/s/articleView?id=000333504&type=1 ``` + +_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/update.js)_ diff --git a/docs/ci.md b/docs/ci.md index f944d298e8..63d1f97016 100644 --- a/docs/ci.md +++ b/docs/ci.md @@ -37,6 +37,8 @@ EXAMPLES $ heroku ci --app murmuring-headland-14719 ``` +_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/ci/index.ts)_ + ## `heroku ci:config` display CI config vars @@ -172,6 +174,8 @@ EXAMPLES $ heroku ci:info 1288 --app murmuring-headland-14719 ``` +_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/ci/info.ts)_ + ## `heroku ci:last` looks for the most recent run and returns the output of that run @@ -192,6 +196,8 @@ EXAMPLES $ heroku ci:last --pipeline=my-pipeline --node 100 ``` +_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/ci/last.ts)_ + ## `heroku ci:migrate-manifest` app-ci.json is deprecated. Run this command to migrate to app.json with an environments key. @@ -252,6 +258,8 @@ EXAMPLES $ heroku ci:rerun 985 --app murmuring-headland-14719 ``` +_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/ci/rerun.ts)_ + ## `heroku ci:run` run tests against current directory @@ -270,3 +278,5 @@ DESCRIPTION EXAMPLES $ heroku ci:run --app murmuring-headland-14719 ``` + +_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/ci/run.ts)_ diff --git a/docs/clients.md b/docs/clients.md index 3a381e41af..a10fb17708 100644 --- a/docs/clients.md +++ b/docs/clients.md @@ -25,13 +25,15 @@ DESCRIPTION list your OAuth clients ``` +_See code: [src/commands/clients/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/clients/index.ts)_ + ## `heroku clients:create NAME REDIRECT_URI` create a new OAuth client ``` USAGE - $ heroku clients:create NAME REDIRECT_URI [-s] [-j] + $ heroku clients:create NAME REDIRECT_URI [-j] [-s] FLAGS -j, --json output in json format @@ -39,8 +41,13 @@ FLAGS DESCRIPTION create a new OAuth client + +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.2.0/src/commands/clients/create.ts)_ + ## `heroku clients:destroy ID` delete client by ID @@ -53,6 +60,8 @@ DESCRIPTION delete client by ID ``` +_See code: [src/commands/clients/destroy.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/clients/destroy.ts)_ + ## `heroku clients:info ID` show details of an oauth client @@ -67,8 +76,13 @@ FLAGS DESCRIPTION show details of an oauth client + +EXAMPLES + $ heroku clients:info 36120128-fee7-455e-8b7f-807aee130946 ``` +_See code: [src/commands/clients/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/clients/info.ts)_ + ## `heroku clients:rotate ID` rotate OAuth client secret @@ -85,6 +99,8 @@ DESCRIPTION rotate OAuth client secret ``` +_See code: [src/commands/clients/rotate.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/clients/rotate.ts)_ + ## `heroku clients:update ID` update OAuth client @@ -99,4 +115,9 @@ FLAGS DESCRIPTION update OAuth client + +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.2.0/src/commands/clients/update.ts)_ diff --git a/docs/config.md b/docs/config.md index ebc57068ce..2057a11ef1 100644 --- a/docs/config.md +++ b/docs/config.md @@ -28,6 +28,8 @@ DESCRIPTION display the config vars for an app ``` +_See code: [src/commands/config/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/config/index.ts)_ + ## `heroku config:edit [KEY]` interactively edit config vars @@ -62,6 +64,8 @@ EXAMPLES $ VISUAL="atom --wait" heroku config:edit ``` +_See code: [src/commands/config/edit.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/config/edit.ts)_ + ## `heroku config:get KEY...` display a single config value for an app @@ -83,6 +87,8 @@ EXAMPLES production ``` +_See code: [src/commands/config/get.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/config/get.ts)_ + ## `heroku config:remove` unset one or more config vars @@ -160,3 +166,5 @@ EXAMPLES $ heroku config:unset RAILS_ENV RACK_ENV Unsetting RAILS_ENV, RACK_ENV and restarting example... done, v10 ``` + +_See code: [src/commands/config/unset.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/config/unset.ts)_ diff --git a/docs/domains.md b/docs/domains.md index e63fd084be..a40809188e 100644 --- a/docs/domains.md +++ b/docs/domains.md @@ -8,7 +8,7 @@ custom domains for apps * [`heroku domains:clear`](#heroku-domainsclear) * [`heroku domains:info HOSTNAME`](#heroku-domainsinfo-hostname) * [`heroku domains:remove HOSTNAME`](#heroku-domainsremove-hostname) -* [`heroku domains:update [HOSTNAME]`](#heroku-domainsupdate-hostname) +* [`heroku domains:update HOSTNAME`](#heroku-domainsupdate-hostname) * [`heroku domains:wait [HOSTNAME]`](#heroku-domainswait-hostname) ## `heroku domains` @@ -40,7 +40,7 @@ DESCRIPTION EXAMPLES $ heroku domains === example Heroku Domain - example.herokuapp.com + example-xxxxxxxxxxxx.herokuapp.com === example Custom Domains Domain Name DNS Record Type DNS Target www.example.com CNAME www.example.herokudns.com @@ -48,6 +48,8 @@ EXAMPLES $ heroku domains --filter 'Domain Name=www.example.com' ``` +_See code: [src/commands/domains/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/domains/index.ts)_ + ## `heroku domains:add HOSTNAME` add a domain to an app @@ -71,6 +73,8 @@ EXAMPLES $ heroku domains:add www.example.com ``` +_See code: [src/commands/domains/add.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/domains/add.ts)_ + ## `heroku domains:clear` remove all domains from an app @@ -91,6 +95,8 @@ EXAMPLES $ heroku domains:clear ``` +_See code: [src/commands/domains/clear.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/domains/clear.ts)_ + ## `heroku domains:info HOSTNAME` show detailed information for a domain on an app @@ -111,6 +117,8 @@ EXAMPLES $ heroku domains:info www.example.com ``` +_See code: [src/commands/domains/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/domains/info.ts)_ + ## `heroku domains:remove HOSTNAME` remove a domain from an app @@ -131,13 +139,15 @@ EXAMPLES $ heroku domains:remove www.example.com ``` -## `heroku domains:update [HOSTNAME]` +_See code: [src/commands/domains/remove.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/domains/remove.ts)_ + +## `heroku domains:update HOSTNAME` update a domain to use a different SSL certificate on an app ``` USAGE - $ heroku domains:update [HOSTNAME] -a --cert [-h] [-r ] + $ heroku domains:update HOSTNAME -a --cert [-h] [-r ] FLAGS -a, --app= (required) app to run command against @@ -152,6 +162,8 @@ EXAMPLES $ heroku domains:update www.example.com --cert mycert ``` +_See code: [src/commands/domains/update.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/domains/update.ts)_ + ## `heroku domains:wait [HOSTNAME]` wait for domain to be active for an app @@ -168,3 +180,5 @@ FLAGS DESCRIPTION wait for domain to be active for an app ``` + +_See code: [src/commands/domains/wait.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/domains/wait.ts)_ diff --git a/docs/git.md b/docs/git.md index 61d1e6d4dc..f3973de592 100644 --- a/docs/git.md +++ b/docs/git.md @@ -1,7 +1,7 @@ `heroku git` ============ -manage local git repository for app +set git remote and clone Heroku repository * [`heroku git:clone [DIRECTORY]`](#heroku-gitclone-directory) * [`heroku git:remote`](#heroku-gitremote) @@ -31,6 +31,8 @@ EXAMPLES ... ``` +_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/git/clone.ts)_ + ## `heroku git:remote` adds a git remote to an app repo @@ -54,3 +56,5 @@ EXAMPLES # set git remote heroku-staging to https://git.heroku.com/example.git $ heroku git:remote --remote heroku-staging -a example ``` + +_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/git/remote.ts)_ diff --git a/docs/help.md b/docs/help.md index 6650b66cea..3c3a1e1495 100644 --- a/docs/help.md +++ b/docs/help.md @@ -22,3 +22,5 @@ FLAGS DESCRIPTION Display help for heroku. ``` + +_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.4/src/commands/help.ts)_ diff --git a/docs/labs.md b/docs/labs.md index 19ddbedd30..df262bb238 100644 --- a/docs/labs.md +++ b/docs/labs.md @@ -4,7 +4,7 @@ add/remove experimental features * [`heroku labs`](#heroku-labs) -* [`heroku labs:disable [FEATURE]`](#heroku-labsdisable-feature) +* [`heroku labs:disable FEATURE`](#heroku-labsdisable-feature) * [`heroku labs:enable FEATURE`](#heroku-labsenable-feature) * [`heroku labs:info FEATURE`](#heroku-labsinfo-feature) @@ -25,13 +25,13 @@ DESCRIPTION list experimental features ``` -## `heroku labs:disable [FEATURE]` +## `heroku labs:disable FEATURE` disables an experimental feature ``` USAGE - $ heroku labs:disable [FEATURE] [-a ] [-r ] [--confirm ] + $ heroku labs:disable FEATURE [-a ] [-r ] [--confirm ] FLAGS -a, --app= app to run command against @@ -42,6 +42,8 @@ DESCRIPTION disables an experimental feature ``` +_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/labs/disable.ts)_ + ## `heroku labs:enable FEATURE` enables an experimental feature diff --git a/docs/local.md b/docs/local.md index 325b9de4a2..88b6b661a0 100644 --- a/docs/local.md +++ b/docs/local.md @@ -35,6 +35,8 @@ EXAMPLES $ heroku local web=1,worker=2 ``` +_See code: [src/commands/local/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/local/index.ts)_ + ## `heroku local:run` run a one-off command @@ -54,6 +56,8 @@ EXAMPLES $ heroku local:run bin/migrate ``` +_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/local/run.ts)_ + ## `heroku local:start [PROCESSNAME]` run heroku app locally @@ -92,3 +96,5 @@ USAGE DESCRIPTION display node-foreman version ``` + +_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/local/version.ts)_ diff --git a/docs/logs.md b/docs/logs.md index c24ce883f4..22bb27cace 100644 --- a/docs/logs.md +++ b/docs/logs.md @@ -35,3 +35,5 @@ EXAMPLES $ heroku logs --app=my-app --tail ``` + +_See code: [src/commands/logs.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/logs.ts)_ diff --git a/docs/pipelines.md b/docs/pipelines.md index 0714e9eb0e..4a1f42f11e 100644 --- a/docs/pipelines.md +++ b/docs/pipelines.md @@ -1,7 +1,7 @@ `heroku pipelines` ================== -manage pipelines +list pipelines you have access to * [`heroku pipelines`](#heroku-pipelines) * [`heroku pipelines:add PIPELINE`](#heroku-pipelinesadd-pipeline) @@ -36,6 +36,8 @@ EXAMPLES $ heroku pipelines ``` +_See code: [src/commands/pipelines/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/index.ts)_ + ## `heroku pipelines:add PIPELINE` add this app to a pipeline @@ -61,6 +63,8 @@ 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.2.0/src/commands/pipelines/add.ts)_ + ## `heroku pipelines:connect NAME` connect a github repo to an existing pipeline @@ -82,6 +86,8 @@ EXAMPLES $ heroku pipelines:connect my-pipeline -r githuborg/reponame ``` +_See code: [src/commands/pipelines/connect.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/connect.ts)_ + ## `heroku pipelines:create [NAME]` create a new pipeline @@ -112,6 +118,8 @@ EXAMPLES $ heroku pipelines:create my-pipeline -a my-app-staging ``` +_See code: [src/commands/pipelines/create.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/create.ts)_ + ## `heroku pipelines:destroy PIPELINE` destroy a pipeline @@ -130,6 +138,8 @@ EXAMPLES $ heroku pipelines:destroy my-pipeline ``` +_See code: [src/commands/pipelines/destroy.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/destroy.ts)_ + ## `heroku pipelines:diff` compares the latest release of this app to its downstream app(s) @@ -149,6 +159,8 @@ EXAMPLES $ heroku pipelines:diff -a my-app-staging ``` +_See code: [src/commands/pipelines/diff.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/diff.ts)_ + ## `heroku pipelines:info PIPELINE` show list of apps in a pipeline @@ -170,6 +182,8 @@ EXAMPLES $ heroku pipelines:info my-pipeline ``` +_See code: [src/commands/pipelines/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/info.ts)_ + ## `heroku pipelines:open PIPELINE` open a pipeline in dashboard @@ -188,6 +202,8 @@ EXAMPLES $ heroku pipelines:open my-pipeline ``` +_See code: [src/commands/pipelines/open.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/open.ts)_ + ## `heroku pipelines:promote` promote the latest release of this app to its downstream app(s) @@ -208,6 +224,8 @@ EXAMPLES $ heroku pipelines:promote -a my-app-staging ``` +_See code: [src/commands/pipelines/promote.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/promote.ts)_ + ## `heroku pipelines:remove` remove this app from its pipeline @@ -227,6 +245,8 @@ EXAMPLES $ heroku pipelines:remove -a my-app ``` +_See code: [src/commands/pipelines/remove.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/remove.ts)_ + ## `heroku pipelines:rename PIPELINE NAME` rename a pipeline @@ -246,6 +266,8 @@ EXAMPLES $ heroku pipelines:rename my-pipeline new-pipeline-name ``` +_See code: [src/commands/pipelines/rename.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/rename.ts)_ + ## `heroku pipelines:setup [NAME] [REPO]` bootstrap a new pipeline with common settings and create a production and staging app (requires a fully formed app.json in the repo) @@ -270,6 +292,8 @@ 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.2.0/src/commands/pipelines/setup.ts)_ + ## `heroku pipelines:transfer OWNER` transfer ownership of a pipeline @@ -294,6 +318,8 @@ EXAMPLES $ heroku pipelines:transfer admin-team -p my-pipeline ``` +_See code: [src/commands/pipelines/transfer.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/transfer.ts)_ + ## `heroku pipelines:update` update the app's stage in a pipeline @@ -313,3 +339,5 @@ DESCRIPTION EXAMPLES $ heroku pipelines:update -s staging -a my-app ``` + +_See code: [src/commands/pipelines/update.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/pipelines/update.ts)_ diff --git a/docs/plugins.md b/docs/plugins.md index 3166202127..571b410797 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -31,6 +31,8 @@ EXAMPLES $ heroku plugins ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/index.ts)_ + ## `heroku plugins:install PLUGIN...` Installs a plugin into the CLI. @@ -94,6 +96,8 @@ EXAMPLES $ heroku plugins:inspect myplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/inspect.ts)_ + ## `heroku plugins:install PLUGIN...` Installs a plugin into the CLI. @@ -132,6 +136,8 @@ EXAMPLES $ heroku plugins:install someuser/someplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/install.ts)_ + ## `heroku plugins:link PLUGIN` Links a plugin into the CLI for development. @@ -159,6 +165,8 @@ EXAMPLES $ heroku plugins:link myplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/link.ts)_ + ## `heroku plugins:uninstall PLUGIN...` Removes a plugin from the CLI. @@ -205,6 +213,8 @@ ALIASES $ heroku plugins:remove ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/uninstall.ts)_ + ## `heroku plugins:uninstall PLUGIN...` Removes a plugin from the CLI. @@ -243,3 +253,5 @@ FLAGS DESCRIPTION Update installed plugins. ``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/update.ts)_ diff --git a/docs/ps.md b/docs/ps.md index d762a44753..f70fa8cf34 100644 --- a/docs/ps.md +++ b/docs/ps.md @@ -62,6 +62,8 @@ DESCRIPTION disable web dyno autoscaling ``` +_See code: [src/commands/ps/autoscale/disable.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/ps/autoscale/disable.ts)_ + ## `heroku ps:autoscale:enable` enable web dyno autoscaling @@ -82,6 +84,8 @@ DESCRIPTION enable web dyno autoscaling ``` +_See code: [src/commands/ps/autoscale/enable.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/ps/autoscale/enable.ts)_ + ## `heroku ps:copy FILE` Copy a file from a dyno to the local filesystem @@ -336,3 +340,5 @@ FLAGS 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.2.0/src/commands/ps/wait.ts)_ diff --git a/docs/regions.md b/docs/regions.md index 229d0c4bee..abb80f1fbd 100644 --- a/docs/regions.md +++ b/docs/regions.md @@ -21,3 +21,5 @@ FLAGS DESCRIPTION list available regions for deployment ``` + +_See code: [src/commands/regions.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/regions.ts)_ diff --git a/docs/reviewapps.md b/docs/reviewapps.md index 09cdeeba6d..9d4caee1b3 100644 --- a/docs/reviewapps.md +++ b/docs/reviewapps.md @@ -1,7 +1,7 @@ `heroku reviewapps` =================== -manage reviewapps in pipelines +disable review apps and/or settings on an existing pipeline * [`heroku reviewapps:disable`](#heroku-reviewappsdisable) * [`heroku reviewapps:enable`](#heroku-reviewappsenable) @@ -30,6 +30,8 @@ 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.2.0/src/commands/reviewapps/disable.ts)_ + ## `heroku reviewapps:enable` enable review apps and/or settings on an existing pipeline @@ -52,3 +54,5 @@ DESCRIPTION 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.2.0/src/commands/reviewapps/enable.ts)_ diff --git a/docs/run.md b/docs/run.md index 2da3d0694f..d998d1d8c0 100644 --- a/docs/run.md +++ b/docs/run.md @@ -35,6 +35,8 @@ 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.2.0/src/commands/run/index.ts)_ + ## `heroku run:detached` run a detached dyno, where output is sent to your logs @@ -57,3 +59,5 @@ DESCRIPTION EXAMPLES $ heroku run:detached ls ``` + +_See code: [src/commands/run/detached.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/run/detached.ts)_ diff --git a/docs/sessions.md b/docs/sessions.md index d3d1f2f4cb..c9fadeb764 100644 --- a/docs/sessions.md +++ b/docs/sessions.md @@ -21,6 +21,8 @@ DESCRIPTION list your OAuth sessions ``` +_See code: [src/commands/sessions/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/sessions/index.ts)_ + ## `heroku sessions:destroy ID` delete (logout) OAuth session by ID @@ -32,3 +34,5 @@ USAGE DESCRIPTION delete (logout) OAuth session by ID ``` + +_See code: [src/commands/sessions/destroy.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/sessions/destroy.ts)_ diff --git a/docs/status.md b/docs/status.md index ecabdd8d65..f388b1b7c6 100644 --- a/docs/status.md +++ b/docs/status.md @@ -19,3 +19,5 @@ FLAGS DESCRIPTION display current status of the Heroku platform ``` + +_See code: [src/commands/status.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/status.ts)_ diff --git a/docs/update.md b/docs/update.md index 60db68ddce..d1ca89c4d3 100644 --- a/docs/update.md +++ b/docs/update.md @@ -39,3 +39,5 @@ EXAMPLES $ heroku update --available ``` + +_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v3.1.10/src/commands/update.ts)_ diff --git a/docs/version.md b/docs/version.md index 1ffefb1254..23a3af992a 100644 --- a/docs/version.md +++ b/docs/version.md @@ -22,3 +22,5 @@ FLAG DESCRIPTIONS Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using. ``` + +_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.3.0/src/commands/version.ts)_ diff --git a/docs/webhooks.md b/docs/webhooks.md index 389b36ff82..7f23f9c0c2 100644 --- a/docs/webhooks.md +++ b/docs/webhooks.md @@ -32,6 +32,8 @@ EXAMPLES $ heroku webhooks ``` +_See code: [src/commands/webhooks/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/webhooks/index.ts)_ + ## `heroku webhooks:add` add a webhook to an app @@ -56,6 +58,8 @@ 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.2.0/src/commands/webhooks/add.ts)_ + ## `heroku webhooks:deliveries` list webhook deliveries on an app @@ -76,6 +80,8 @@ EXAMPLES $ heroku webhooks:deliveries ``` +_See code: [src/commands/webhooks/deliveries/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/webhooks/deliveries/index.ts)_ + ## `heroku webhooks:deliveries:info ID` info for a webhook event on an app @@ -95,6 +101,8 @@ 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.2.0/src/commands/webhooks/deliveries/info.ts)_ + ## `heroku webhooks:events` list webhook events on an app @@ -114,6 +122,8 @@ EXAMPLES $ heroku webhooks:events ``` +_See code: [src/commands/webhooks/events/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/webhooks/events/index.ts)_ + ## `heroku webhooks:events:info ID` info for a webhook event on an app @@ -133,6 +143,8 @@ 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.2.0/src/commands/webhooks/events/info.ts)_ + ## `heroku webhooks:info ID` info for a webhook on an app @@ -152,6 +164,8 @@ EXAMPLES $ heroku webhooks:info 99999999-9999-9999-9999-999999999999 ``` +_See code: [src/commands/webhooks/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/webhooks/info.ts)_ + ## `heroku webhooks:remove ID` removes a webhook from an app @@ -174,6 +188,8 @@ EXAMPLES $ heroku webhooks:remove 99999999-9999-9999-9999-999999999999 ``` +_See code: [src/commands/webhooks/remove.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/webhooks/remove.ts)_ + ## `heroku webhooks:update ID` updates a webhook in an app @@ -197,3 +213,5 @@ DESCRIPTION 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.2.0/src/commands/webhooks/update.ts)_ diff --git a/lerna.json b/lerna.json index a6272816a1..047119bf85 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "8.1.9", + "version": "8.2.0", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/packages/addons-v5/CHANGELOG.md b/packages/addons-v5/CHANGELOG.md index aaaad8a5a6..f0aef8b36f 100644 --- a/packages/addons-v5/CHANGELOG.md +++ b/packages/addons-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01) **Note:** Version bump only for package @heroku-cli/plugin-addons-v5 diff --git a/packages/addons-v5/package.json b/packages/addons-v5/package.json index d6c732eda3..0371618e2a 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.1.7", + "version": "8.2.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 47b8558380..948d4cfd65 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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14) **Note:** Version bump only for package @heroku-cli/plugin-apps-v5 diff --git a/packages/apps-v5/README.md b/packages/apps-v5/README.md index 7d4012ab4b..f19c4ced70 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.1.8 darwin-x64 node-v16.19.0 +@heroku-cli/plugin-apps-v5/8.2.0 darwin-x64 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 08239f9b9a..55e309fe66 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.1.8", + "version": "8.2.0", "author": "Jeff Dickey (@jdxcode)", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/certs-v5/CHANGELOG.md b/packages/certs-v5/CHANGELOG.md index 01fdc50580..af3132c4d6 100644 --- a/packages/certs-v5/CHANGELOG.md +++ b/packages/certs-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01) **Note:** Version bump only for package @heroku-cli/plugin-certs-v5 diff --git a/packages/certs-v5/README.md b/packages/certs-v5/README.md index 5761c540bc..2b48a27cc3 100644 --- a/packages/certs-v5/README.md +++ b/packages/certs-v5/README.md @@ -31,7 +31,7 @@ DESCRIPTION list SSL certificates for an app ``` -_See code: [commands/certs/index.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/index.js)_ +_See code: [commands/certs/index.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/index.js)_ ## `heroku certs:add [CRT] [KEY]` @@ -53,7 +53,7 @@ EXAMPLES https://help.salesforce.com/s/articleView?id=000333504&type=1 ``` -_See code: [commands/certs/add.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/add.js)_ +_See code: [commands/certs/add.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/add.js)_ ## `heroku certs:auto` @@ -70,7 +70,7 @@ DESCRIPTION show ACM status for an app ``` -_See code: [commands/certs/auto/index.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/auto/index.js)_ +_See code: [commands/certs/auto/index.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/index.js)_ ## `heroku certs:auto:disable` @@ -84,7 +84,7 @@ DESCRIPTION disable ACM for an app ``` -_See code: [commands/certs/auto/disable.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/auto/disable.js)_ +_See code: [commands/certs/auto/disable.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/disable.js)_ ## `heroku certs:auto:enable` @@ -101,7 +101,7 @@ DESCRIPTION enable ACM status for an app ``` -_See code: [commands/certs/auto/enable.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/auto/enable.js)_ +_See code: [commands/certs/auto/enable.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/enable.js)_ ## `heroku certs:auto:refresh` @@ -115,7 +115,7 @@ DESCRIPTION refresh ACM for an app ``` -_See code: [commands/certs/auto/refresh.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/auto/refresh.js)_ +_See code: [commands/certs/auto/refresh.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/refresh.js)_ ## `heroku certs:chain` @@ -129,7 +129,7 @@ DESCRIPTION print an ordered & complete chain for a certificate ``` -_See code: [commands/certs/chain.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/chain.js)_ +_See code: [commands/certs/chain.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/chain.js)_ ## `heroku certs:generate [DOMAIN]` @@ -156,7 +156,7 @@ EXAMPLES $ heroku certs:generate example.com ``` -_See code: [commands/certs/generate.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/generate.js)_ +_See code: [commands/certs/generate.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/generate.js)_ ## `heroku certs:info` @@ -175,7 +175,7 @@ DESCRIPTION show certificate information for an SSL certificate ``` -_See code: [commands/certs/info.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/info.js)_ +_See code: [commands/certs/info.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/info.js)_ ## `heroku certs:key` @@ -192,7 +192,7 @@ EXAMPLES $ heroku certs:key example.com.crt example.com.key ``` -_See code: [commands/certs/key.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/key.js)_ +_See code: [commands/certs/key.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/key.js)_ ## `heroku certs:remove` @@ -210,7 +210,7 @@ DESCRIPTION remove an SSL certificate from an app ``` -_See code: [commands/certs/remove.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/remove.js)_ +_See code: [commands/certs/remove.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/remove.js)_ ## `heroku certs:update [CRT] [KEY]` @@ -234,5 +234,5 @@ EXAMPLES https://help.salesforce.com/s/articleView?id=000333504&type=1 ``` -_See code: [commands/certs/update.js](https://github.com/heroku/cli/blob/v8.1.7/packages/certs-v5/commands/certs/update.js)_ +_See code: [commands/certs/update.js](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/update.js)_ diff --git a/packages/certs-v5/package.json b/packages/certs-v5/package.json index fd24c85231..83eb38fb6e 100644 --- a/packages/certs-v5/package.json +++ b/packages/certs-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-certs-v5", "description": "heroku ssl plugin", - "version": "8.1.7", + "version": "8.2.0", "author": "Ransom Briggs rbriggs@heroku.com", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/ci-v5/CHANGELOG.md b/packages/ci-v5/CHANGELOG.md index 12e2c90fed..3721e178d0 100644 --- a/packages/ci-v5/CHANGELOG.md +++ b/packages/ci-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14) **Note:** Version bump only for package @heroku-cli/plugin-ci-v5 diff --git a/packages/ci-v5/package.json b/packages/ci-v5/package.json index ff3c796420..96b2003188 100644 --- a/packages/ci-v5/package.json +++ b/packages/ci-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-ci-v5", "description": "Heroku CLI plugin for Heroku CI", - "version": "8.1.8", + "version": "8.2.0", "author": "Andrew Appleton, Gudmundur Bjarni Olafsson, Max Beizer, Ransom Briggs", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { @@ -14,7 +14,7 @@ }, "dependencies": { "@heroku-cli/command": "^9.0.2", - "@heroku-cli/plugin-run-v5": "^8.1.4", + "@heroku-cli/plugin-run-v5": "^8.2.0", "ansi-escapes": "3.2.0", "bluebird": "^3.5.3", "github-url-to-object": "^4.0.4", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9bb5203cec..585e16fa67 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [8.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* build cli for all tests to save time. ([#2436](https://github.com/heroku/cli/issues/2436)) ([c81c801](https://github.com/heroku/cli/commit/c81c801e310738460f3d27d7241bfa2462426dcd)) +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) +* turns out tslib is actually a runtime dependency, not just dev. ([#2427](https://github.com/heroku/cli/issues/2427)) ([76b3dc3](https://github.com/heroku/cli/commit/76b3dc3829a998c5235879f21b8b3795d1fd2044)) +* use correct path for update hooks ([#2426](https://github.com/heroku/cli/issues/2426)) ([e55e00f](https://github.com/heroku/cli/commit/e55e00f920a066af01f1febd697054f812183c92)) + + +### Features + +* **cli:** add rollbar ([#2424](https://github.com/heroku/cli/issues/2424)) ([9a52f2f](https://github.com/heroku/cli/commit/9a52f2f8e9c8bf27e0d5c5cf04ca592e61188359)) + + + + + ## [8.1.9](https://github.com/heroku/cli/compare/v8.1.8...v8.1.9) (2023-06-21) **Note:** Version bump only for package heroku diff --git a/packages/cli/README.md b/packages/cli/README.md index 2b6ddbecd6..e72fc0d13f 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -48,7 +48,7 @@ For other issues, [submit a support ticket](https://help.heroku.com/). * [`heroku domains`](docs/domains.md) - custom domains for apps * [`heroku drains`](docs/drains.md) - forward logs to syslog or HTTPS * [`heroku features`](docs/features.md) - add/remove app features -* [`heroku git`](docs/git.md) - manage local git repository for app +* [`heroku git`](docs/git.md) - set git remote and clone Heroku repository * [`heroku help`](docs/help.md) - Display help for heroku. * [`heroku keys`](docs/keys.md) - add/remove account ssh keys * [`heroku labs`](docs/labs.md) - add/remove experimental features @@ -58,12 +58,12 @@ For other issues, [submit a support ticket](https://help.heroku.com/). * [`heroku members`](docs/members.md) - manage organization members * [`heroku orgs`](docs/orgs.md) - manage organizations * [`heroku pg`](docs/pg.md) - manage postgresql databases -* [`heroku pipelines`](docs/pipelines.md) - manage pipelines +* [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to * [`heroku plugins`](docs/plugins.md) - List installed plugins. * [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec * [`heroku redis`](docs/redis.md) - manage heroku redis instances * [`heroku regions`](docs/regions.md) - list available regions for deployment -* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines +* [`heroku reviewapps`](docs/reviewapps.md) - disable review apps and/or settings on an existing pipeline * [`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 38e4597859..f1b8caf10f 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.1.9", + "version": "8.2.0", "author": "Jeff Dickey @jdxcode", "bin": "./bin/run", "bugs": "https://github.com/heroku/cli/issues", @@ -9,17 +9,17 @@ "@heroku-cli/color": "1.1.14", "@heroku-cli/command": "^10.0.0", "@heroku-cli/notifications": "^1.2.2", - "@heroku-cli/plugin-addons-v5": "^8.1.7", - "@heroku-cli/plugin-apps-v5": "^8.1.8", - "@heroku-cli/plugin-certs-v5": "^8.1.7", - "@heroku-cli/plugin-ci-v5": "^8.1.8", - "@heroku-cli/plugin-container-registry-v5": "^8.1.7", - "@heroku-cli/plugin-orgs-v5": "^8.1.4", - "@heroku-cli/plugin-pg-v5": "^8.1.7", + "@heroku-cli/plugin-addons-v5": "^8.2.0", + "@heroku-cli/plugin-apps-v5": "^8.2.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", + "@heroku-cli/plugin-orgs-v5": "^8.2.0", + "@heroku-cli/plugin-pg-v5": "^8.2.0", "@heroku-cli/plugin-ps": "^8.1.7", "@heroku-cli/plugin-ps-exec": "^2.4.0", - "@heroku-cli/plugin-redis-v5": "^8.1.7", - "@heroku-cli/plugin-spaces": "^8.1.7", + "@heroku-cli/plugin-redis-v5": "^8.2.0", + "@heroku-cli/plugin-spaces": "^8.2.0", "@heroku-cli/schema": "^1.0.25", "@heroku/buildpack-registry": "^1.0.1", "@heroku/eventsource": "^1.0.7", diff --git a/packages/container-registry-v5/CHANGELOG.md b/packages/container-registry-v5/CHANGELOG.md index 30ce8c5085..3ca5307f4d 100644 --- a/packages/container-registry-v5/CHANGELOG.md +++ b/packages/container-registry-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01) **Note:** Version bump only for package @heroku-cli/plugin-container-registry-v5 diff --git a/packages/container-registry-v5/package.json b/packages/container-registry-v5/package.json index 7d50bf32c3..c6eee560a0 100644 --- a/packages/container-registry-v5/package.json +++ b/packages/container-registry-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-container-registry-v5", "description": "Use containers to build and deploy Heroku apps", - "version": "8.1.7", + "version": "8.2.0", "author": "Heroku", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/orgs-v5/CHANGELOG.md b/packages/orgs-v5/CHANGELOG.md index 6ab4470551..5c74ef66a0 100644 --- a/packages/orgs-v5/CHANGELOG.md +++ b/packages/orgs-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.4](https://github.com/heroku/cli/compare/v8.1.3...v8.1.4) (2023-05-24) **Note:** Version bump only for package @heroku-cli/plugin-orgs-v5 diff --git a/packages/orgs-v5/package.json b/packages/orgs-v5/package.json index 2187cc0ad6..de7e65da6f 100644 --- a/packages/orgs-v5/package.json +++ b/packages/orgs-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-orgs-v5", "description": "CLI to manage Heroku Organizations", - "version": "8.1.4", + "version": "8.2.0", "author": "Raul Barroso @raulb", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/pg-v5/CHANGELOG.md b/packages/pg-v5/CHANGELOG.md index 7c27da85ec..622943cc39 100644 --- a/packages/pg-v5/CHANGELOG.md +++ b/packages/pg-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01) **Note:** Version bump only for package @heroku-cli/plugin-pg-v5 diff --git a/packages/pg-v5/package.json b/packages/pg-v5/package.json index cd1e207fc1..5d6ca21a88 100644 --- a/packages/pg-v5/package.json +++ b/packages/pg-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-pg-v5", "description": "Heroku CLI plugin to manage Postgres.", - "version": "8.1.7", + "version": "8.2.0", "author": "Jeff Dickey (@dickeyxxx)", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/redis-v5/CHANGELOG.md b/packages/redis-v5/CHANGELOG.md index f5deb757ee..d834ea7292 100644 --- a/packages/redis-v5/CHANGELOG.md +++ b/packages/redis-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01) **Note:** Version bump only for package @heroku-cli/plugin-redis-v5 diff --git a/packages/redis-v5/package.json b/packages/redis-v5/package.json index 452d19ddf9..b9a7525a4c 100644 --- a/packages/redis-v5/package.json +++ b/packages/redis-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-redis-v5", "description": "Heroku plugin to manage Heroku Redis", - "version": "8.1.7", + "version": "8.2.0", "author": "Heroku", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/run-v5/CHANGELOG.md b/packages/run-v5/CHANGELOG.md index b3d95cc260..6dac5fd794 100644 --- a/packages/run-v5/CHANGELOG.md +++ b/packages/run-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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.4](https://github.com/heroku/cli/compare/v8.1.3...v8.1.4) (2023-05-24) **Note:** Version bump only for package @heroku-cli/plugin-run-v5 diff --git a/packages/run-v5/package.json b/packages/run-v5/package.json index ebf39705b5..259dcf39e4 100644 --- a/packages/run-v5/package.json +++ b/packages/run-v5/package.json @@ -1,7 +1,7 @@ { "name": "@heroku-cli/plugin-run-v5", "description": "Heroku CLI plugin to run one-off dyno processes.", - "version": "8.1.4", + "version": "8.2.0", "author": "Jeff Dickey (@dickeyxxx)", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/packages/spaces/CHANGELOG.md b/packages/spaces/CHANGELOG.md index 1559211076..e32eaab8e7 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.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14) + + +### Bug Fixes + +* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1)) + + + + + ## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01) **Note:** Version bump only for package @heroku-cli/plugin-spaces diff --git a/packages/spaces/package.json b/packages/spaces/package.json index 6d979870bb..a1ba1be186 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.1.7", + "version": "8.2.0", "author": "Heroku", "bugs": "https://github.com/heroku/cli/issues", "cli-engine": { diff --git a/yarn.lock b/yarn.lock index 6f2ad42e78..72b6abe728 100644 --- a/yarn.lock +++ b/yarn.lock @@ -535,7 +535,7 @@ __metadata: languageName: node linkType: hard -"@heroku-cli/plugin-addons-v5@^8.1.7, @heroku-cli/plugin-addons-v5@workspace:packages/addons-v5": +"@heroku-cli/plugin-addons-v5@^8.2.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: @@ -571,7 +571,7 @@ __metadata: languageName: node linkType: hard -"@heroku-cli/plugin-apps-v5@^8.1.8, @heroku-cli/plugin-apps-v5@workspace:packages/apps-v5": +"@heroku-cli/plugin-apps-v5@^8.2.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: @@ -609,7 +609,7 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-certs-v5@^8.1.7, @heroku-cli/plugin-certs-v5@workspace:packages/certs-v5": +"@heroku-cli/plugin-certs-v5@^8.2.0, @heroku-cli/plugin-certs-v5@workspace:packages/certs-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-certs-v5@workspace:packages/certs-v5" dependencies: @@ -635,12 +635,12 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-ci-v5@^8.1.8, @heroku-cli/plugin-ci-v5@workspace:packages/ci-v5": +"@heroku-cli/plugin-ci-v5@^8.2.0, @heroku-cli/plugin-ci-v5@workspace:packages/ci-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-ci-v5@workspace:packages/ci-v5" dependencies: "@heroku-cli/command": ^9.0.2 - "@heroku-cli/plugin-run-v5": ^8.1.4 + "@heroku-cli/plugin-run-v5": ^8.2.0 "@oclif/plugin-legacy": ^1.3.0 ansi-escapes: 3.2.0 bluebird: ^3.5.3 @@ -664,7 +664,7 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-container-registry-v5@^8.1.7, @heroku-cli/plugin-container-registry-v5@workspace:packages/container-registry-v5": +"@heroku-cli/plugin-container-registry-v5@^8.2.0, @heroku-cli/plugin-container-registry-v5@workspace:packages/container-registry-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-container-registry-v5@workspace:packages/container-registry-v5" dependencies: @@ -709,7 +709,7 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-orgs-v5@^8.1.4, @heroku-cli/plugin-orgs-v5@workspace:packages/orgs-v5": +"@heroku-cli/plugin-orgs-v5@^8.2.0, @heroku-cli/plugin-orgs-v5@workspace:packages/orgs-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-orgs-v5@workspace:packages/orgs-v5" dependencies: @@ -729,7 +729,7 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-pg-v5@^8.1.7, @heroku-cli/plugin-pg-v5@workspace:packages/pg-v5": +"@heroku-cli/plugin-pg-v5@^8.2.0, @heroku-cli/plugin-pg-v5@workspace:packages/pg-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-pg-v5@workspace:packages/pg-v5" dependencies: @@ -786,7 +786,7 @@ __metadata: languageName: node linkType: hard -"@heroku-cli/plugin-redis-v5@^8.1.7, @heroku-cli/plugin-redis-v5@workspace:packages/redis-v5": +"@heroku-cli/plugin-redis-v5@^8.2.0, @heroku-cli/plugin-redis-v5@workspace:packages/redis-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-redis-v5@workspace:packages/redis-v5" dependencies: @@ -806,7 +806,7 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-run-v5@^8.1.4, @heroku-cli/plugin-run-v5@workspace:packages/run-v5": +"@heroku-cli/plugin-run-v5@^8.2.0, @heroku-cli/plugin-run-v5@workspace:packages/run-v5": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-run-v5@workspace:packages/run-v5" dependencies: @@ -833,7 +833,7 @@ __metadata: languageName: unknown linkType: soft -"@heroku-cli/plugin-spaces@^8.1.7, @heroku-cli/plugin-spaces@workspace:packages/spaces": +"@heroku-cli/plugin-spaces@^8.2.0, @heroku-cli/plugin-spaces@workspace:packages/spaces": version: 0.0.0-use.local resolution: "@heroku-cli/plugin-spaces@workspace:packages/spaces" dependencies: @@ -9019,17 +9019,17 @@ __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.1.7 - "@heroku-cli/plugin-apps-v5": ^8.1.8 - "@heroku-cli/plugin-certs-v5": ^8.1.7 - "@heroku-cli/plugin-ci-v5": ^8.1.8 - "@heroku-cli/plugin-container-registry-v5": ^8.1.7 - "@heroku-cli/plugin-orgs-v5": ^8.1.4 - "@heroku-cli/plugin-pg-v5": ^8.1.7 + "@heroku-cli/plugin-addons-v5": ^8.2.0 + "@heroku-cli/plugin-apps-v5": ^8.2.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 + "@heroku-cli/plugin-orgs-v5": ^8.2.0 + "@heroku-cli/plugin-pg-v5": ^8.2.0 "@heroku-cli/plugin-ps": ^8.1.7 "@heroku-cli/plugin-ps-exec": ^2.4.0 - "@heroku-cli/plugin-redis-v5": ^8.1.7 - "@heroku-cli/plugin-spaces": ^8.1.7 + "@heroku-cli/plugin-redis-v5": ^8.2.0 + "@heroku-cli/plugin-spaces": ^8.2.0 "@heroku-cli/schema": ^1.0.25 "@heroku/buildpack-registry": ^1.0.1 "@heroku/eventsource": ^1.0.7