Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create 10.0.0-alpha.2 release #3088

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [10.0.0-alpha.2](https://github.com/heroku/cli/compare/v10.0.0-alpha.1...v10.0.0-alpha.2) (2024-11-12)


### Bug Fixes

* access command error handling ([#3077](https://github.com/heroku/cli/issues/3077)) ([79188e5](https://github.com/heroku/cli/commit/79188e571b3b7cdbca85ce9012be92a93938dee3))


### Features

* add fir-specific error message for autoscale:enable ([#3069](https://github.com/heroku/cli/issues/3069)) ([19a222f](https://github.com/heroku/cli/commit/19a222fe88fc9a489f1f35a2f4060fb0fc513420))
* update plugin-ps-exec to latest beta ([#3087](https://github.com/heroku/cli/issues/3087)) ([6d4b2a4](https://github.com/heroku/cli/commit/6d4b2a4d29165fda015b527d2bf59069551e53cd))





# [10.0.0-alpha.1](https://github.com/heroku/cli/compare/v10.0.0-alpha.0...v10.0.0-alpha.1) (2024-11-04)


Expand Down
14 changes: 10 additions & 4 deletions docs/access.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ DESCRIPTION
list who has access to an app
```

_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/access/index.ts)_
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/access/index.ts)_

## `heroku access:add EMAIL`

Expand All @@ -35,6 +35,9 @@ add new users to your app
USAGE
$ heroku access:add EMAIL -a <value> [-r <value>] [-p <value>]

ARGUMENTS
EMAIL email address of the team member

FLAGS
-a, --app=<value> (required) app to run command against
-p, --permissions=<value> list of permissions comma separated
Expand All @@ -49,7 +52,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/v10.0.0-alpha.1/packages/cli/src/commands/access/add.ts)_
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/access/add.ts)_

## `heroku access:remove`

Expand All @@ -70,7 +73,7 @@ EXAMPLES
$ heroku access:remove user@email.com --app APP
```

_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/access/remove.ts)_
_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/access/remove.ts)_

## `heroku access:update EMAIL`

Expand All @@ -80,6 +83,9 @@ update existing collaborators on an team app
USAGE
$ heroku access:update EMAIL -p <value> -a <value> [-r <value>]

ARGUMENTS
EMAIL email address of the team member

FLAGS
-a, --app=<value> (required) app to run command against
-p, --permissions=<value> (required) comma-delimited list of permissions to update (deploy,manage,operate)
Expand All @@ -89,4 +95,4 @@ DESCRIPTION
update existing collaborators on an team app
```

_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/access/update.ts)_
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/access/update.ts)_
65 changes: 52 additions & 13 deletions docs/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ EXAMPLES
$ heroku addons --app acme-inc-www
```

_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/index.ts)_
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/index.ts)_

## `heroku addons:attach ADDON_NAME`

Expand All @@ -58,6 +58,9 @@ USAGE
$ heroku addons:attach ADDON_NAME -a <value> [--as <value>] [--credential <value>] [--confirm <value>] [-r
<value>]

ARGUMENTS
ADDON_NAME unique identifier or globally unique name of the add-on

FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -69,7 +72,7 @@ DESCRIPTION
attach an existing add-on resource to an app
```

_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/attach.ts)_
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/attach.ts)_

## `heroku addons:create SERVICE:PLAN`

Expand All @@ -80,6 +83,9 @@ USAGE
$ heroku addons:create SERVICE:PLAN... -a <value> [--name <value>] [--as <value>] [--confirm <value>] [--wait]
[-r <value>]

ARGUMENTS
SERVICE:PLAN... unique identifier or unique name of the add-on service plan

FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -101,7 +107,7 @@ EXAMPLES
$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE
```

_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/create.ts)_
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/create.ts)_

## `heroku addons:destroy ADDONNAME`

Expand All @@ -111,6 +117,9 @@ permanently destroy an add-on resource
USAGE
$ heroku addons:destroy ADDONNAME... [-f] [-c <value>] [--wait] [-a <value>] [-r <value>]

ARGUMENTS
ADDONNAME... unique identifier or globally unique name of the add-on

FLAGS
-a, --app=<value> app to run command against
-c, --confirm=<value>
Expand All @@ -125,7 +134,7 @@ EXAMPLES
addons:destroy [ADDON]... [flags]
```

_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/destroy.ts)_
_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/destroy.ts)_

## `heroku addons:detach ATTACHMENT_NAME`

Expand All @@ -135,6 +144,9 @@ detach an existing add-on resource from an app
USAGE
$ heroku addons:detach ATTACHMENT_NAME -a <value> [-r <value>]

ARGUMENTS
ATTACHMENT_NAME unique identifier of the add-on attachment

FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -143,7 +155,7 @@ DESCRIPTION
detach an existing add-on resource from an app
```

_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/detach.ts)_
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/detach.ts)_

## `heroku addons:docs ADDON`

Expand All @@ -153,6 +165,9 @@ open an add-on's Dev Center documentation in your browser
USAGE
$ heroku addons:docs ADDON [--show-url] [-a <value>] [-r <value>]

ARGUMENTS
ADDON unique identifier or globally unique name of the add-on

FLAGS
-a, --app=<value> app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -162,7 +177,7 @@ DESCRIPTION
open an add-on's Dev Center documentation in your browser
```

_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/docs.ts)_
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/docs.ts)_

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

Expand All @@ -172,6 +187,10 @@ change add-on plan.
USAGE
$ heroku addons:downgrade ADDON [PLAN] [-a <value>] [-r <value>]

ARGUMENTS
ADDON unique identifier or globally unique name of the add-on
PLAN unique identifier or name of the plan

FLAGS
-a, --app=<value> app to run command against
-r, --remote=<value> git remote of app to use
Expand Down Expand Up @@ -204,6 +223,9 @@ show detailed add-on resource and attachment information
USAGE
$ heroku addons:info ADDON

ARGUMENTS
ADDON unique identifier or globally unique name of the add-on

FLAGS
-a, --app=<value> app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -212,7 +234,7 @@ DESCRIPTION
show detailed add-on resource and attachment information
```

_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/info.ts)_
_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/info.ts)_

## `heroku addons:open ADDON`

Expand All @@ -222,6 +244,9 @@ open an add-on's dashboard in your browser
USAGE
$ heroku addons:open ADDON [--show-url] [-a <value>] [-r <value>]

ARGUMENTS
ADDON unique identifier or globally unique name of the add-on

FLAGS
-a, --app=<value> app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -231,7 +256,7 @@ DESCRIPTION
open an add-on's dashboard in your browser
```

_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/open.ts)_
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/open.ts)_

## `heroku addons:plans SERVICE`

Expand All @@ -241,14 +266,17 @@ list all available plans for an add-on service
USAGE
$ heroku addons:plans SERVICE [--json]

ARGUMENTS
SERVICE unique identifier or globally unique name of the add-on

FLAGS
--json output in json format

DESCRIPTION
list all available plans for an add-on service
```

_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/plans.ts)_
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/plans.ts)_

## `heroku addons:rename ADDON_NAME NEW_NAME`

Expand All @@ -258,11 +286,15 @@ rename an add-on
USAGE
$ heroku addons:rename ADDON_NAME NEW_NAME

ARGUMENTS
ADDON_NAME unique identifier or globally unique name of the add-on
NEW_NAME new globally unique name of the add-on

DESCRIPTION
rename an add-on
```

_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/rename.ts)_
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/rename.ts)_

## `heroku addons:services`

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

_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/services.ts)_
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/services.ts)_

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

Expand All @@ -289,6 +321,10 @@ change add-on plan.
USAGE
$ heroku addons:upgrade ADDON [PLAN] [-a <value>] [-r <value>]

ARGUMENTS
ADDON unique identifier or globally unique name of the add-on
PLAN unique identifier or name of the plan

FLAGS
-a, --app=<value> app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -313,7 +349,7 @@ EXAMPLES
$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2
```

_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/upgrade.ts)_
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/upgrade.ts)_

## `heroku addons:wait [ADDON]`

Expand All @@ -323,6 +359,9 @@ show provisioning status of the add-ons on the app
USAGE
$ heroku addons:wait [ADDON] [--wait-interval <value>] [-a <value>] [-r <value>]

ARGUMENTS
ADDON unique identifier or globally unique name of the add-on

FLAGS
-a, --app=<value> app to run command against
-r, --remote=<value> git remote of app to use
Expand All @@ -332,4 +371,4 @@ DESCRIPTION
show provisioning status of the add-ons on the app
```

_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.1/packages/cli/src/commands/addons/wait.ts)_
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v10.0.0-alpha.2/packages/cli/src/commands/addons/wait.ts)_
Loading
Loading