From 000951bbbe74eac8c84e014c7b8fdf3f7cc7fc07 Mon Sep 17 00:00:00 2001 From: Katy Bowman Date: Wed, 8 Apr 2026 14:00:27 -0400 Subject: [PATCH] v11.2.0 --- CHANGELOG.md | 27 +++++++++ docs/access.md | 8 +-- docs/accounts.md | 10 ++-- docs/addons.md | 27 ++++----- docs/apps.md | 36 ++++++------ docs/auth.md | 12 ++-- docs/authorizations.md | 12 ++-- docs/autocomplete.md | 2 +- docs/buildpacks.md | 16 ++--- docs/certs.md | 26 ++++----- docs/ci.md | 24 ++++---- docs/clients.md | 12 ++-- docs/config.md | 10 ++-- docs/container.md | 14 ++--- docs/data.md | 59 ++++++++++--------- docs/domains.md | 19 +++--- docs/drains.md | 6 +- docs/features.md | 8 +-- docs/git.md | 4 +- docs/keys.md | 8 +-- docs/labs.md | 8 +-- docs/local.md | 22 +++---- docs/logs.md | 2 +- docs/maintenance.md | 6 +- docs/mcp.md | 2 +- docs/members.md | 8 +-- docs/notifications.md | 2 +- docs/orgs.md | 4 +- docs/pg.md | 129 +++++++++++++++++++++-------------------- docs/pipelines.md | 28 ++++----- docs/ps.md | 25 ++++---- docs/redis.md | 20 +++---- docs/regions.md | 2 +- docs/releases.md | 10 ++-- docs/repl.md | 2 +- docs/reviewapps.md | 4 +- docs/run.md | 6 +- docs/sessions.md | 4 +- docs/spaces.md | 74 +++++++++++------------ docs/status.md | 2 +- docs/teams.md | 2 +- docs/telemetry.md | 10 ++-- docs/usage.md | 2 +- docs/version.md | 2 +- docs/webhooks.md | 18 +++--- package-lock.json | 4 +- package.json | 2 +- 47 files changed, 386 insertions(+), 354 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 945185ae4a..68dfad05a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,33 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [11.2.0](https://github.com/heroku/cli/compare/v11.1.1...v11.2.0) (2026-04-08) + + +### Features + +* adding --start-cmd flag to heroku local when no Procfile is present ([#3638](https://github.com/heroku/cli/issues/3638)) ([b9b8fed](https://github.com/heroku/cli/commit/b9b8fed8f44ad88946edc4141ec1fe41f157baac)) +* include a --no-wrap flag for table displays ([#3613](https://github.com/heroku/cli/issues/3613)) ([1d27c09](https://github.com/heroku/cli/commit/1d27c09f3973c81bb610583c3afe418ff0c867a6)) +* update color usage, telemetry activation logic, and command/util dependencies ([#3646](https://github.com/heroku/cli/issues/3646)) ([ede6655](https://github.com/heroku/cli/commit/ede665557ca3d387e3e57f5a438cd7ab7c27b1b3)) + + +### Bug Fixes + +* flaky apps:diff tests ([#3649](https://github.com/heroku/cli/issues/3649)) ([8c4f8c3](https://github.com/heroku/cli/commit/8c4f8c3e5c99f688cbbefcf91a44ed234ba6c65b)) +* improve telemetry worker stderr cleanup ([#3648](https://github.com/heroku/cli/issues/3648)) ([150e74a](https://github.com/heroku/cli/commit/150e74abe77b7c51b6b9ea84c8e246fe3165c6b5)) +* procfile comment parsing ([#3641](https://github.com/heroku/cli/issues/3641)) ([aae3751](https://github.com/heroku/cli/commit/aae37512b54bdcf2b832429254f0d2c0fe1f42d3)) + + +### Code Refactoring + +* unify telemetry architecture and use background workers for all telemetry ([#3642](https://github.com/heroku/cli/issues/3642)) ([c13074d](https://github.com/heroku/cli/commit/c13074da5f0892fa412ce6bc7c4b1d998eae3366)) + + +### Tests + +* this fixes the mocking difference causing flappy tests and adds chore to PR release title ([#3640](https://github.com/heroku/cli/issues/3640)) ([32920f9](https://github.com/heroku/cli/commit/32920f9600cc6b06815aa7db532dd8bb352d90db)) +* use Sinon stubs; parallel slug checksums ([#3650](https://github.com/heroku/cli/issues/3650)) ([73e4990](https://github.com/heroku/cli/commit/73e4990222d4a1b1dfec5fc64eae0c25f811c93c)) + ## [11.1.1](https://github.com/heroku/cli/compare/v11.1.0...v11.1.1) (2026-04-01) diff --git a/docs/access.md b/docs/access.md index 150dc53f08..801ff78236 100644 --- a/docs/access.md +++ b/docs/access.md @@ -28,7 +28,7 @@ DESCRIPTION list who has access to an app ``` -_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/access/index.ts)_ +_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/access/index.ts)_ ## `heroku access:add EMAIL` @@ -58,7 +58,7 @@ EXAMPLES $ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated ``` -_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/access/add.ts)_ +_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/access/add.ts)_ ## `heroku access:remove` @@ -82,7 +82,7 @@ EXAMPLES $ heroku access:remove user@email.com --app APP ``` -_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/access/remove.ts)_ +_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/access/remove.ts)_ ## `heroku access:update EMAIL` @@ -107,4 +107,4 @@ DESCRIPTION update existing collaborators on an team app ``` -_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/access/update.ts)_ +_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/access/update.ts)_ diff --git a/docs/accounts.md b/docs/accounts.md index 259f801067..95627886a3 100644 --- a/docs/accounts.md +++ b/docs/accounts.md @@ -24,7 +24,7 @@ EXAMPLES $ heroku accounts ``` -_See code: [src/commands/accounts/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/accounts/index.ts)_ +_See code: [src/commands/accounts/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/accounts/index.ts)_ ## `heroku accounts:add NAME` @@ -47,7 +47,7 @@ EXAMPLES $ heroku accounts:add my-account ``` -_See code: [src/commands/accounts/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/accounts/add.ts)_ +_See code: [src/commands/accounts/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/accounts/add.ts)_ ## `heroku accounts:current` @@ -64,7 +64,7 @@ EXAMPLES $ heroku accounts:current ``` -_See code: [src/commands/accounts/current.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/accounts/current.ts)_ +_See code: [src/commands/accounts/current.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/accounts/current.ts)_ ## `heroku accounts:remove NAME` @@ -87,7 +87,7 @@ EXAMPLES $ heroku accounts:remove my-account ``` -_See code: [src/commands/accounts/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/accounts/remove.ts)_ +_See code: [src/commands/accounts/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/accounts/remove.ts)_ ## `heroku accounts:set NAME` @@ -110,4 +110,4 @@ EXAMPLES $ heroku accounts:set my-account ``` -_See code: [src/commands/accounts/set.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/accounts/set.ts)_ +_See code: [src/commands/accounts/set.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/accounts/set.ts)_ diff --git a/docs/addons.md b/docs/addons.md index aaa93fec47..8afdb0c904 100644 --- a/docs/addons.md +++ b/docs/addons.md @@ -31,6 +31,7 @@ FLAGS -a, --app= app to run command against -r, --remote= git remote of app to use --json return add-ons in json format + --no-wrap disable wrapped table cells for easier copy/paste GLOBAL FLAGS --prompt interactively prompt for command arguments and flags @@ -50,7 +51,7 @@ EXAMPLES $ heroku addons --app acme-inc-www ``` -_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/index.ts)_ +_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/index.ts)_ ## `heroku addons:attach ADDON_NAME` @@ -78,7 +79,7 @@ DESCRIPTION attach an existing add-on resource to an app ``` -_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/attach.ts)_ +_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/attach.ts)_ ## `heroku addons:create SERVICE:PLAN` @@ -117,7 +118,7 @@ EXAMPLES $ heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE ``` -_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/create.ts)_ +_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/create.ts)_ ## `heroku addons:destroy ADDONNAME` @@ -147,7 +148,7 @@ EXAMPLES $ addons:destroy [ADDON]... [flags] ``` -_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/destroy.ts)_ +_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/destroy.ts)_ ## `heroku addons:detach ATTACHMENT_NAME` @@ -171,7 +172,7 @@ DESCRIPTION detach an existing add-on resource from an app ``` -_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/detach.ts)_ +_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/detach.ts)_ ## `heroku addons:docs ADDON` @@ -196,7 +197,7 @@ DESCRIPTION open an add-on's Dev Center documentation in your browser ``` -_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/docs.ts)_ +_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/docs.ts)_ ## `heroku addons:downgrade ADDON [PLAN]` @@ -260,7 +261,7 @@ DESCRIPTION show detailed add-on resource and attachment information ``` -_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/info.ts)_ +_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/info.ts)_ ## `heroku addons:open ADDON` @@ -285,7 +286,7 @@ DESCRIPTION open an add-on's dashboard in your browser ``` -_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/open.ts)_ +_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/open.ts)_ ## `heroku addons:plans SERVICE` @@ -308,7 +309,7 @@ DESCRIPTION list all available plans for an add-on service ``` -_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/plans.ts)_ +_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/plans.ts)_ ## `heroku addons:rename ADDON_NAME NEW_NAME` @@ -329,7 +330,7 @@ DESCRIPTION rename an add-on ``` -_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/rename.ts)_ +_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/rename.ts)_ ## `heroku addons:services` @@ -349,7 +350,7 @@ DESCRIPTION list all available add-on services ``` -_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/services.ts)_ +_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/services.ts)_ ## `heroku addons:upgrade ADDON [PLAN]` @@ -391,7 +392,7 @@ EXAMPLES $ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2 ``` -_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/upgrade.ts)_ +_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/upgrade.ts)_ ## `heroku addons:wait [ADDON]` @@ -416,4 +417,4 @@ DESCRIPTION show provisioning status of the add-ons on the app ``` -_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/addons/wait.ts)_ +_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/addons/wait.ts)_ diff --git a/docs/apps.md b/docs/apps.md index 4f1cc0a032..b7b7e37e1d 100644 --- a/docs/apps.md +++ b/docs/apps.md @@ -47,7 +47,7 @@ EXAMPLES $ heroku apps ``` -_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/index.ts)_ +_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/index.ts)_ ## `heroku apps:create [APP]` @@ -102,7 +102,7 @@ EXAMPLES $ heroku apps:create --region eu ``` -_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/create.ts)_ +_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/create.ts)_ ## `heroku apps:destroy` @@ -124,7 +124,7 @@ DESCRIPTION permanently destroy an app ``` -_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/destroy.ts)_ +_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/destroy.ts)_ ## `heroku apps:diff APP1 APP2` @@ -145,7 +145,7 @@ DESCRIPTION diffs two apps ``` -_See code: [src/commands/apps/diff.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/diff.ts)_ +_See code: [src/commands/apps/diff.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/diff.ts)_ ## `heroku apps:errors` @@ -170,7 +170,7 @@ DESCRIPTION view app errors ``` -_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/errors.ts)_ +_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/errors.ts)_ ## `heroku apps:favorites` @@ -190,7 +190,7 @@ DESCRIPTION list favorited apps ``` -_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/favorites/index.ts)_ +_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/favorites/index.ts)_ ## `heroku apps:favorites:add` @@ -211,7 +211,7 @@ DESCRIPTION favorites an app ``` -_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/favorites/add.ts)_ +_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/favorites/add.ts)_ ## `heroku apps:favorites:remove` @@ -232,7 +232,7 @@ DESCRIPTION unfavorites an app ``` -_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/favorites/remove.ts)_ +_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/favorites/remove.ts)_ ## `heroku apps:info` @@ -260,7 +260,7 @@ EXAMPLES $ heroku apps:info --shell ``` -_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/info.ts)_ +_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/info.ts)_ ## `heroku apps:join` @@ -284,7 +284,7 @@ ALIASES $ heroku join ``` -_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/join.ts)_ +_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/join.ts)_ ## `heroku apps:leave` @@ -311,7 +311,7 @@ EXAMPLES $ heroku apps:leave -a APP ``` -_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/leave.ts)_ +_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/leave.ts)_ ## `heroku apps:lock` @@ -335,7 +335,7 @@ ALIASES $ heroku lock ``` -_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/lock.ts)_ +_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/lock.ts)_ ## `heroku apps:open [PATH]` @@ -364,7 +364,7 @@ EXAMPLES $ heroku open -a myapp /foo ``` -_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/open.ts)_ +_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/open.ts)_ ## `heroku apps:rename NEWNAME` @@ -391,7 +391,7 @@ EXAMPLES $ heroku apps:rename --app oldname newname ``` -_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/rename.ts)_ +_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/rename.ts)_ ## `heroku apps:stacks` @@ -412,7 +412,7 @@ DESCRIPTION show the list of available stacks ``` -_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/stacks/index.ts)_ +_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/stacks/index.ts)_ ## `heroku apps:stacks:set STACK` @@ -442,7 +442,7 @@ EXAMPLES Run git push heroku main to trigger a new build on myapp. ``` -_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/stacks/set.ts)_ +_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/stacks/set.ts)_ ## `heroku apps:transfer RECIPIENT` @@ -478,7 +478,7 @@ EXAMPLES ... ``` -_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/transfer.ts)_ +_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/transfer.ts)_ ## `heroku apps:unlock` @@ -502,4 +502,4 @@ ALIASES $ heroku unlock ``` -_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/apps/unlock.ts)_ +_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/apps/unlock.ts)_ diff --git a/docs/auth.md b/docs/auth.md index f71e9237de..cb4968d5f8 100644 --- a/docs/auth.md +++ b/docs/auth.md @@ -29,7 +29,7 @@ ALIASES $ heroku twofactor ``` -_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/auth/2fa/index.ts)_ +_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/auth/2fa/index.ts)_ ## `heroku auth:2fa:disable` @@ -53,7 +53,7 @@ EXAMPLES $ heroku auth:2fa:disable ``` -_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/auth/2fa/disable.ts)_ +_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/auth/2fa/disable.ts)_ ## `heroku auth:login` @@ -78,7 +78,7 @@ ALIASES $ heroku login ``` -_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/auth/login.ts)_ +_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/auth/login.ts)_ ## `heroku auth:logout` @@ -95,7 +95,7 @@ ALIASES $ heroku logout ``` -_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/auth/logout.ts)_ +_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/auth/logout.ts)_ ## `heroku auth:token` @@ -111,7 +111,7 @@ DESCRIPTION authorizations:create ``` -_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/auth/token.ts)_ +_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/auth/token.ts)_ ## `heroku auth:whoami` @@ -128,4 +128,4 @@ ALIASES $ heroku whoami ``` -_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/auth/whoami.ts)_ +_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/auth/whoami.ts)_ diff --git a/docs/authorizations.md b/docs/authorizations.md index a612663158..b13b99f06d 100644 --- a/docs/authorizations.md +++ b/docs/authorizations.md @@ -32,7 +32,7 @@ EXAMPLES $ heroku authorizations ``` -_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/authorizations/index.ts)_ +_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/authorizations/index.ts)_ ## `heroku authorizations:create` @@ -59,7 +59,7 @@ EXAMPLES $ heroku authorizations:create --description "For use with Anvil" ``` -_See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/authorizations/create.ts)_ +_See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/authorizations/create.ts)_ ## `heroku authorizations:destroy ID` @@ -106,7 +106,7 @@ DESCRIPTION show an existing OAuth authorization ``` -_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/authorizations/info.ts)_ +_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/authorizations/info.ts)_ ## `heroku authorizations:revoke ID` @@ -132,7 +132,7 @@ EXAMPLES $ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb ``` -_See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/authorizations/revoke.ts)_ +_See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/authorizations/revoke.ts)_ ## `heroku authorizations:rotate ID` @@ -152,7 +152,7 @@ DESCRIPTION updates an OAuth authorization token ``` -_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/authorizations/rotate.ts)_ +_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/authorizations/rotate.ts)_ ## `heroku authorizations:update ID` @@ -177,4 +177,4 @@ DESCRIPTION updates an OAuth authorization ``` -_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/authorizations/update.ts)_ +_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/authorizations/update.ts)_ diff --git a/docs/autocomplete.md b/docs/autocomplete.md index 6450211ebf..60a5ed602c 100644 --- a/docs/autocomplete.md +++ b/docs/autocomplete.md @@ -35,4 +35,4 @@ EXAMPLES $ heroku autocomplete --refresh-cache ``` -_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/autocomplete/index.ts)_ +_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/autocomplete/index.ts)_ diff --git a/docs/buildpacks.md b/docs/buildpacks.md index 79d38d8c0e..be6afad335 100644 --- a/docs/buildpacks.md +++ b/docs/buildpacks.md @@ -31,7 +31,7 @@ DESCRIPTION list the buildpacks on an app ``` -_See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/buildpacks/index.ts)_ +_See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/index.ts)_ ## `heroku buildpacks:add BUILDPACK` @@ -56,7 +56,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/v11.1.1/src/commands/buildpacks/add.ts)_ +_See code: [src/commands/buildpacks/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/add.ts)_ ## `heroku buildpacks:clear` @@ -77,7 +77,7 @@ DESCRIPTION clear all buildpacks set on the app ``` -_See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/buildpacks/clear.ts)_ +_See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/clear.ts)_ ## `heroku buildpacks:info BUILDPACK` @@ -97,7 +97,7 @@ DESCRIPTION fetch info about a buildpack ``` -_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/buildpacks/info.ts)_ +_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/info.ts)_ ## `heroku buildpacks:remove [BUILDPACK]` @@ -122,7 +122,7 @@ DESCRIPTION remove a buildpack set on the app ``` -_See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/buildpacks/remove.ts)_ +_See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/remove.ts)_ ## `heroku buildpacks:search [TERM]` @@ -147,7 +147,7 @@ DESCRIPTION search for buildpacks ``` -_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/buildpacks/search.ts)_ +_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/search.ts)_ ## `heroku buildpacks:set BUILDPACK` @@ -167,7 +167,7 @@ GLOBAL FLAGS --prompt interactively prompt for command arguments and flags ``` -_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/buildpacks/set.ts)_ +_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/set.ts)_ ## `heroku buildpacks:versions BUILDPACK` @@ -187,4 +187,4 @@ DESCRIPTION list versions of a buildpack ``` -_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/buildpacks/versions.ts)_ +_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/buildpacks/versions.ts)_ diff --git a/docs/certs.md b/docs/certs.md index 01e875b13b..94c8aa1215 100644 --- a/docs/certs.md +++ b/docs/certs.md @@ -33,7 +33,7 @@ DESCRIPTION list SSL certificates for an app ``` -_See code: [src/commands/certs/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/index.ts)_ +_See code: [src/commands/certs/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/index.ts)_ ## `heroku certs:add CRT KEY` @@ -66,7 +66,7 @@ EXAMPLES https://help.salesforce.com/s/articleView?id=000333504&type=1 ``` -_See code: [src/commands/certs/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/add.ts)_ +_See code: [src/commands/certs/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/add.ts)_ ## `heroku certs:auto` @@ -88,7 +88,7 @@ DESCRIPTION show ACM status for an app ``` -_See code: [src/commands/certs/auto/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/auto/index.ts)_ +_See code: [src/commands/certs/auto/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/auto/index.ts)_ ## `heroku certs:auto:disable` @@ -109,7 +109,7 @@ DESCRIPTION disable ACM for an app ``` -_See code: [src/commands/certs/auto/disable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/auto/disable.ts)_ +_See code: [src/commands/certs/auto/disable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/auto/disable.ts)_ ## `heroku certs:auto:enable` @@ -131,7 +131,7 @@ DESCRIPTION enable ACM status for an app ``` -_See code: [src/commands/certs/auto/enable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/auto/enable.ts)_ +_See code: [src/commands/certs/auto/enable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/auto/enable.ts)_ ## `heroku certs:auto:refresh` @@ -152,7 +152,7 @@ DESCRIPTION refresh ACM for an app ``` -_See code: [src/commands/certs/auto/refresh.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/auto/refresh.ts)_ +_See code: [src/commands/certs/auto/refresh.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/auto/refresh.ts)_ ## `heroku certs:generate DOMAIN` @@ -185,7 +185,7 @@ DESCRIPTION generate a key and a CSR or self-signed certificate ``` -_See code: [src/commands/certs/generate.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/generate.ts)_ +_See code: [src/commands/certs/generate.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/generate.ts)_ ## `heroku certs:info` @@ -209,7 +209,7 @@ DESCRIPTION show certificate information for an SSL certificate ``` -_See code: [src/commands/certs/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/info.ts)_ +_See code: [src/commands/certs/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/info.ts)_ ## `heroku certs:remove` @@ -232,7 +232,7 @@ DESCRIPTION remove an SSL certificate from an app ``` -_See code: [src/commands/certs/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/remove.ts)_ +_See code: [src/commands/certs/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/remove.ts)_ ## `heroku certs:update CRT KEY` @@ -261,9 +261,9 @@ DESCRIPTION EXAMPLES - $ heroku certs:update example.com.crt example.com.key - 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 + $ heroku certs:update example.com.crt example.com.key + 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: [src/commands/certs/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/certs/update.ts)_ +_See code: [src/commands/certs/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/certs/update.ts)_ diff --git a/docs/ci.md b/docs/ci.md index 7db55ca9de..aecd620219 100644 --- a/docs/ci.md +++ b/docs/ci.md @@ -41,7 +41,7 @@ EXAMPLES $ heroku ci --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/index.ts)_ +_See code: [src/commands/ci/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/index.ts)_ ## `heroku ci:config` @@ -68,7 +68,7 @@ EXAMPLES $ heroku ci:config --app murmuring-headland-14719 --json ``` -_See code: [src/commands/ci/config/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/config/index.ts)_ +_See code: [src/commands/ci/config/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/config/index.ts)_ ## `heroku ci:config:get KEY` @@ -97,7 +97,7 @@ EXAMPLES $ heroku ci:config:get --pipeline=PIPELINE RAILS_ENV test ``` -_See code: [src/commands/ci/config/get.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/config/get.ts)_ +_See code: [src/commands/ci/config/get.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/config/get.ts)_ ## `heroku ci:config:set` @@ -124,7 +124,7 @@ EXAMPLES RAILS_ENV: test ``` -_See code: [src/commands/ci/config/set.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/config/set.ts)_ +_See code: [src/commands/ci/config/set.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/config/set.ts)_ ## `heroku ci:config:unset` @@ -149,7 +149,7 @@ EXAMPLES $ heroku ci:config:unset RAILS_ENV ``` -_See code: [src/commands/ci/config/unset.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/config/unset.ts)_ +_See code: [src/commands/ci/config/unset.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/config/unset.ts)_ ## `heroku ci:debug` @@ -172,7 +172,7 @@ DESCRIPTION opens an interactive test debugging session with the contents of the current directory ``` -_See code: [src/commands/ci/debug.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/debug.ts)_ +_See code: [src/commands/ci/debug.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/debug.ts)_ ## `heroku ci:info TEST-RUN` @@ -201,7 +201,7 @@ EXAMPLES $ heroku ci:info 1288 --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/info.ts)_ +_See code: [src/commands/ci/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/info.ts)_ ## `heroku ci:last` @@ -227,7 +227,7 @@ EXAMPLES $ heroku ci:last --pipeline=my-pipeline --node 100 ``` -_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/last.ts)_ +_See code: [src/commands/ci/last.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/last.ts)_ ## `heroku ci:migrate-manifest` @@ -244,7 +244,7 @@ EXAMPLES $ heroku ci:migrate-manifest ``` -_See code: [src/commands/ci/migrate-manifest.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/migrate-manifest.ts)_ +_See code: [src/commands/ci/migrate-manifest.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/migrate-manifest.ts)_ ## `heroku ci:open` @@ -269,7 +269,7 @@ EXAMPLES $ heroku ci:open --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/open.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/open.ts)_ +_See code: [src/commands/ci/open.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/open.ts)_ ## `heroku ci:rerun [NUMBER]` @@ -297,7 +297,7 @@ EXAMPLES $ heroku ci:rerun 985 --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/rerun.ts)_ +_See code: [src/commands/ci/rerun.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/rerun.ts)_ ## `heroku ci:run` @@ -322,4 +322,4 @@ EXAMPLES $ heroku ci:run --app murmuring-headland-14719 ``` -_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ci/run.ts)_ +_See code: [src/commands/ci/run.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ci/run.ts)_ diff --git a/docs/clients.md b/docs/clients.md index 6b440fc04a..b79bb40e8d 100644 --- a/docs/clients.md +++ b/docs/clients.md @@ -28,7 +28,7 @@ DESCRIPTION list your OAuth clients ``` -_See code: [src/commands/clients/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/clients/index.ts)_ +_See code: [src/commands/clients/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/clients/index.ts)_ ## `heroku clients:create NAME REDIRECT_URI` @@ -56,7 +56,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/v11.1.1/src/commands/clients/create.ts)_ +_See code: [src/commands/clients/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/clients/create.ts)_ ## `heroku clients:destroy ID` @@ -76,7 +76,7 @@ DESCRIPTION delete client by ID ``` -_See code: [src/commands/clients/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/clients/destroy.ts)_ +_See code: [src/commands/clients/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/clients/destroy.ts)_ ## `heroku clients:info ID` @@ -103,7 +103,7 @@ EXAMPLES $ heroku clients:info 36120128-fee7-455e-8b7f-807aee130946 ``` -_See code: [src/commands/clients/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/clients/info.ts)_ +_See code: [src/commands/clients/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/clients/info.ts)_ ## `heroku clients:rotate ID` @@ -127,7 +127,7 @@ DESCRIPTION rotate OAuth client secret ``` -_See code: [src/commands/clients/rotate.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/clients/rotate.ts)_ +_See code: [src/commands/clients/rotate.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/clients/rotate.ts)_ ## `heroku clients:update ID` @@ -154,4 +154,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/v11.1.1/src/commands/clients/update.ts)_ +_See code: [src/commands/clients/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/clients/update.ts)_ diff --git a/docs/config.md b/docs/config.md index e957aaafa8..b72c0a0e38 100644 --- a/docs/config.md +++ b/docs/config.md @@ -31,7 +31,7 @@ DESCRIPTION display the config vars for an app ``` -_See code: [src/commands/config/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/config/index.ts)_ +_See code: [src/commands/config/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/config/index.ts)_ ## `heroku config:edit [KEY]` @@ -70,7 +70,7 @@ EXAMPLES $ VISUAL="atom --wait" heroku config:edit ``` -_See code: [src/commands/config/edit.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/config/edit.ts)_ +_See code: [src/commands/config/edit.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/config/edit.ts)_ ## `heroku config:get KEY...` @@ -100,7 +100,7 @@ EXAMPLES production ``` -_See code: [src/commands/config/get.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/config/get.ts)_ +_See code: [src/commands/config/get.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/config/get.ts)_ ## `heroku config:remove` @@ -160,7 +160,7 @@ EXAMPLES RACK_ENV: staging ``` -_See code: [src/commands/config/set.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/config/set.ts)_ +_See code: [src/commands/config/set.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/config/set.ts)_ ## `heroku config:unset` @@ -191,4 +191,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/v11.1.1/src/commands/config/unset.ts)_ +_See code: [src/commands/config/unset.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/config/unset.ts)_ diff --git a/docs/container.md b/docs/container.md index 9bcb281a7d..a6a5461140 100644 --- a/docs/container.md +++ b/docs/container.md @@ -29,7 +29,7 @@ DESCRIPTION log in to Heroku Container Registry ``` -_See code: [src/commands/container/login.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/container/login.ts)_ +_See code: [src/commands/container/login.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/container/login.ts)_ ## `heroku container:logout` @@ -49,7 +49,7 @@ DESCRIPTION log out from Heroku Container Registry ``` -_See code: [src/commands/container/logout.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/container/logout.ts)_ +_See code: [src/commands/container/logout.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/container/logout.ts)_ ## `heroku container:pull -a APP [-v] PROCESS_TYPE...` @@ -78,7 +78,7 @@ EXAMPLES $ heroku container:pull web:latest # Pulls the latest tag from the web image ``` -_See code: [src/commands/container/pull.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/container/pull.ts)_ +_See code: [src/commands/container/pull.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/container/pull.ts)_ ## `heroku container:push` @@ -116,7 +116,7 @@ EXAMPLES $ heroku container:push --recursive --context-path . # Pushes Dockerfile.* using current dir as build context ``` -_See code: [src/commands/container/push.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/container/push.ts)_ +_See code: [src/commands/container/push.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/container/push.ts)_ ## `heroku container:release` @@ -143,7 +143,7 @@ EXAMPLES $ heroku container:release web worker # Releases the previously pushed web and worker process types ``` -_See code: [src/commands/container/release.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/container/release.ts)_ +_See code: [src/commands/container/release.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/container/release.ts)_ ## `heroku container:rm -a APP [-v] PROCESS_TYPE...` @@ -169,7 +169,7 @@ EXAMPLES $ heroku container:rm web worker # Destroys the web and worker containers ``` -_See code: [src/commands/container/rm.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/container/rm.ts)_ +_See code: [src/commands/container/rm.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/container/rm.ts)_ ## `heroku container:run -a APP [-v] PROCESS_TYPE...` @@ -199,4 +199,4 @@ EXAMPLES $ heroku container:pull web:latest # Pulls the latest tag from the web image ``` -_See code: [src/commands/container/run.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/container/run.ts)_ +_See code: [src/commands/container/run.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/container/run.ts)_ diff --git a/docs/data.md b/docs/data.md index a9098b360f..c19db99be9 100644 --- a/docs/data.md +++ b/docs/data.md @@ -63,7 +63,7 @@ EXAMPLES $ heroku data:maintenances --app production-app --json ``` -_See code: [src/commands/data/maintenances/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/index.ts)_ +_See code: [src/commands/data/maintenances/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/index.ts)_ ## `heroku data:maintenances:history ADDON` @@ -103,7 +103,7 @@ EXAMPLES $ heroku data:maintenances:history DATABASE --app production-app ``` -_See code: [src/commands/data/maintenances/history.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/history.ts)_ +_See code: [src/commands/data/maintenances/history.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/history.ts)_ ## `heroku data:maintenances:info ADDON` @@ -135,7 +135,7 @@ EXAMPLES $ heroku data:maintenances:info DATABASE --app test-app ``` -_See code: [src/commands/data/maintenances/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/info.ts)_ +_See code: [src/commands/data/maintenances/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/info.ts)_ ## `heroku data:maintenances:run ADDON` @@ -171,7 +171,7 @@ EXAMPLES $ heroku data:maintenances:run DATABASE --app production-app ``` -_See code: [src/commands/data/maintenances/run.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/run.ts)_ +_See code: [src/commands/data/maintenances/run.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/run.ts)_ ## `heroku data:maintenances:schedule ADDON` @@ -208,7 +208,7 @@ EXAMPLES $ heroku data:maintenances:schedule HEROKU_POSTGRESQL_RED --app test-app ``` -_See code: [src/commands/data/maintenances/schedule.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/schedule.ts)_ +_See code: [src/commands/data/maintenances/schedule.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/schedule.ts)_ ## `heroku data:maintenances:wait ADDON` @@ -237,7 +237,7 @@ EXAMPLES $ heroku data:maintenances:wait DATABASE --app production-app ``` -_See code: [src/commands/data/maintenances/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/wait.ts)_ +_See code: [src/commands/data/maintenances/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/wait.ts)_ ## `heroku data:maintenances:window ADDON` @@ -267,7 +267,7 @@ EXAMPLES $ heroku data:maintenances:window DATABASE --app production-app ``` -_See code: [src/commands/data/maintenances/window/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/window/index.ts)_ +_See code: [src/commands/data/maintenances/window/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/window/index.ts)_ ## `heroku data:maintenances:window:update ADDON DAY_OF_WEEK TIME_OF_DAY` @@ -301,7 +301,7 @@ EXAMPLES $ heroku data:maintenances:window DATABASE sunday 1:30PM --app production-app ``` -_See code: [src/commands/data/maintenances/window/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/maintenances/window/update.ts)_ +_See code: [src/commands/data/maintenances/window/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/maintenances/window/update.ts)_ ## `heroku data:pg:attachments DATABASE` @@ -328,7 +328,7 @@ EXAMPLES $ heroku data:pg:attachments database_name -a example-app ``` -_See code: [src/commands/data/pg/attachments/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/attachments/index.ts)_ +_See code: [src/commands/data/pg/attachments/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/attachments/index.ts)_ ## `heroku data:pg:attachments:create DATABASE` @@ -357,7 +357,7 @@ DESCRIPTION attach an existing Postgres Advanced database to an app ``` -_See code: [src/commands/data/pg/attachments/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/attachments/create.ts)_ +_See code: [src/commands/data/pg/attachments/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/attachments/create.ts)_ ## `heroku data:pg:attachments:destroy ATTACHMENT_NAME` @@ -382,7 +382,7 @@ DESCRIPTION detach an existing database attachment from an app ``` -_See code: [src/commands/data/pg/attachments/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/attachments/destroy.ts)_ +_See code: [src/commands/data/pg/attachments/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/attachments/destroy.ts)_ ## `heroku data:pg:create` @@ -418,7 +418,7 @@ EXAMPLES $ heroku data:pg:create --level 4G-Performance -a example-app ``` -_See code: [src/commands/data/pg/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/create.ts)_ +_See code: [src/commands/data/pg/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/create.ts)_ ## `heroku data:pg:credentials DATABASE` @@ -426,7 +426,7 @@ list credentials on a Postgres Advanced database ``` USAGE - $ heroku data:pg:credentials DATABASE -a [--prompt] [-r ] + $ heroku data:pg:credentials DATABASE -a [--prompt] [--no-wrap] [-r ] ARGUMENTS DATABASE database name, database attachment name, or related config var on an app @@ -434,6 +434,7 @@ ARGUMENTS FLAGS -a, --app= (required) app to run command against -r, --remote= git remote of app to use + --no-wrap disable wrapped table cells for easier copy/paste GLOBAL FLAGS --prompt interactively prompt for command arguments and flags @@ -445,7 +446,7 @@ EXAMPLES $ heroku data:pg:credentials database_name -a example-app ``` -_See code: [src/commands/data/pg/credentials/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/credentials/index.ts)_ +_See code: [src/commands/data/pg/credentials/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/credentials/index.ts)_ ## `heroku data:pg:credentials:create DATABASE` @@ -473,7 +474,7 @@ EXAMPLES $ heroku data:pg:credentials:create DATABASE --name my-credential --app example-app ``` -_See code: [src/commands/data/pg/credentials/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/credentials/create.ts)_ +_See code: [src/commands/data/pg/credentials/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/credentials/create.ts)_ ## `heroku data:pg:credentials:destroy DATABASE` @@ -502,7 +503,7 @@ EXAMPLES $ heroku data:pg:credentials:destroy DATABASE --name my-credential --app example-app ``` -_See code: [src/commands/data/pg/credentials/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/credentials/destroy.ts)_ +_See code: [src/commands/data/pg/credentials/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/credentials/destroy.ts)_ ## `heroku data:pg:credentials:rotate DATABASE` @@ -532,7 +533,7 @@ DESCRIPTION rotate credentials on a Postgres database ``` -_See code: [src/commands/data/pg/credentials/rotate.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/credentials/rotate.ts)_ +_See code: [src/commands/data/pg/credentials/rotate.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/credentials/rotate.ts)_ ## `heroku data:pg:credentials:url DATABASE` @@ -560,7 +561,7 @@ EXAMPLES $ heroku data:pg:credentials:url DATABASE --app myapp ``` -_See code: [src/commands/data/pg/credentials/url.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/credentials/url.ts)_ +_See code: [src/commands/data/pg/credentials/url.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/credentials/url.ts)_ ## `heroku data:pg:destroy DATABASE` @@ -589,7 +590,7 @@ EXAMPLES $ heroku data:pg:destroy database_name ``` -_See code: [src/commands/data/pg/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/destroy.ts)_ +_See code: [src/commands/data/pg/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/destroy.ts)_ ## `heroku data:pg:docs` @@ -609,7 +610,7 @@ DESCRIPTION open documentation for Heroku Postgres in your web browser ``` -_See code: [src/commands/data/pg/docs.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/docs.ts)_ +_See code: [src/commands/data/pg/docs.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/docs.ts)_ ## `heroku data:pg:fork DATABASE` @@ -657,7 +658,7 @@ EXAMPLES $ heroku data:pg:fork DATABASE --app my-app --as RESTORED --rollback-by '1 day 3 hours 20 minutes' ``` -_See code: [src/commands/data/pg/fork.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/fork.ts)_ +_See code: [src/commands/data/pg/fork.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/fork.ts)_ ## `heroku data:pg:info DATABASE` @@ -684,7 +685,7 @@ EXAMPLES $ heroku data:pg:info database_name ``` -_See code: [src/commands/data/pg/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/info.ts)_ +_See code: [src/commands/data/pg/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/info.ts)_ ## `heroku data:pg:levels` @@ -698,7 +699,7 @@ DESCRIPTION show available levels for Heroku Postgres Advanced databases ``` -_See code: [src/commands/data/pg/levels.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/levels.ts)_ +_See code: [src/commands/data/pg/levels.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/levels.ts)_ ## `heroku data:pg:psql DATABASE` @@ -729,7 +730,7 @@ EXAMPLES $ heroku data:pg:psql database_name -a example-app ``` -_See code: [src/commands/data/pg/psql.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/psql.ts)_ +_See code: [src/commands/data/pg/psql.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/psql.ts)_ ## `heroku data:pg:quotas DATABASE` @@ -758,7 +759,7 @@ EXAMPLES $ heroku data:pg:quotas database_name --app example-app ``` -_See code: [src/commands/data/pg/quotas/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/quotas/index.ts)_ +_See code: [src/commands/data/pg/quotas/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/quotas/index.ts)_ ## `heroku data:pg:quotas:update DATABASE` @@ -792,7 +793,7 @@ EXAMPLES $ heroku data:pg:quotas:update --app example-app --type storage --warning 12 --critical 15 --enforcement-action notify ``` -_See code: [src/commands/data/pg/quotas/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/quotas/update.ts)_ +_See code: [src/commands/data/pg/quotas/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/quotas/update.ts)_ ## `heroku data:pg:settings DATABASE` @@ -828,7 +829,7 @@ EXAMPLES app_name ``` -_See code: [src/commands/data/pg/settings.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/settings.ts)_ +_See code: [src/commands/data/pg/settings.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/settings.ts)_ ## `heroku data:pg:update [DATABASE]` @@ -849,7 +850,7 @@ DESCRIPTION update a Postgres Advanced database through interactive prompts ``` -_See code: [src/commands/data/pg/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/update.ts)_ +_See code: [src/commands/data/pg/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/update.ts)_ ## `heroku data:pg:wait DATABASE` @@ -879,4 +880,4 @@ EXAMPLES $ heroku data:pg:wait DATABASE --app myapp ``` -_See code: [src/commands/data/pg/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/data/pg/wait.ts)_ +_See code: [src/commands/data/pg/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/data/pg/wait.ts)_ diff --git a/docs/domains.md b/docs/domains.md index c10db2e98e..9db34f05af 100644 --- a/docs/domains.md +++ b/docs/domains.md @@ -17,8 +17,8 @@ list domains for an app ``` USAGE - $ heroku domains -a [--prompt] [--columns ] [-c] [-x] [--filter ] [-j] [-r ] - [--sort ] + $ heroku domains -a [--prompt] [--columns ] [-c] [-x] [--filter ] [-j] [--no-wrap] + [-r ] [--sort ] FLAGS -a, --app= (required) app to run command against @@ -28,6 +28,7 @@ FLAGS -x, --extended show extra columns --columns= only show provided columns (comma-separated) --filter= filter property by partial string matching, ex: name=foo + --no-wrap disable wrapped table cells for easier copy/paste --sort= sort by property GLOBAL FLAGS @@ -50,7 +51,7 @@ EXAMPLES www.example.com CNAME www.example.herokudns.com ``` -_See code: [src/commands/domains/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/domains/index.ts)_ +_See code: [src/commands/domains/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/domains/index.ts)_ ## `heroku domains:add HOSTNAME` @@ -80,7 +81,7 @@ EXAMPLES $ heroku domains:add www.example.com ``` -_See code: [src/commands/domains/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/domains/add.ts)_ +_See code: [src/commands/domains/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/domains/add.ts)_ ## `heroku domains:clear` @@ -104,7 +105,7 @@ EXAMPLES $ heroku domains:clear ``` -_See code: [src/commands/domains/clear.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/domains/clear.ts)_ +_See code: [src/commands/domains/clear.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/domains/clear.ts)_ ## `heroku domains:info HOSTNAME` @@ -131,7 +132,7 @@ EXAMPLES $ heroku domains:info www.example.com ``` -_See code: [src/commands/domains/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/domains/info.ts)_ +_See code: [src/commands/domains/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/domains/info.ts)_ ## `heroku domains:remove HOSTNAME` @@ -158,7 +159,7 @@ EXAMPLES $ heroku domains:remove www.example.com ``` -_See code: [src/commands/domains/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/domains/remove.ts)_ +_See code: [src/commands/domains/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/domains/remove.ts)_ ## `heroku domains:update HOSTNAME` @@ -186,7 +187,7 @@ EXAMPLES $ heroku domains:update www.example.com --cert mycert ``` -_See code: [src/commands/domains/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/domains/update.ts)_ +_See code: [src/commands/domains/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/domains/update.ts)_ ## `heroku domains:wait [HOSTNAME]` @@ -210,4 +211,4 @@ DESCRIPTION wait for domain to be active for an app ``` -_See code: [src/commands/domains/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/domains/wait.ts)_ +_See code: [src/commands/domains/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/domains/wait.ts)_ diff --git a/docs/drains.md b/docs/drains.md index 369b4e642a..bc49e352ad 100644 --- a/docs/drains.md +++ b/docs/drains.md @@ -29,7 +29,7 @@ DESCRIPTION display the log drains of an app ``` -_See code: [src/commands/drains/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/drains/index.ts)_ +_See code: [src/commands/drains/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/drains/index.ts)_ ## `heroku drains:add URL` @@ -53,7 +53,7 @@ DESCRIPTION adds a log drain to an app ``` -_See code: [src/commands/drains/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/drains/add.ts)_ +_See code: [src/commands/drains/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/drains/add.ts)_ ## `heroku drains:get` @@ -102,7 +102,7 @@ EXAMPLES $ drains:remove [URL|TOKEN] ``` -_See code: [src/commands/drains/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/drains/remove.ts)_ +_See code: [src/commands/drains/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/drains/remove.ts)_ ## `heroku drains:set URL` diff --git a/docs/features.md b/docs/features.md index eac458ca74..8e88199ab3 100644 --- a/docs/features.md +++ b/docs/features.md @@ -28,7 +28,7 @@ DESCRIPTION list available app features ``` -_See code: [src/commands/features/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/features/index.ts)_ +_See code: [src/commands/features/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/features/index.ts)_ ## `heroku features:disable FEATURE` @@ -52,7 +52,7 @@ DESCRIPTION disables an app feature ``` -_See code: [src/commands/features/disable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/features/disable.ts)_ +_See code: [src/commands/features/disable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/features/disable.ts)_ ## `heroku features:enable FEATURE` @@ -76,7 +76,7 @@ DESCRIPTION enables an app feature ``` -_See code: [src/commands/features/enable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/features/enable.ts)_ +_See code: [src/commands/features/enable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/features/enable.ts)_ ## `heroku features:info FEATURE` @@ -101,4 +101,4 @@ DESCRIPTION display information about a feature ``` -_See code: [src/commands/features/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/features/info.ts)_ +_See code: [src/commands/features/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/features/info.ts)_ diff --git a/docs/git.md b/docs/git.md index 14dc0f403c..2c82e0e4ca 100644 --- a/docs/git.md +++ b/docs/git.md @@ -34,7 +34,7 @@ EXAMPLES ... ``` -_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/git/clone.ts)_ +_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/git/clone.ts)_ ## `heroku git:remote` @@ -63,4 +63,4 @@ EXAMPLES $ heroku git:remote --remote heroku-staging -a example-staging ``` -_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/git/remote.ts)_ +_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/git/remote.ts)_ diff --git a/docs/keys.md b/docs/keys.md index dd86141b1e..3887c780c3 100644 --- a/docs/keys.md +++ b/docs/keys.md @@ -27,7 +27,7 @@ DESCRIPTION display your SSH keys ``` -_See code: [src/commands/keys/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/keys/index.ts)_ +_See code: [src/commands/keys/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/keys/index.ts)_ ## `heroku keys:add [KEY]` @@ -62,7 +62,7 @@ EXAMPLES Uploading SSH public key /my/key.pub... done ``` -_See code: [src/commands/keys/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/keys/add.ts)_ +_See code: [src/commands/keys/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/keys/add.ts)_ ## `heroku keys:clear` @@ -76,7 +76,7 @@ DESCRIPTION remove all SSH keys for current user ``` -_See code: [src/commands/keys/clear.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/keys/clear.ts)_ +_See code: [src/commands/keys/clear.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/keys/clear.ts)_ ## `heroku keys:remove KEY` @@ -100,4 +100,4 @@ EXAMPLES Removing email@example.com SSH key... done ``` -_See code: [src/commands/keys/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/keys/remove.ts)_ +_See code: [src/commands/keys/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/keys/remove.ts)_ diff --git a/docs/labs.md b/docs/labs.md index 0f32871391..942b15c1ed 100644 --- a/docs/labs.md +++ b/docs/labs.md @@ -28,7 +28,7 @@ DESCRIPTION list experimental features ``` -_See code: [src/commands/labs/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/labs/index.ts)_ +_See code: [src/commands/labs/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/labs/index.ts)_ ## `heroku labs:disable FEATURE` @@ -53,7 +53,7 @@ DESCRIPTION disables an experimental feature ``` -_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/labs/disable.ts)_ +_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/labs/disable.ts)_ ## `heroku labs:enable FEATURE` @@ -77,7 +77,7 @@ DESCRIPTION enables an experimental feature ``` -_See code: [src/commands/labs/enable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/labs/enable.ts)_ +_See code: [src/commands/labs/enable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/labs/enable.ts)_ ## `heroku labs:info FEATURE` @@ -102,4 +102,4 @@ DESCRIPTION show feature info ``` -_See code: [src/commands/labs/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/labs/info.ts)_ +_See code: [src/commands/labs/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/labs/info.ts)_ diff --git a/docs/local.md b/docs/local.md index 4b99fef371..c4f6a5df50 100644 --- a/docs/local.md +++ b/docs/local.md @@ -20,10 +20,10 @@ ARGUMENTS [PROCESSNAME] name of the process FLAGS - -e, --env= location of env file (defaults to .env) - -f, --procfile= use a different Procfile - -p, --port= port to listen on - --start-cmd= command to run as a web process when there’s no Procfile + -e, --env= location of env file (defaults to .env) + -f, --procfile= use a different Procfile + -p, --port= port to listen on + --start-cmd= command to run as web when no Procfile is present DESCRIPTION run heroku app locally @@ -42,7 +42,7 @@ EXAMPLES $ heroku local web=1,worker=2 ``` -_See code: [src/commands/local/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/local/index.ts)_ +_See code: [src/commands/local/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/local/index.ts)_ ## `heroku local:run` @@ -63,7 +63,7 @@ EXAMPLES $ heroku local:run bin/migrate ``` -_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/local/run.ts)_ +_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/local/run.ts)_ ## `heroku local:start [PROCESSNAME]` @@ -77,10 +77,10 @@ ARGUMENTS [PROCESSNAME] name of the process FLAGS - -e, --env= location of env file (defaults to .env) - -f, --procfile= use a different Procfile - -p, --port= port to listen on - --start-cmd= command to run as a web process when there’s no Procfile + -e, --env= location of env file (defaults to .env) + -f, --procfile= use a different Procfile + -p, --port= port to listen on + --start-cmd= command to run as web when no Procfile is present DESCRIPTION run heroku app locally @@ -111,4 +111,4 @@ DESCRIPTION display node-foreman version ``` -_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/local/version.ts)_ +_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/local/version.ts)_ diff --git a/docs/logs.md b/docs/logs.md index 45ef939679..a8fea0e154 100644 --- a/docs/logs.md +++ b/docs/logs.md @@ -44,4 +44,4 @@ EXAMPLES $ heroku logs --app=my-app --tail ``` -_See code: [src/commands/logs.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/logs.ts)_ +_See code: [src/commands/logs.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/logs.ts)_ diff --git a/docs/maintenance.md b/docs/maintenance.md index 78c48062f6..8e3edac93c 100644 --- a/docs/maintenance.md +++ b/docs/maintenance.md @@ -26,7 +26,7 @@ DESCRIPTION display the current maintenance status of app ``` -_See code: [src/commands/maintenance/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/maintenance/index.ts)_ +_See code: [src/commands/maintenance/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/maintenance/index.ts)_ ## `heroku maintenance:off` @@ -47,7 +47,7 @@ DESCRIPTION take the app out of maintenance mode ``` -_See code: [src/commands/maintenance/off.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/maintenance/off.ts)_ +_See code: [src/commands/maintenance/off.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/maintenance/off.ts)_ ## `heroku maintenance:on` @@ -68,4 +68,4 @@ DESCRIPTION put the app into maintenance mode ``` -_See code: [src/commands/maintenance/on.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/maintenance/on.ts)_ +_See code: [src/commands/maintenance/on.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/maintenance/on.ts)_ diff --git a/docs/mcp.md b/docs/mcp.md index df766ccbf0..fe99a8b13a 100644 --- a/docs/mcp.md +++ b/docs/mcp.md @@ -17,4 +17,4 @@ DESCRIPTION starts the Heroku platform MCP server in stdio mode ``` -_See code: [src/commands/mcp/start.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/mcp/start.ts)_ +_See code: [src/commands/mcp/start.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/mcp/start.ts)_ diff --git a/docs/members.md b/docs/members.md index 7d5c7825ee..0910036ac6 100644 --- a/docs/members.md +++ b/docs/members.md @@ -29,7 +29,7 @@ DESCRIPTION list members of a team ``` -_See code: [src/commands/members/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/members/index.ts)_ +_See code: [src/commands/members/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/members/index.ts)_ ## `heroku members:add EMAIL` @@ -53,7 +53,7 @@ DESCRIPTION adds a user to a team ``` -_See code: [src/commands/members/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/members/add.ts)_ +_See code: [src/commands/members/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/members/add.ts)_ ## `heroku members:remove` @@ -73,7 +73,7 @@ DESCRIPTION removes a user from a team ``` -_See code: [src/commands/members/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/members/remove.ts)_ +_See code: [src/commands/members/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/members/remove.ts)_ ## `heroku members:set` @@ -94,4 +94,4 @@ DESCRIPTION sets a members role in a team ``` -_See code: [src/commands/members/set.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/members/set.ts)_ +_See code: [src/commands/members/set.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/members/set.ts)_ diff --git a/docs/notifications.md b/docs/notifications.md index 3152b38549..9431bef051 100644 --- a/docs/notifications.md +++ b/docs/notifications.md @@ -27,4 +27,4 @@ DESCRIPTION display notifications ``` -_See code: [src/commands/notifications/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/notifications/index.ts)_ +_See code: [src/commands/notifications/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/notifications/index.ts)_ diff --git a/docs/orgs.md b/docs/orgs.md index 109c6345ca..87f7f7cd39 100644 --- a/docs/orgs.md +++ b/docs/orgs.md @@ -25,7 +25,7 @@ DESCRIPTION list the teams that you are a member of ``` -_See code: [src/commands/orgs/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/orgs/index.ts)_ +_See code: [src/commands/orgs/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/orgs/index.ts)_ ## `heroku orgs:open` @@ -45,4 +45,4 @@ DESCRIPTION open the team interface in a browser window ``` -_See code: [src/commands/orgs/open.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/orgs/open.ts)_ +_See code: [src/commands/orgs/open.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/orgs/open.ts)_ diff --git a/docs/pg.md b/docs/pg.md index 7fd16101bb..8dd4a35eb0 100644 --- a/docs/pg.md +++ b/docs/pg.md @@ -112,7 +112,7 @@ DESCRIPTION list database backups ``` -_See code: [src/commands/pg/backups/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/index.ts)_ +_See code: [src/commands/pg/backups/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/index.ts)_ ## `heroku pg:backups:cancel [BACKUP_ID]` @@ -136,7 +136,7 @@ DESCRIPTION cancel an in-progress backup or restore (default newest) ``` -_See code: [src/commands/pg/backups/cancel.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/cancel.ts)_ +_See code: [src/commands/pg/backups/cancel.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/cancel.ts)_ ## `heroku pg:backups:capture [DATABASE]` @@ -164,7 +164,7 @@ DESCRIPTION capture a new backup ``` -_See code: [src/commands/pg/backups/capture.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/capture.ts)_ +_See code: [src/commands/pg/backups/capture.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/capture.ts)_ ## `heroku pg:backups:delete BACKUP_ID` @@ -191,7 +191,7 @@ EXAMPLES $ heroku pg:backup:delete --app APP_ID BACKUP_ID ``` -_See code: [src/commands/pg/backups/delete.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/delete.ts)_ +_See code: [src/commands/pg/backups/delete.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/delete.ts)_ ## `heroku pg:backups:download [BACKUP_ID]` @@ -216,7 +216,7 @@ DESCRIPTION downloads database backup ``` -_See code: [src/commands/pg/backups/download.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/download.ts)_ +_See code: [src/commands/pg/backups/download.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/download.ts)_ ## `heroku pg:backups:info [BACKUP_ID]` @@ -240,7 +240,7 @@ DESCRIPTION get information about a specific backup ``` -_See code: [src/commands/pg/backups/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/info.ts)_ +_See code: [src/commands/pg/backups/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/info.ts)_ ## `heroku pg:backups:restore [BACKUP] [DATABASE]` @@ -293,7 +293,7 @@ EXAMPLES $ heroku pg:backups:restore b101 HEROKU_POSTGRESQL_PINK --app my-heroku-app ``` -_See code: [src/commands/pg/backups/restore.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/restore.ts)_ +_See code: [src/commands/pg/backups/restore.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/restore.ts)_ ## `heroku pg:backups:schedule [DATABASE]` @@ -301,7 +301,7 @@ schedule daily backups for given database ``` USAGE - $ heroku pg:backups:schedule [DATABASE] --at -a [--prompt] [-r ] + $ heroku pg:backups:schedule [DATABASE] -a --at [--prompt] [-r ] ARGUMENTS [DATABASE] config var containing the connection string, unique name, ID, or alias of the database. To access another @@ -321,7 +321,7 @@ DESCRIPTION schedule daily backups for given database ``` -_See code: [src/commands/pg/backups/schedule.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/schedule.ts)_ +_See code: [src/commands/pg/backups/schedule.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/schedule.ts)_ ## `heroku pg:backups:schedules` @@ -342,7 +342,7 @@ DESCRIPTION list backup schedule ``` -_See code: [src/commands/pg/backups/schedules.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/schedules.ts)_ +_See code: [src/commands/pg/backups/schedules.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/schedules.ts)_ ## `heroku pg:backups:unschedule [DATABASE]` @@ -368,7 +368,7 @@ DESCRIPTION stop daily backups ``` -_See code: [src/commands/pg/backups/unschedule.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/unschedule.ts)_ +_See code: [src/commands/pg/backups/unschedule.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/unschedule.ts)_ ## `heroku pg:backups:url [BACKUP_ID]` @@ -392,7 +392,7 @@ DESCRIPTION get secret but publicly accessible URL of a backup ``` -_See code: [src/commands/pg/backups/url.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/backups/url.ts)_ +_See code: [src/commands/pg/backups/url.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/backups/url.ts)_ ## `heroku pg:bloat [DATABASE]` @@ -418,7 +418,7 @@ DESCRIPTION show table and index bloat in your database ordered by most wasteful ``` -_See code: [src/commands/pg/bloat.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/bloat.ts)_ +_See code: [src/commands/pg/bloat.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/bloat.ts)_ ## `heroku pg:blocking [DATABASE]` @@ -444,7 +444,7 @@ DESCRIPTION display queries holding locks other queries are waiting to be released ``` -_See code: [src/commands/pg/blocking.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/blocking.ts)_ +_See code: [src/commands/pg/blocking.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/blocking.ts)_ ## `heroku pg:connection-pooling:attach [DATABASE]` @@ -471,10 +471,10 @@ DESCRIPTION add an attachment to a database using connection pooling EXAMPLES - $ heroku pg:connection-pooling:attach postgresql-something-12345 + $ heroku pg:connection-pooling:attach postgresql-something-12345 ``` -_See code: [src/commands/pg/connection-pooling/attach.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/connection-pooling/attach.ts)_ +_See code: [src/commands/pg/connection-pooling/attach.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/connection-pooling/attach.ts)_ ## `heroku pg:copy SOURCE TARGET` @@ -503,7 +503,7 @@ DESCRIPTION copy all data from source db to target ``` -_See code: [src/commands/pg/copy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/copy.ts)_ +_See code: [src/commands/pg/copy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/copy.ts)_ ## `heroku pg:credentials [DATABASE]` @@ -511,7 +511,7 @@ show information on credentials in the database ``` USAGE - $ heroku pg:credentials [DATABASE] -a [--prompt] [-r ] + $ heroku pg:credentials [DATABASE] -a [--prompt] [--no-wrap] [-r ] ARGUMENTS [DATABASE] config var containing the connection string, unique name, ID, or alias of the database. To access another @@ -521,6 +521,7 @@ ARGUMENTS FLAGS -a, --app= (required) app to run command against -r, --remote= git remote of app to use + --no-wrap disable wrapped table cells for easier copy/paste GLOBAL FLAGS --prompt interactively prompt for command arguments and flags @@ -529,7 +530,7 @@ DESCRIPTION show information on credentials in the database ``` -_See code: [src/commands/pg/credentials.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/credentials.ts)_ +_See code: [src/commands/pg/credentials.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/credentials.ts)_ ## `heroku pg:credentials:create [DATABASE]` @@ -559,7 +560,7 @@ EXAMPLES $ heroku pg:credentials:create postgresql-something-12345 --name new-cred-name ``` -_See code: [src/commands/pg/credentials/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/credentials/create.ts)_ +_See code: [src/commands/pg/credentials/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/credentials/create.ts)_ ## `heroku pg:credentials:destroy [DATABASE]` @@ -590,7 +591,7 @@ EXAMPLES $ heroku pg:credentials:destroy postgresql-transparent-56874 --name cred-name -a woodstock-production ``` -_See code: [src/commands/pg/credentials/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/credentials/destroy.ts)_ +_See code: [src/commands/pg/credentials/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/credentials/destroy.ts)_ ## `heroku pg:credentials:repair-default [DATABASE]` @@ -620,7 +621,7 @@ EXAMPLES $ heroku pg:credentials:repair-default postgresql-something-12345 ``` -_See code: [src/commands/pg/credentials/repair-default.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/credentials/repair-default.ts)_ +_See code: [src/commands/pg/credentials/repair-default.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/credentials/repair-default.ts)_ ## `heroku pg:credentials:rotate [DATABASE]` @@ -651,7 +652,7 @@ DESCRIPTION rotate the database credentials ``` -_See code: [src/commands/pg/credentials/rotate.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/credentials/rotate.ts)_ +_See code: [src/commands/pg/credentials/rotate.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/credentials/rotate.ts)_ ## `heroku pg:credentials:url [DATABASE]` @@ -678,7 +679,7 @@ DESCRIPTION show information on a database credential ``` -_See code: [src/commands/pg/credentials/url.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/credentials/url.ts)_ +_See code: [src/commands/pg/credentials/url.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/credentials/url.ts)_ ## `heroku pg:diagnose [DATABASE|REPORT_ID]` @@ -705,7 +706,7 @@ DESCRIPTION if REPORT_ID is specified instead, a previous report is displayed ``` -_See code: [src/commands/pg/diagnose.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/diagnose.ts)_ +_See code: [src/commands/pg/diagnose.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/diagnose.ts)_ ## `heroku pg:info [DATABASE]` @@ -734,7 +735,7 @@ ALIASES $ heroku pg ``` -_See code: [src/commands/pg/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/info.ts)_ +_See code: [src/commands/pg/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/info.ts)_ ## `heroku pg:kill PID [DATABASE]` @@ -762,7 +763,7 @@ DESCRIPTION kill a query ``` -_See code: [src/commands/pg/kill.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/kill.ts)_ +_See code: [src/commands/pg/kill.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/kill.ts)_ ## `heroku pg:killall [DATABASE]` @@ -788,7 +789,7 @@ DESCRIPTION terminates all connections for all credentials ``` -_See code: [src/commands/pg/killall.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/killall.ts)_ +_See code: [src/commands/pg/killall.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/killall.ts)_ ## `heroku pg:links [DATABASE]` @@ -814,7 +815,7 @@ DESCRIPTION lists all databases and information on link ``` -_See code: [src/commands/pg/links/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/links/index.ts)_ +_See code: [src/commands/pg/links/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/links/index.ts)_ ## `heroku pg:links:create REMOTE DATABASE` @@ -845,7 +846,7 @@ EXAMPLES $ heroku pg:links:create HEROKU_REDIS_RED HEROKU_POSTGRESQL_CERULEAN ``` -_See code: [src/commands/pg/links/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/links/create.ts)_ +_See code: [src/commands/pg/links/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/links/create.ts)_ ## `heroku pg:links:destroy DATABASE LINK` @@ -875,7 +876,7 @@ EXAMPLES $ heroku pg:links:destroy HEROKU_POSTGRESQL_CERULEAN redis-symmetrical-100 ``` -_See code: [src/commands/pg/links/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/links/destroy.ts)_ +_See code: [src/commands/pg/links/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/links/destroy.ts)_ ## `heroku pg:locks [DATABASE]` @@ -902,7 +903,7 @@ DESCRIPTION display queries with active locks ``` -_See code: [src/commands/pg/locks.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/locks.ts)_ +_See code: [src/commands/pg/locks.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/locks.ts)_ ## `heroku pg:outliers [DATABASE]` @@ -931,7 +932,7 @@ DESCRIPTION show 10 queries that have longest execution time in aggregate ``` -_See code: [src/commands/pg/outliers.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/outliers.ts)_ +_See code: [src/commands/pg/outliers.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/outliers.ts)_ ## `heroku pg:promote DATABASE` @@ -957,7 +958,7 @@ DESCRIPTION sets DATABASE as your DATABASE_URL ``` -_See code: [src/commands/pg/promote.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/promote.ts)_ +_See code: [src/commands/pg/promote.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/promote.ts)_ ## `heroku pg:ps [DATABASE]` @@ -984,7 +985,7 @@ DESCRIPTION view active queries with execution time ``` -_See code: [src/commands/pg/ps.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/ps.ts)_ +_See code: [src/commands/pg/ps.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/ps.ts)_ ## `heroku pg:psql [DATABASE]` @@ -1017,7 +1018,7 @@ ALIASES $ heroku psql ``` -_See code: [src/commands/pg/psql.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/psql.ts)_ +_See code: [src/commands/pg/psql.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/psql.ts)_ ## `heroku pg:pull SOURCE TARGET` @@ -1063,7 +1064,7 @@ EXAMPLES $ heroku pg:pull postgresql-swimmingly-100 postgres://myhost/mydb --app sushi ``` -_See code: [src/commands/pg/pull.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/pull.ts)_ +_See code: [src/commands/pg/pull.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/pull.ts)_ ## `heroku pg:push SOURCE TARGET` @@ -1107,7 +1108,7 @@ EXAMPLES $ heroku pg:push postgres://myhost/mydb postgresql-swimmingly-100 --app sushi ``` -_See code: [src/commands/pg/push.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/push.ts)_ +_See code: [src/commands/pg/push.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/push.ts)_ ## `heroku pg:reset [DATABASE]` @@ -1135,7 +1136,7 @@ DESCRIPTION delete all data in DATABASE ``` -_See code: [src/commands/pg/reset.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/reset.ts)_ +_See code: [src/commands/pg/reset.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/reset.ts)_ ## `heroku pg:settings [DATABASE]` @@ -1161,7 +1162,7 @@ DESCRIPTION show your current database settings ``` -_See code: [src/commands/pg/settings/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/index.ts)_ +_See code: [src/commands/pg/settings/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/index.ts)_ ## `heroku pg:settings:auto-explain [DATABASE] [VALUE]` @@ -1190,7 +1191,7 @@ DESCRIPTION Restart your Heroku app and/or restart existing connections for logging to start taking place. ``` -_See code: [src/commands/pg/settings/auto-explain.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain.ts)_ +_See code: [src/commands/pg/settings/auto-explain.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain.ts)_ ## `heroku pg:settings:auto-explain:log-analyze [DATABASE] [VALUE]` @@ -1221,7 +1222,7 @@ DESCRIPTION impacts to your database and should be used with caution. ``` -_See code: [src/commands/pg/settings/auto-explain/log-analyze.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain/log-analyze.ts)_ +_See code: [src/commands/pg/settings/auto-explain/log-analyze.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain/log-analyze.ts)_ ## `heroku pg:settings:auto-explain:log-buffers [DATABASE] [VALUE]` @@ -1250,7 +1251,7 @@ DESCRIPTION pg:settings:auto-explain:log-analyze turned on. ``` -_See code: [src/commands/pg/settings/auto-explain/log-buffers.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain/log-buffers.ts)_ +_See code: [src/commands/pg/settings/auto-explain/log-buffers.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain/log-buffers.ts)_ ## `heroku pg:settings:auto-explain:log-format [DATABASE] [VALUE]` @@ -1279,7 +1280,7 @@ DESCRIPTION The allowed values are text, xml, json, and yaml. The default is text. ``` -_See code: [src/commands/pg/settings/auto-explain/log-format.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain/log-format.ts)_ +_See code: [src/commands/pg/settings/auto-explain/log-format.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain/log-format.ts)_ ## `heroku pg:settings:auto-explain:log-min-duration [DATABASE] [VALUE]` @@ -1308,7 +1309,7 @@ DESCRIPTION Setting this value to 0 will log all queries. Setting this value to -1 will disable logging entirely. ``` -_See code: [src/commands/pg/settings/auto-explain/log-min-duration.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain/log-min-duration.ts)_ +_See code: [src/commands/pg/settings/auto-explain/log-min-duration.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain/log-min-duration.ts)_ ## `heroku pg:settings:auto-explain:log-nested-statements [DATABASE] [VALUE]` @@ -1335,7 +1336,7 @@ DESCRIPTION Nested statements are included in the execution plan's log. ``` -_See code: [src/commands/pg/settings/auto-explain/log-nested-statements.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain/log-nested-statements.ts)_ +_See code: [src/commands/pg/settings/auto-explain/log-nested-statements.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain/log-nested-statements.ts)_ ## `heroku pg:settings:auto-explain:log-triggers [DATABASE] [VALUE]` @@ -1363,7 +1364,7 @@ DESCRIPTION This parameter can only be used in conjunction with pg:settings:auto-explain:log-analyze turned on. ``` -_See code: [src/commands/pg/settings/auto-explain/log-triggers.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain/log-triggers.ts)_ +_See code: [src/commands/pg/settings/auto-explain/log-triggers.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain/log-triggers.ts)_ ## `heroku pg:settings:auto-explain:log-verbose [DATABASE] [VALUE]` @@ -1391,7 +1392,7 @@ DESCRIPTION This is equivalent to calling EXPLAIN VERBOSE. ``` -_See code: [src/commands/pg/settings/auto-explain/log-verbose.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/auto-explain/log-verbose.ts)_ +_See code: [src/commands/pg/settings/auto-explain/log-verbose.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/auto-explain/log-verbose.ts)_ ## `heroku pg:settings:data-connector-details-logs [DATABASE] [VALUE]` @@ -1422,7 +1423,7 @@ ALIASES $ heroku pg:settings:explain-data-connector-details ``` -_See code: [src/commands/pg/settings/data-connector-details-logs.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/data-connector-details-logs.ts)_ +_See code: [src/commands/pg/settings/data-connector-details-logs.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/data-connector-details-logs.ts)_ ## `heroku pg:settings:explain-data-connector-details [DATABASE] [VALUE]` @@ -1479,7 +1480,7 @@ DESCRIPTION Setting log_connections to false stops emitting log messages for all attempts to login to the database. ``` -_See code: [src/commands/pg/settings/log-connections.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/log-connections.ts)_ +_See code: [src/commands/pg/settings/log-connections.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/log-connections.ts)_ ## `heroku pg:settings:log-lock-waits [DATABASE] [VALUE]` @@ -1512,7 +1513,7 @@ DESCRIPTION transaction. ``` -_See code: [src/commands/pg/settings/log-lock-waits.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/log-lock-waits.ts)_ +_See code: [src/commands/pg/settings/log-lock-waits.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/log-lock-waits.ts)_ ## `heroku pg:settings:log-min-duration-statement [DATABASE] [VALUE]` @@ -1542,7 +1543,7 @@ DESCRIPTION durations. ``` -_See code: [src/commands/pg/settings/log-min-duration-statement.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/log-min-duration-statement.ts)_ +_See code: [src/commands/pg/settings/log-min-duration-statement.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/log-min-duration-statement.ts)_ ## `heroku pg:settings:log-min-error-statement [DATABASE] [VALUE]` @@ -1571,7 +1572,7 @@ DESCRIPTION Use this setting to prevent logging SQL queries that contain sensitive information. Default is "error". ``` -_See code: [src/commands/pg/settings/log-min-error-statement.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/log-min-error-statement.ts)_ +_See code: [src/commands/pg/settings/log-min-error-statement.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/log-min-error-statement.ts)_ ## `heroku pg:settings:log-statement [DATABASE] [VALUE]` @@ -1605,7 +1606,7 @@ DESCRIPTION all - All statements are logged ``` -_See code: [src/commands/pg/settings/log-statement.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/log-statement.ts)_ +_See code: [src/commands/pg/settings/log-statement.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/log-statement.ts)_ ## `heroku pg:settings:track-functions [DATABASE] [VALUE]` @@ -1638,7 +1639,7 @@ DESCRIPTION not tracked ``` -_See code: [src/commands/pg/settings/track-functions.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/settings/track-functions.ts)_ +_See code: [src/commands/pg/settings/track-functions.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/settings/track-functions.ts)_ ## `heroku pg:unfollow DATABASE` @@ -1664,7 +1665,7 @@ DESCRIPTION stop a replica from following and make it a writeable database ``` -_See code: [src/commands/pg/unfollow.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/unfollow.ts)_ +_See code: [src/commands/pg/unfollow.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/unfollow.ts)_ ## `heroku pg:upgrade:cancel [DATABASE]` @@ -1690,7 +1691,7 @@ DESCRIPTION cancels a scheduled upgrade. You can't cancel a version upgrade that's in progress. ``` -_See code: [src/commands/pg/upgrade/cancel.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/upgrade/cancel.ts)_ +_See code: [src/commands/pg/upgrade/cancel.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/upgrade/cancel.ts)_ ## `heroku pg:upgrade:dryrun [DATABASE]` @@ -1718,11 +1719,11 @@ DESCRIPTION follower database. Heroku sends the results of the test upgrade via email. ``` -_See code: [src/commands/pg/upgrade/dryrun.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/upgrade/dryrun.ts)_ +_See code: [src/commands/pg/upgrade/dryrun.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/upgrade/dryrun.ts)_ ## `heroku pg:upgrade:prepare [DATABASE]` -prepares the upgrade for Standard-tier and higher leader databases and schedules it for the next available maintenance window. To start a version upgrade on Essential-tier and follower databases, use heroku pg:upgrade:run instead. +prepares the upgrade for Standard-tier and higher leader databases and schedules it for the next available maintenance window. To start a version upgrade on Essential-tier and follower databases, use heroku pg:upgrade:run instead. ``` USAGE @@ -1746,7 +1747,7 @@ DESCRIPTION window. To start a version upgrade on Essential-tier and follower databases, use heroku pg:upgrade:run instead. ``` -_See code: [src/commands/pg/upgrade/prepare.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/upgrade/prepare.ts)_ +_See code: [src/commands/pg/upgrade/prepare.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/upgrade/prepare.ts)_ ## `heroku pg:upgrade:run [DATABASE]` @@ -1792,7 +1793,7 @@ EXAMPLES $ heroku pg:upgrade:run DATABASE_URL --app myapp ``` -_See code: [src/commands/pg/upgrade/run.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/upgrade/run.ts)_ +_See code: [src/commands/pg/upgrade/run.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/upgrade/run.ts)_ ## `heroku pg:upgrade:wait [DATABASE]` @@ -1829,7 +1830,7 @@ EXAMPLES $ heroku pg:upgrade:wait postgresql-curved-12345 --app myapp --no-notify ``` -_See code: [src/commands/pg/upgrade/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/upgrade/wait.ts)_ +_See code: [src/commands/pg/upgrade/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/upgrade/wait.ts)_ ## `heroku pg:vacuum-stats [DATABASE]` @@ -1855,7 +1856,7 @@ DESCRIPTION show dead rows and whether an automatic vacuum is expected to be triggered ``` -_See code: [src/commands/pg/vacuum-stats.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/vacuum-stats.ts)_ +_See code: [src/commands/pg/vacuum-stats.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/vacuum-stats.ts)_ ## `heroku pg:wait [DATABASE]` @@ -1883,4 +1884,4 @@ DESCRIPTION blocks until database is available ``` -_See code: [src/commands/pg/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pg/wait.ts)_ +_See code: [src/commands/pg/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pg/wait.ts)_ diff --git a/docs/pipelines.md b/docs/pipelines.md index dc779a0524..02cc347f09 100644 --- a/docs/pipelines.md +++ b/docs/pipelines.md @@ -39,7 +39,7 @@ EXAMPLES $ heroku pipelines ``` -_See code: [src/commands/pipelines/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/index.ts)_ +_See code: [src/commands/pipelines/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/index.ts)_ ## `heroku pipelines:add PIPELINE` @@ -69,7 +69,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/v11.1.1/src/commands/pipelines/add.ts)_ +_See code: [src/commands/pipelines/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/add.ts)_ ## `heroku pipelines:connect NAME` @@ -95,7 +95,7 @@ EXAMPLES $ heroku pipelines:connect my-pipeline -r githuborg/reponame ``` -_See code: [src/commands/pipelines/connect.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/connect.ts)_ +_See code: [src/commands/pipelines/connect.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/connect.ts)_ ## `heroku pipelines:create [NAME]` @@ -130,7 +130,7 @@ EXAMPLES $ heroku pipelines:create my-pipeline -a my-app-staging ``` -_See code: [src/commands/pipelines/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/create.ts)_ +_See code: [src/commands/pipelines/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/create.ts)_ ## `heroku pipelines:destroy PIPELINE` @@ -153,7 +153,7 @@ EXAMPLES $ heroku pipelines:destroy my-pipeline ``` -_See code: [src/commands/pipelines/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/destroy.ts)_ +_See code: [src/commands/pipelines/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/destroy.ts)_ ## `heroku pipelines:diff` @@ -177,7 +177,7 @@ EXAMPLES $ heroku pipelines:diff -a my-app-staging ``` -_See code: [src/commands/pipelines/diff.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/diff.ts)_ +_See code: [src/commands/pipelines/diff.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/diff.ts)_ ## `heroku pipelines:info PIPELINE` @@ -203,7 +203,7 @@ EXAMPLES $ heroku pipelines:info my-pipeline ``` -_See code: [src/commands/pipelines/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/info.ts)_ +_See code: [src/commands/pipelines/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/info.ts)_ ## `heroku pipelines:open PIPELINE` @@ -226,7 +226,7 @@ EXAMPLES $ heroku pipelines:open my-pipeline ``` -_See code: [src/commands/pipelines/open.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/open.ts)_ +_See code: [src/commands/pipelines/open.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/open.ts)_ ## `heroku pipelines:promote` @@ -251,7 +251,7 @@ EXAMPLES $ heroku pipelines:promote -a my-app-staging ``` -_See code: [src/commands/pipelines/promote.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/promote.ts)_ +_See code: [src/commands/pipelines/promote.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/promote.ts)_ ## `heroku pipelines:remove` @@ -275,7 +275,7 @@ EXAMPLES $ heroku pipelines:remove -a my-app ``` -_See code: [src/commands/pipelines/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/remove.ts)_ +_See code: [src/commands/pipelines/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/remove.ts)_ ## `heroku pipelines:rename PIPELINE NAME` @@ -299,7 +299,7 @@ EXAMPLES $ heroku pipelines:rename my-pipeline new-pipeline-name ``` -_See code: [src/commands/pipelines/rename.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/rename.ts)_ +_See code: [src/commands/pipelines/rename.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/rename.ts)_ ## `heroku pipelines:setup [NAME] [REPO]` @@ -328,7 +328,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/v11.1.1/src/commands/pipelines/setup.ts)_ +_See code: [src/commands/pipelines/setup.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/setup.ts)_ ## `heroku pipelines:transfer OWNER` @@ -357,7 +357,7 @@ EXAMPLES $ heroku pipelines:transfer admin-team -p my-pipeline ``` -_See code: [src/commands/pipelines/transfer.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/transfer.ts)_ +_See code: [src/commands/pipelines/transfer.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/transfer.ts)_ ## `heroku pipelines:update` @@ -382,4 +382,4 @@ EXAMPLES $ heroku pipelines:update -s staging -a my-app ``` -_See code: [src/commands/pipelines/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/pipelines/update.ts)_ +_See code: [src/commands/pipelines/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/pipelines/update.ts)_ diff --git a/docs/ps.md b/docs/ps.md index 180162c2e9..83b50d0e4c 100644 --- a/docs/ps.md +++ b/docs/ps.md @@ -30,6 +30,7 @@ FLAGS -a, --app= (required) app to run command against -r, --remote= git remote of app to use --json display as json + --no-wrap disable wrapped table cells for easier copy/paste GLOBAL FLAGS --prompt interactively prompt for command arguments and flags @@ -49,7 +50,7 @@ EXAMPLES run.1: up for 5m: bash ``` -_See code: [src/commands/ps/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/index.ts)_ +_See code: [src/commands/ps/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/index.ts)_ ## `heroku ps:autoscale:disable` @@ -70,7 +71,7 @@ DESCRIPTION disable web dyno autoscaling ``` -_See code: [src/commands/ps/autoscale/disable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/autoscale/disable.ts)_ +_See code: [src/commands/ps/autoscale/disable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/autoscale/disable.ts)_ ## `heroku ps:autoscale:enable` @@ -96,7 +97,7 @@ DESCRIPTION enable web dyno autoscaling ``` -_See code: [src/commands/ps/autoscale/enable.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/autoscale/enable.ts)_ +_See code: [src/commands/ps/autoscale/enable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/autoscale/enable.ts)_ ## `heroku ps:copy FILE` @@ -125,7 +126,7 @@ EXAMPLES $ heroku ps:copy FILENAME --app murmuring-headland-14719 ``` -_See code: [src/commands/ps/copy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/copy.ts)_ +_See code: [src/commands/ps/copy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/copy.ts)_ ## `heroku ps:exec` @@ -154,7 +155,7 @@ EXAMPLES $ heroku ps:exec --app murmuring-headland-14719 -- node -i ``` -_See code: [src/commands/ps/exec.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/exec.ts)_ +_See code: [src/commands/ps/exec.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/exec.ts)_ ## `heroku ps:forward PORT` @@ -185,7 +186,7 @@ EXAMPLES $ heroku ps:forward 8080 --app murmuring-headland-14719 ``` -_See code: [src/commands/ps/forward.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/forward.ts)_ +_See code: [src/commands/ps/forward.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/forward.ts)_ ## `heroku ps:kill [DYNO]` @@ -287,7 +288,7 @@ EXAMPLES $ heroku ps:restart --app myapp ``` -_See code: [src/commands/ps/restart.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/restart.ts)_ +_See code: [src/commands/ps/restart.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/restart.ts)_ ## `heroku ps:scale` @@ -323,7 +324,7 @@ EXAMPLES web=3:Standard-2X worker=1:Standard-1X ``` -_See code: [src/commands/ps/scale.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/scale.ts)_ +_See code: [src/commands/ps/scale.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/scale.ts)_ ## `heroku ps:socks` @@ -351,7 +352,7 @@ EXAMPLES Use CTRL+C to stop the proxy ``` -_See code: [src/commands/ps/socks.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/socks.ts)_ +_See code: [src/commands/ps/socks.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/socks.ts)_ ## `heroku ps:stop [DYNO]` @@ -387,7 +388,7 @@ EXAMPLES $ heroku ps:stop --app myapp --process-type run ``` -_See code: [src/commands/ps/stop.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/stop.ts)_ +_See code: [src/commands/ps/stop.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/stop.ts)_ ## `heroku ps:type` @@ -419,7 +420,7 @@ ALIASES $ heroku dyno:resize ``` -_See code: [src/commands/ps/type.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/ps/type.ts)_ +_See code: [src/commands/ps/type.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/type.ts)_ ## `heroku ps:wait` @@ -443,4 +444,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/v11.1.1/src/commands/ps/wait.ts)_ +_See code: [src/commands/ps/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/ps/wait.ts)_ diff --git a/docs/redis.md b/docs/redis.md index 4f12ffccee..27a764e629 100644 --- a/docs/redis.md +++ b/docs/redis.md @@ -71,7 +71,7 @@ EXAMPLES $ heroku redis:cli --app=my-app --confirm my-database ``` -_See code: [src/commands/redis/cli.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/cli.ts)_ +_See code: [src/commands/redis/cli.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/cli.ts)_ ## `heroku redis:credentials [DATABASE]` @@ -97,7 +97,7 @@ DESCRIPTION display credentials information ``` -_See code: [src/commands/redis/credentials.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/credentials.ts)_ +_See code: [src/commands/redis/credentials.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/credentials.ts)_ ## `heroku redis:info [DATABASE]` @@ -126,7 +126,7 @@ ALIASES $ heroku redis ``` -_See code: [src/commands/redis/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/info.ts)_ +_See code: [src/commands/redis/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/info.ts)_ ## `heroku redis:keyspace-notifications [DATABASE]` @@ -168,7 +168,7 @@ DESCRIPTION pass an empty string ('') to disable keyspace notifications ``` -_See code: [src/commands/redis/keyspace-notifications.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/keyspace-notifications.ts)_ +_See code: [src/commands/redis/keyspace-notifications.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/keyspace-notifications.ts)_ ## `heroku redis:maxmemory [DATABASE]` @@ -204,7 +204,7 @@ DESCRIPTION volatile-ttl # only evicts keys with an expiry set and a short TTL ``` -_See code: [src/commands/redis/maxmemory.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/maxmemory.ts)_ +_See code: [src/commands/redis/maxmemory.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/maxmemory.ts)_ ## `heroku redis:promote [DATABASE]` @@ -229,7 +229,7 @@ DESCRIPTION sets DATABASE as your REDIS_URL ``` -_See code: [src/commands/redis/promote.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/promote.ts)_ +_See code: [src/commands/redis/promote.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/promote.ts)_ ## `heroku redis:stats-reset [DATABASE]` @@ -255,7 +255,7 @@ DESCRIPTION reset all stats covered by RESETSTAT (https://redis.io/commands/config-resetstat) ``` -_See code: [src/commands/redis/stats-reset.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/stats-reset.ts)_ +_See code: [src/commands/redis/stats-reset.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/stats-reset.ts)_ ## `heroku redis:timeout [DATABASE]` @@ -282,7 +282,7 @@ DESCRIPTION A value of zero means that connections will not be closed. ``` -_See code: [src/commands/redis/timeout.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/timeout.ts)_ +_See code: [src/commands/redis/timeout.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/timeout.ts)_ ## `heroku redis:upgrade [DATABASE]` @@ -309,7 +309,7 @@ DESCRIPTION perform in-place version upgrade ``` -_See code: [src/commands/redis/upgrade.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/upgrade.ts)_ +_See code: [src/commands/redis/upgrade.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/upgrade.ts)_ ## `heroku redis:wait [DATABASE]` @@ -335,4 +335,4 @@ DESCRIPTION wait for Redis instance to be available ``` -_See code: [src/commands/redis/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/redis/wait.ts)_ +_See code: [src/commands/redis/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/redis/wait.ts)_ diff --git a/docs/regions.md b/docs/regions.md index 940227fded..93c41cc1a0 100644 --- a/docs/regions.md +++ b/docs/regions.md @@ -25,4 +25,4 @@ DESCRIPTION list available regions for deployment ``` -_See code: [src/commands/regions.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/regions.ts)_ +_See code: [src/commands/regions.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/regions.ts)_ diff --git a/docs/releases.md b/docs/releases.md index 9022be6d96..d05910e865 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -37,7 +37,7 @@ EXAMPLES $ v3 Config add BAZ_QUX email@example.com 2015/11/17 17:37:41 (~ 1h ago) ``` -_See code: [src/commands/releases/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/releases/index.ts)_ +_See code: [src/commands/releases/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/releases/index.ts)_ ## `heroku releases:info [RELEASE]` @@ -63,7 +63,7 @@ DESCRIPTION view detailed information for a release ``` -_See code: [src/commands/releases/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/releases/info.ts)_ +_See code: [src/commands/releases/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/releases/info.ts)_ ## `heroku releases:output [RELEASE]` @@ -87,7 +87,7 @@ DESCRIPTION View the release command output ``` -_See code: [src/commands/releases/output.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/releases/output.ts)_ +_See code: [src/commands/releases/output.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/releases/output.ts)_ ## `heroku releases:retry` @@ -110,7 +110,7 @@ EXAMPLES $ heroku releases:retry --app happy-samurai-42 ``` -_See code: [src/commands/releases/retry.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/releases/retry.ts)_ +_See code: [src/commands/releases/retry.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/releases/retry.ts)_ ## `heroku releases:rollback [RELEASE]` @@ -136,4 +136,4 @@ DESCRIPTION If RELEASE is not specified, it will roll back to the last eligible release. ``` -_See code: [src/commands/releases/rollback.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/releases/rollback.ts)_ +_See code: [src/commands/releases/rollback.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/releases/rollback.ts)_ diff --git a/docs/repl.md b/docs/repl.md index 0f8c922f12..7a4cef2325 100644 --- a/docs/repl.md +++ b/docs/repl.md @@ -20,4 +20,4 @@ EXAMPLES $ heroku repl ``` -_See code: [src/commands/repl.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/repl.ts)_ +_See code: [src/commands/repl.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/repl.ts)_ diff --git a/docs/reviewapps.md b/docs/reviewapps.md index c6c4b505b6..0fa1520327 100644 --- a/docs/reviewapps.md +++ b/docs/reviewapps.md @@ -33,7 +33,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/v11.1.1/src/commands/reviewapps/disable.ts)_ +_See code: [src/commands/reviewapps/disable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/reviewapps/disable.ts)_ ## `heroku reviewapps:enable` @@ -62,4 +62,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/v11.1.1/src/commands/reviewapps/enable.ts)_ +_See code: [src/commands/reviewapps/enable.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/reviewapps/enable.ts)_ diff --git a/docs/run.md b/docs/run.md index bda2b6352a..572cb8d26f 100644 --- a/docs/run.md +++ b/docs/run.md @@ -41,7 +41,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/v11.1.1/src/commands/run/index.ts)_ +_See code: [src/commands/run/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/run/index.ts)_ ## `heroku run:detached` @@ -71,7 +71,7 @@ EXAMPLES $ heroku run:detached ls ``` -_See code: [src/commands/run/detached.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/run/detached.ts)_ +_See code: [src/commands/run/detached.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/run/detached.ts)_ ## `heroku run:inside DYNO_NAME COMMAND` @@ -108,4 +108,4 @@ EXAMPLES $ heroku run:inside web-848cd4f64d-pvpr2 worker -a my-app ``` -_See code: [src/commands/run/inside.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/run/inside.ts)_ +_See code: [src/commands/run/inside.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/run/inside.ts)_ diff --git a/docs/sessions.md b/docs/sessions.md index 61b1dc3be1..86f43c76b7 100644 --- a/docs/sessions.md +++ b/docs/sessions.md @@ -24,7 +24,7 @@ DESCRIPTION list your OAuth sessions ``` -_See code: [src/commands/sessions/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/sessions/index.ts)_ +_See code: [src/commands/sessions/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/sessions/index.ts)_ ## `heroku sessions:destroy ID` @@ -44,4 +44,4 @@ DESCRIPTION delete (logout) OAuth session by ID ``` -_See code: [src/commands/sessions/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/sessions/destroy.ts)_ +_See code: [src/commands/sessions/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/sessions/destroy.ts)_ diff --git a/docs/spaces.md b/docs/spaces.md index 5acab5c62d..4d544c4ced 100644 --- a/docs/spaces.md +++ b/docs/spaces.md @@ -48,7 +48,7 @@ DESCRIPTION list available spaces ``` -_See code: [src/commands/spaces/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/index.ts)_ +_See code: [src/commands/spaces/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/index.ts)_ ## `heroku spaces:create` @@ -90,7 +90,7 @@ EXAMPLES Created at: 2016-01-06T03:23:13Z ``` -_See code: [src/commands/spaces/create.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/create.ts)_ +_See code: [src/commands/spaces/create.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/create.ts)_ ## `heroku spaces:destroy` @@ -116,7 +116,7 @@ EXAMPLES Destroying my-space... done ``` -_See code: [src/commands/spaces/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/destroy.ts)_ +_See code: [src/commands/spaces/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/destroy.ts)_ ## `heroku spaces:drains:get` @@ -140,7 +140,7 @@ ALIASES $ heroku drains:get ``` -_See code: [src/commands/spaces/drains/get.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/drains/get.ts)_ +_See code: [src/commands/spaces/drains/get.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/drains/get.ts)_ ## `heroku spaces:drains:set URL` @@ -166,7 +166,7 @@ ALIASES $ heroku drains:set ``` -_See code: [src/commands/spaces/drains/set.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/drains/set.ts)_ +_See code: [src/commands/spaces/drains/set.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/drains/set.ts)_ ## `heroku spaces:info` @@ -190,7 +190,7 @@ EXAMPLES $ heroku spaces:info my-space ``` -_See code: [src/commands/spaces/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/info.ts)_ +_See code: [src/commands/spaces/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/info.ts)_ ## `heroku spaces:peerings` @@ -211,7 +211,7 @@ DESCRIPTION list peering connections for a space ``` -_See code: [src/commands/spaces/peerings/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/peerings/index.ts)_ +_See code: [src/commands/spaces/peerings/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/peerings/index.ts)_ ## `heroku spaces:peerings:accept` @@ -236,7 +236,7 @@ EXAMPLES Accepting and configuring peering connection pcx-4bd27022 ``` -_See code: [src/commands/spaces/peerings/accept.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/peerings/accept.ts)_ +_See code: [src/commands/spaces/peerings/accept.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/peerings/accept.ts)_ ## `heroku spaces:peerings:destroy` @@ -262,7 +262,7 @@ EXAMPLES Tearing down peering connection pcx-4bd27022... done ``` -_See code: [src/commands/spaces/peerings/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/peerings/destroy.ts)_ +_See code: [src/commands/spaces/peerings/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/peerings/destroy.ts)_ ## `heroku spaces:peerings:info` @@ -306,7 +306,7 @@ EXAMPLES Unavailable CIDRs: 10.1.0.0/16 ``` -_See code: [src/commands/spaces/peerings/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/peerings/info.ts)_ +_See code: [src/commands/spaces/peerings/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/peerings/info.ts)_ ## `heroku spaces:ps` @@ -327,7 +327,7 @@ DESCRIPTION list dynos for a space ``` -_See code: [src/commands/spaces/ps.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/ps.ts)_ +_See code: [src/commands/spaces/ps.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/ps.ts)_ ## `heroku spaces:rename` @@ -352,7 +352,7 @@ EXAMPLES Renaming space old-space-name to new-space-name... done ``` -_See code: [src/commands/spaces/rename.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/rename.ts)_ +_See code: [src/commands/spaces/rename.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/rename.ts)_ ## `heroku spaces:topology` @@ -373,7 +373,7 @@ DESCRIPTION show space topology ``` -_See code: [src/commands/spaces/topology.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/topology.ts)_ +_See code: [src/commands/spaces/topology.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/topology.ts)_ ## `heroku spaces:transfer` @@ -398,7 +398,7 @@ EXAMPLES Transferring space-name to team-name... done ``` -_See code: [src/commands/spaces/transfer.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/transfer.ts)_ +_See code: [src/commands/spaces/transfer.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/transfer.ts)_ ## `heroku spaces:trusted-ips` @@ -424,7 +424,7 @@ DESCRIPTION a time to the commands listed below. For example 1.2.3.4/20 and 5.6.7.8/20 can be added with: ``` -_See code: [src/commands/spaces/trusted-ips/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/trusted-ips/index.ts)_ +_See code: [src/commands/spaces/trusted-ips/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/trusted-ips/index.ts)_ ## `heroku spaces:trusted-ips:add SOURCE` @@ -453,7 +453,7 @@ EXAMPLES Added 192.168.0.1/24 to trusted IP ranges on my-space ``` -_See code: [src/commands/spaces/trusted-ips/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/trusted-ips/add.ts)_ +_See code: [src/commands/spaces/trusted-ips/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/trusted-ips/add.ts)_ ## `heroku spaces:trusted-ips:remove SOURCE` @@ -482,7 +482,7 @@ EXAMPLES Removed 192.168.2.0/24 from trusted IP ranges on my-space ``` -_See code: [src/commands/spaces/trusted-ips/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/trusted-ips/remove.ts)_ +_See code: [src/commands/spaces/trusted-ips/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/trusted-ips/remove.ts)_ ## `heroku spaces:vpn:config NAME` @@ -522,7 +522,7 @@ EXAMPLES Tunnel 2 104.196.121.200 52.44.7.216 fedcba54321 10.0.0.0/16 1 ``` -_See code: [src/commands/spaces/vpn/config.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/vpn/config.ts)_ +_See code: [src/commands/spaces/vpn/config.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/vpn/config.ts)_ ## `heroku spaces:vpn:connect NAME` @@ -556,7 +556,7 @@ EXAMPLES ▸ Use spaces:vpn:wait to track allocation. ``` -_See code: [src/commands/spaces/vpn/connect.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/vpn/connect.ts)_ +_See code: [src/commands/spaces/vpn/connect.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/vpn/connect.ts)_ ## `heroku spaces:vpn:connections` @@ -577,14 +577,14 @@ DESCRIPTION list the VPN Connections for a space EXAMPLES - $ heroku spaces:vpn:connections --space my-space - === my-space VPN Connections - Name Status Tunnels - ────── ────── ─────── - office active UP/UP + $ heroku spaces:vpn:connections --space my-space + === my-space VPN Connections + Name Status Tunnels + ────── ────── ─────── + office active UP/UP ``` -_See code: [src/commands/spaces/vpn/connections.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/vpn/connections.ts)_ +_See code: [src/commands/spaces/vpn/connections.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/vpn/connections.ts)_ ## `heroku spaces:vpn:destroy NAME` @@ -611,7 +611,7 @@ EXAMPLES Tearing down VPN Connection vpn-connection-name in space example-space... done ``` -_See code: [src/commands/spaces/vpn/destroy.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/vpn/destroy.ts)_ +_See code: [src/commands/spaces/vpn/destroy.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/vpn/destroy.ts)_ ## `heroku spaces:vpn:info NAME` @@ -650,7 +650,7 @@ EXAMPLES Tunnel 2 52.44.146.197 UP 2016-10-25T22:09:05Z status message ``` -_See code: [src/commands/spaces/vpn/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/vpn/info.ts)_ +_See code: [src/commands/spaces/vpn/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/vpn/info.ts)_ ## `heroku spaces:vpn:update NAME` @@ -682,7 +682,7 @@ EXAMPLES Updating VPN Connection in space my-space... done ``` -_See code: [src/commands/spaces/vpn/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/vpn/update.ts)_ +_See code: [src/commands/spaces/vpn/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/vpn/update.ts)_ ## `heroku spaces:vpn:wait NAME` @@ -708,16 +708,16 @@ DESCRIPTION wait for VPN Connection to be created EXAMPLES - $ heroku spaces:vpn:wait vpn-connection-name --space my-space - Waiting for VPN Connection vpn-connection-name to allocate... done - === my-space VPN Tunnels - VPN Tunnel Customer Gateway VPN Gateway Pre-shared Key Routable Subnets IKE Version - ────────── ──────────────── ────────────── ────────────── ──────────────── ─────────── - Tunnel 1 104.196.121.200 35.171.237.136 abcdef12345 10.0.0.0/16 1 - Tunnel 2 104.196.121.200 52.44.7.216 fedcba54321 10.0.0.0/16 1 + $ heroku spaces:vpn:wait vpn-connection-name --space my-space + Waiting for VPN Connection vpn-connection-name to allocate... done + === my-space VPN Tunnels + VPN Tunnel Customer Gateway VPN Gateway Pre-shared Key Routable Subnets IKE Version + ────────── ──────────────── ────────────── ────────────── ──────────────── ─────────── + Tunnel 1 104.196.121.200 35.171.237.136 abcdef12345 10.0.0.0/16 1 + Tunnel 2 104.196.121.200 52.44.7.216 fedcba54321 10.0.0.0/16 1 ``` -_See code: [src/commands/spaces/vpn/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/vpn/wait.ts)_ +_See code: [src/commands/spaces/vpn/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/vpn/wait.ts)_ ## `heroku spaces:wait` @@ -740,4 +740,4 @@ DESCRIPTION wait for a space to be created ``` -_See code: [src/commands/spaces/wait.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/spaces/wait.ts)_ +_See code: [src/commands/spaces/wait.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/spaces/wait.ts)_ diff --git a/docs/status.md b/docs/status.md index 685f06bfed..b336a73fb9 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/v11.1.1/src/commands/status.ts)_ +_See code: [src/commands/status.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/status.ts)_ diff --git a/docs/teams.md b/docs/teams.md index ab17a4345a..53c689b155 100644 --- a/docs/teams.md +++ b/docs/teams.md @@ -25,4 +25,4 @@ DESCRIPTION Use heroku members:* to manage team members. ``` -_See code: [src/commands/teams/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/teams/index.ts)_ +_See code: [src/commands/teams/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/teams/index.ts)_ diff --git a/docs/telemetry.md b/docs/telemetry.md index 9835a63ce9..126cb814f8 100644 --- a/docs/telemetry.md +++ b/docs/telemetry.md @@ -31,7 +31,7 @@ EXAMPLES $ heroku telemetry ``` -_See code: [src/commands/telemetry/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/telemetry/index.ts)_ +_See code: [src/commands/telemetry/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/telemetry/index.ts)_ ## `heroku telemetry:add ENDPOINT` @@ -64,7 +64,7 @@ EXAMPLES $ heroku telemetry:add https://my-endpoint.com --app myapp --signals logs,traces --headers '{"x-drain-example-team": "API_KEY", "x-drain-example-dataset": "METRICS_DATASET"}' ``` -_See code: [src/commands/telemetry/add.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/telemetry/add.ts)_ +_See code: [src/commands/telemetry/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/telemetry/add.ts)_ ## `heroku telemetry:info TELEMETRY_DRAIN_ID` @@ -87,7 +87,7 @@ EXAMPLES $ heroku telemetry:info 022e2e2e-2e2e-2e2e-2e2e-2e2e2e2e2e2e ``` -_See code: [src/commands/telemetry/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/telemetry/info.ts)_ +_See code: [src/commands/telemetry/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/telemetry/info.ts)_ ## `heroku telemetry:remove [TELEMETRY_DRAIN_ID]` @@ -111,7 +111,7 @@ DESCRIPTION remove a telemetry drain ``` -_See code: [src/commands/telemetry/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/telemetry/remove.ts)_ +_See code: [src/commands/telemetry/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/telemetry/remove.ts)_ ## `heroku telemetry:update TELEMETRY_DRAIN_ID` @@ -143,4 +143,4 @@ EXAMPLES $ heroku telemetry:update acde070d-8c4c-4f0d-9d8a-162843c10333 --signals logs,metrics --endpoint https://my-new-endpoint.com ``` -_See code: [src/commands/telemetry/update.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/telemetry/update.ts)_ +_See code: [src/commands/telemetry/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/telemetry/update.ts)_ diff --git a/docs/usage.md b/docs/usage.md index 375bd27d3b..7e94c68699 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -24,4 +24,4 @@ DESCRIPTION list usage for metered add-ons attached to an app or apps within a team ``` -_See code: [src/commands/usage/addons.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/usage/addons.ts)_ +_See code: [src/commands/usage/addons.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/usage/addons.ts)_ diff --git a/docs/version.md b/docs/version.md index 876bdb5254..8f19c0bb36 100644 --- a/docs/version.md +++ b/docs/version.md @@ -46,4 +46,4 @@ EXAMPLES $ heroku version:info 11.0.0 ``` -_See code: [src/commands/version/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/version/info.ts)_ +_See code: [src/commands/version/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/version/info.ts)_ diff --git a/docs/webhooks.md b/docs/webhooks.md index f3f4dc561a..45b72d66d9 100644 --- a/docs/webhooks.md +++ b/docs/webhooks.md @@ -35,7 +35,7 @@ EXAMPLES $ heroku webhooks ``` -_See code: [src/commands/webhooks/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/webhooks/index.ts)_ +_See code: [src/commands/webhooks/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/index.ts)_ ## `heroku webhooks:add` @@ -65,7 +65,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/v11.1.1/src/commands/webhooks/add.ts)_ +_See code: [src/commands/webhooks/add.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/add.ts)_ ## `heroku webhooks:deliveries` @@ -90,7 +90,7 @@ EXAMPLES $ heroku webhooks:deliveries ``` -_See code: [src/commands/webhooks/deliveries/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/webhooks/deliveries/index.ts)_ +_See code: [src/commands/webhooks/deliveries/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/deliveries/index.ts)_ ## `heroku webhooks:deliveries:info ID` @@ -117,7 +117,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/v11.1.1/src/commands/webhooks/deliveries/info.ts)_ +_See code: [src/commands/webhooks/deliveries/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/deliveries/info.ts)_ ## `heroku webhooks:events` @@ -141,7 +141,7 @@ EXAMPLES $ heroku webhooks:events ``` -_See code: [src/commands/webhooks/events/index.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/webhooks/events/index.ts)_ +_See code: [src/commands/webhooks/events/index.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/events/index.ts)_ ## `heroku webhooks:events:info ID` @@ -168,7 +168,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/v11.1.1/src/commands/webhooks/events/info.ts)_ +_See code: [src/commands/webhooks/events/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/events/info.ts)_ ## `heroku webhooks:info ID` @@ -195,7 +195,7 @@ EXAMPLES $ heroku webhooks:info 99999999-9999-9999-9999-999999999999 ``` -_See code: [src/commands/webhooks/info.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/webhooks/info.ts)_ +_See code: [src/commands/webhooks/info.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/info.ts)_ ## `heroku webhooks:remove ID` @@ -222,7 +222,7 @@ EXAMPLES $ heroku webhooks:remove 99999999-9999-9999-9999-999999999999 ``` -_See code: [src/commands/webhooks/remove.ts](https://github.com/heroku/cli/blob/v11.1.1/src/commands/webhooks/remove.ts)_ +_See code: [src/commands/webhooks/remove.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/remove.ts)_ ## `heroku webhooks:update ID` @@ -255,4 +255,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/v11.1.1/src/commands/webhooks/update.ts)_ +_See code: [src/commands/webhooks/update.ts](https://github.com/heroku/cli/blob/v11.2.0/src/commands/webhooks/update.ts)_ diff --git a/package-lock.json b/package-lock.json index efc326ec7e..1231751e39 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "heroku", - "version": "11.1.1", + "version": "11.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "heroku", - "version": "11.1.1", + "version": "11.2.0", "license": "ISC", "dependencies": { "@heroku-cli/command": "^12.3.1", diff --git a/package.json b/package.json index fe7b2242ef..876820114a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "heroku", "description": "CLI to interact with Heroku", - "version": "11.1.1", + "version": "11.2.0", "author": "Heroku", "bin": "./bin/run.js", "bugs": "https://github.com/heroku/cli/issues",