Skip to content

Commit

Permalink
10.0.3-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
justinwilaby committed Jan 30, 2025
1 parent eb8e5f6 commit 7016979
Show file tree
Hide file tree
Showing 42 changed files with 501 additions and 477 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [10.0.3-alpha.3](https://github.com/heroku/cli/compare/v10.0.2...v10.0.3-alpha.0) (2025-01-30)


### Bug Fixes

* send correct value to api for grpc telemetry drains ([#3178](https://github.com/heroku/cli/issues/3178)) ([48b7f8a](https://github.com/heroku/cli/commit/48b7f8ad341f0bad7136c35ae840b1249aecd805))
* Unable to list drains for a space in fir ([#3170](https://github.com/heroku/cli/issues/3170)) ([1ee8f62](https://github.com/heroku/cli/commit/1ee8f625acf586096f6f609926656a4cb046481a))





## [10.0.2](https://github.com/heroku/cli/compare/v10.0.1...v10.0.2) (2025-01-09)


Expand Down
16 changes: 8 additions & 8 deletions docs/access.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ USAGE
$ heroku access -a <value> [-r <value>] [--json]
FLAGS
-a, --app=<value> (required) app to run command against
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
--json output in json format
DESCRIPTION
list who has access to an app
```

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

## `heroku access:add EMAIL`

Expand All @@ -39,7 +39,7 @@ ARGUMENTS
EMAIL email address of the team member
FLAGS
-a, --app=<value> (required) app to run command against
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
-p, --permissions=<value> list of permissions comma separated
-r, --remote=<value> git remote of app to use
Expand All @@ -52,7 +52,7 @@ EXAMPLES
$ heroku access:add [email protected] --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.2/packages/cli/src/commands/access/add.ts)_
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/access/add.ts)_

## `heroku access:remove`

Expand All @@ -63,7 +63,7 @@ USAGE
$ heroku access:remove -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION
Expand All @@ -73,7 +73,7 @@ EXAMPLES
$ heroku access:remove [email protected] --app APP
```

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

## `heroku access:update EMAIL`

Expand All @@ -87,12 +87,12 @@ ARGUMENTS
EMAIL email address of the team member
FLAGS
-a, --app=<value> (required) app to run command against
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
-p, --permissions=<value> (required) comma-delimited list of permissions to update (deploy,manage,operate)
-r, --remote=<value> git remote of app to use
DESCRIPTION
update existing collaborators on an team app
```

_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/access/update.ts)_
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/access/update.ts)_
48 changes: 24 additions & 24 deletions docs/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ USAGE
FLAGS
-A, --all show add-ons and attachments for all accessible apps
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
--json return add-ons in json format
Expand All @@ -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.2/packages/cli/src/commands/addons/index.ts)_
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/index.ts)_

## `heroku addons:attach ADDON_NAME`

Expand All @@ -62,7 +62,7 @@ ARGUMENTS
ADDON_NAME unique identifier or globally unique name of the add-on
FLAGS
-a, --app=<value> (required) app to run command against
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
--as=<value> name for add-on attachment
--confirm=<value> overwrite existing add-on attachment with same name
Expand All @@ -72,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.2/packages/cli/src/commands/addons/attach.ts)_
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/attach.ts)_

## `heroku addons:create SERVICE:PLAN`

Expand All @@ -87,7 +87,7 @@ ARGUMENTS
SERVICE:PLAN... unique identifier or unique name of the add-on service plan
FLAGS
-a, --app=<value> (required) app to run command against
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
--as=<value> name for the initial add-on attachment
--confirm=<value> overwrite existing config vars or existing add-on attachments
Expand All @@ -107,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.2/packages/cli/src/commands/addons/create.ts)_
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/create.ts)_

## `heroku addons:destroy ADDONNAME`

Expand All @@ -121,7 +121,7 @@ ARGUMENTS
ADDONNAME... unique identifier or globally unique name of the add-on
FLAGS
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-c, --confirm=<value>
-f, --force allow destruction even if connected to other apps
-r, --remote=<value> git remote of app to use
Expand All @@ -134,7 +134,7 @@ EXAMPLES
addons:destroy [ADDON]... [flags]
```

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

## `heroku addons:detach ATTACHMENT_NAME`

Expand All @@ -148,14 +148,14 @@ ARGUMENTS
ATTACHMENT_NAME unique identifier of the add-on attachment
FLAGS
-a, --app=<value> (required) app to run command against
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
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.2/packages/cli/src/commands/addons/detach.ts)_
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/detach.ts)_

## `heroku addons:docs ADDON`

Expand All @@ -169,15 +169,15 @@ ARGUMENTS
ADDON unique identifier or globally unique name of the add-on
FLAGS
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
--show-url show URL, do not open browser
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.2/packages/cli/src/commands/addons/docs.ts)_
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/docs.ts)_

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

Expand All @@ -192,7 +192,7 @@ ARGUMENTS
PLAN unique identifier or name of the plan
FLAGS
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION
Expand Down Expand Up @@ -227,14 +227,14 @@ ARGUMENTS
ADDON unique identifier or globally unique name of the add-on
FLAGS
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION
show detailed add-on resource and attachment information
```

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

## `heroku addons:open ADDON`

Expand All @@ -248,15 +248,15 @@ ARGUMENTS
ADDON unique identifier or globally unique name of the add-on
FLAGS
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
--show-url show URL, do not open browser
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.2/packages/cli/src/commands/addons/open.ts)_
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/open.ts)_

## `heroku addons:plans SERVICE`

Expand All @@ -276,7 +276,7 @@ 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.2/packages/cli/src/commands/addons/plans.ts)_
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/plans.ts)_

## `heroku addons:rename ADDON_NAME NEW_NAME`

Expand All @@ -294,7 +294,7 @@ DESCRIPTION
rename an add-on
```

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

## `heroku addons:services`

Expand All @@ -311,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.2/packages/cli/src/commands/addons/services.ts)_
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/services.ts)_

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

Expand All @@ -326,7 +326,7 @@ ARGUMENTS
PLAN unique identifier or name of the plan
FLAGS
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION
Expand All @@ -349,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.2/packages/cli/src/commands/addons/upgrade.ts)_
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/upgrade.ts)_

## `heroku addons:wait [ADDON]`

Expand All @@ -363,12 +363,12 @@ ARGUMENTS
ADDON unique identifier or globally unique name of the add-on
FLAGS
-a, --app=<value> app to run command against
-a, --app=<value> [default: heroku-vscode] app to run command against
-r, --remote=<value> git remote of app to use
--wait-interval=<value> how frequently to poll in seconds
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.2/packages/cli/src/commands/addons/wait.ts)_
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v10.0.3-alpha.0/packages/cli/src/commands/addons/wait.ts)_
Loading

0 comments on commit 7016979

Please sign in to comment.