Skip to content

Commit 12e6901

Browse files
v11.0.0-beta.0
1 parent d5c0e8a commit 12e6901

52 files changed

Lines changed: 3595 additions & 2084 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 438 additions & 906 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,38 +46,51 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
4646
* [`heroku access`](docs/access.md) - manage user access to apps
4747
* [`heroku accounts`](docs/accounts.md) - list the Heroku accounts in your cache
4848
* [`heroku addons`](docs/addons.md) - tools and services for developing, extending, and operating your app
49-
* [`heroku ai`](docs/ai.md) - manage Heroku AI models
5049
* [`heroku apps`](docs/apps.md) - manage apps on Heroku
5150
* [`heroku auth`](docs/auth.md) - manage authentication for your Heroku account
5251
* [`heroku authorizations`](docs/authorizations.md) - OAuth authorizations
52+
* [`heroku autocomplete`](docs/autocomplete.md) - display autocomplete installation instructions
5353
* [`heroku buildpacks`](docs/buildpacks.md) - scripts used to compile apps
5454
* [`heroku certs`](docs/certs.md) - SSL certificates
5555
* [`heroku ci`](docs/ci.md) - test runner for Heroku Pipelines
5656
* [`heroku clients`](docs/clients.md) - OAuth clients on the platform
5757
* [`heroku config`](docs/config.md) - environment variables of apps
5858
* [`heroku container`](docs/container.md) - deploy your Docker-based app to Heroku
59+
* [`heroku data`](docs/data.md) - display details of the most recent maintenance for an addon
5960
* [`heroku domains`](docs/domains.md) - custom domains for apps
6061
* [`heroku drains`](docs/drains.md) - forward logs to syslog or HTTPS
6162
* [`heroku features`](docs/features.md) - add/remove app features
6263
* [`heroku git`](docs/git.md) - set git remote and clone Heroku repository
6364
* [`heroku help`](docs/help.md) - Display help for heroku.
6465
* [`heroku keys`](docs/keys.md) - add/remove account ssh keys
6566
* [`heroku labs`](docs/labs.md) - add/remove experimental features
67+
* [`heroku local`](docs/local.md) - run Heroku app locally
6668
* [`heroku logs`](docs/logs.md) - display recent log output
6769
* [`heroku maintenance`](docs/maintenance.md) - enable/disable access to app
70+
* [`heroku mcp`](docs/mcp.md) - starts the Heroku platform MCP server in stdio mode
71+
* [`heroku members`](docs/members.md) - manage organization members
6872
* [`heroku notifications`](docs/notifications.md) - display notifications
6973
* [`heroku orgs`](docs/orgs.md) - manage organizations
74+
* [`heroku pg`](docs/pg.md) - manage postgresql databases
75+
* [`heroku pipelines`](docs/pipelines.md) - manage pipelines
7076
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
7177
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
78+
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
7279
* [`heroku regions`](docs/regions.md) - list available regions for deployment
80+
* [`heroku releases`](docs/releases.md) - display the releases for an app
81+
* [`heroku repl`](docs/repl.md) - enter an interactive REPL session to run Heroku CLI commands
7382
* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
83+
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
84+
* [`heroku search`](docs/search.md) - Search for a command.
7485
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
86+
* [`heroku spaces`](docs/spaces.md) - list available spaces
7587
* [`heroku status`](docs/status.md) - display current status of the Heroku platform
7688
* [`heroku teams`](docs/teams.md) - manage teams
7789
* [`heroku telemetry`](docs/telemetry.md) - list telemetry drains
7890
* [`heroku update`](docs/update.md) - update the Heroku CLI
7991
* [`heroku usage`](docs/usage.md) - list usage for metered add-ons attached to an app or apps within a team
8092
* [`heroku version`](docs/version.md)
93+
* [`heroku webhooks`](docs/webhooks.md) - list webhooks on an app
8194

8295
<!-- commandsstop -->
8396

docs/access.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,29 @@ list who has access to an app
1414

1515
```
1616
USAGE
17-
$ heroku access -a <value> [-r <value>] [--json]
17+
$ heroku access -a <value> [--prompt] [--json] [-r <value>]
1818
1919
FLAGS
2020
-a, --app=<value> (required) app to run command against
2121
-r, --remote=<value> git remote of app to use
2222
--json output in json format
2323
24+
GLOBAL FLAGS
25+
--prompt interactively prompt for command arguments and flags
26+
2427
DESCRIPTION
2528
list who has access to an app
2629
```
2730

28-
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/access/index.ts)_
31+
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/access/index.ts)_
2932

3033
## `heroku access:add EMAIL`
3134

3235
add new users to your app
3336

3437
```
3538
USAGE
36-
$ heroku access:add EMAIL -a <value> [-r <value>] [-p <value>]
39+
$ heroku access:add EMAIL -a <value> [--prompt] [-p <value>] [-r <value>]
3740
3841
ARGUMENTS
3942
EMAIL email address of the team member
@@ -43,45 +46,51 @@ FLAGS
4346
-p, --permissions=<value> list of permissions comma separated
4447
-r, --remote=<value> git remote of app to use
4548
49+
GLOBAL FLAGS
50+
--prompt interactively prompt for command arguments and flags
51+
4652
DESCRIPTION
4753
add new users to your app
4854
4955
EXAMPLES
50-
$ heroku access:add user@email.com --app APP # add a collaborator to your app
56+
$ heroku access:add user@email.com --app APP # add a collaborator to your app
5157
52-
$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated
58+
$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated
5359
```
5460

55-
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/access/add.ts)_
61+
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/access/add.ts)_
5662

5763
## `heroku access:remove`
5864

5965
remove users from a team app
6066

6167
```
6268
USAGE
63-
$ heroku access:remove -a <value> [-r <value>]
69+
$ heroku access:remove -a <value> [--prompt] [-r <value>]
6470
6571
FLAGS
6672
-a, --app=<value> (required) app to run command against
6773
-r, --remote=<value> git remote of app to use
6874
75+
GLOBAL FLAGS
76+
--prompt interactively prompt for command arguments and flags
77+
6978
DESCRIPTION
7079
remove users from a team app
7180
7281
EXAMPLES
73-
$ heroku access:remove user@email.com --app APP
82+
$ heroku access:remove user@email.com --app APP
7483
```
7584

76-
_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/access/remove.ts)_
85+
_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/access/remove.ts)_
7786

7887
## `heroku access:update EMAIL`
7988

8089
update existing collaborators on an team app
8190

8291
```
8392
USAGE
84-
$ heroku access:update EMAIL -p <value> -a <value> [-r <value>]
93+
$ heroku access:update EMAIL -a <value> -p <value> [--prompt] [-r <value>]
8594
8695
ARGUMENTS
8796
EMAIL email address of the team member
@@ -91,8 +100,11 @@ FLAGS
91100
-p, --permissions=<value> (required) comma-delimited list of permissions to update (deploy,manage,operate)
92101
-r, --remote=<value> git remote of app to use
93102
103+
GLOBAL FLAGS
104+
--prompt interactively prompt for command arguments and flags
105+
94106
DESCRIPTION
95107
update existing collaborators on an team app
96108
```
97109

98-
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/access/update.ts)_
110+
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/access/update.ts)_

docs/accounts.md

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,30 +21,33 @@ DESCRIPTION
2121
list the Heroku accounts in your cache
2222
2323
EXAMPLES
24-
$ heroku accounts
24+
$ heroku accounts
2525
```
2626

27-
_See code: [src/commands/accounts/index.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/accounts/index.ts)_
27+
_See code: [src/commands/accounts/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/accounts/index.ts)_
2828

2929
## `heroku accounts:add NAME`
3030

3131
add a Heroku account to your cache
3232

3333
```
3434
USAGE
35-
$ heroku accounts:add NAME
35+
$ heroku accounts:add NAME [--prompt]
3636
3737
ARGUMENTS
3838
NAME name of Heroku account to add
3939
40+
GLOBAL FLAGS
41+
--prompt interactively prompt for command arguments and flags
42+
4043
DESCRIPTION
4144
add a Heroku account to your cache
4245
4346
EXAMPLES
44-
$ heroku accounts:add my-account
47+
$ heroku accounts:add my-account
4548
```
4649

47-
_See code: [src/commands/accounts/add.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/accounts/add.ts)_
50+
_See code: [src/commands/accounts/add.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/accounts/add.ts)_
4851

4952
## `heroku accounts:current`
5053

@@ -58,47 +61,53 @@ DESCRIPTION
5861
display the current Heroku account
5962
6063
EXAMPLES
61-
$ heroku accounts:current
64+
$ heroku accounts:current
6265
```
6366

64-
_See code: [src/commands/accounts/current.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/accounts/current.ts)_
67+
_See code: [src/commands/accounts/current.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/accounts/current.ts)_
6568

6669
## `heroku accounts:remove NAME`
6770

6871
remove a Heroku account from your cache
6972

7073
```
7174
USAGE
72-
$ heroku accounts:remove NAME
75+
$ heroku accounts:remove NAME [--prompt]
7376
7477
ARGUMENTS
7578
NAME name of Heroku account to remove
7679
80+
GLOBAL FLAGS
81+
--prompt interactively prompt for command arguments and flags
82+
7783
DESCRIPTION
7884
remove a Heroku account from your cache
7985
8086
EXAMPLES
81-
$ heroku accounts:remove my-account
87+
$ heroku accounts:remove my-account
8288
```
8389

84-
_See code: [src/commands/accounts/remove.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/accounts/remove.ts)_
90+
_See code: [src/commands/accounts/remove.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/accounts/remove.ts)_
8591

8692
## `heroku accounts:set NAME`
8793

8894
set the current Heroku account from your cache
8995

9096
```
9197
USAGE
92-
$ heroku accounts:set NAME
98+
$ heroku accounts:set NAME [--prompt]
9399
94100
ARGUMENTS
95101
NAME name of account to set
96102
103+
GLOBAL FLAGS
104+
--prompt interactively prompt for command arguments and flags
105+
97106
DESCRIPTION
98107
set the current Heroku account from your cache
99108
100109
EXAMPLES
101-
$ heroku accounts:set my-account
110+
$ heroku accounts:set my-account
102111
```
103112

104-
_See code: [src/commands/accounts/set.ts](https://github.com/heroku/cli/blob/v10.17.0/packages/cli/src/commands/accounts/set.ts)_
113+
_See code: [src/commands/accounts/set.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/accounts/set.ts)_

0 commit comments

Comments
 (0)