Skip to content

Commit cef9e0c

Browse files
11.0.0-beta.4
1 parent 7ef19b0 commit cef9e0c

Some content is hidden

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

49 files changed

+354
-426
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
7474
* [`heroku pg`](docs/pg.md) - manage postgresql databases
7575
* [`heroku pipelines`](docs/pipelines.md) - manage pipelines
7676
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
77-
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
77+
* [`heroku ps`](docs/ps.md) - manage app dynos
7878
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
7979
* [`heroku regions`](docs/regions.md) - list available regions for deployment
8080
* [`heroku releases`](docs/releases.md) - display the releases for an app
@@ -89,7 +89,7 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
8989
* [`heroku telemetry`](docs/telemetry.md) - list telemetry drains
9090
* [`heroku update`](docs/update.md) - update the Heroku CLI
9191
* [`heroku usage`](docs/usage.md) - list usage for metered add-ons attached to an app or apps within a team
92-
* [`heroku version`](docs/version.md)
92+
* [`heroku version`](docs/version.md) - display changelog information for a specific CLI version
9393
* [`heroku webhooks`](docs/webhooks.md) - list webhooks on an app
9494

9595
<!-- commandsstop -->

docs/access.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ DESCRIPTION
2828
list who has access to an app
2929
```
3030

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

3333
## `heroku access:add EMAIL`
3434

@@ -58,7 +58,7 @@ EXAMPLES
5858
$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated
5959
```
6060

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

6363
## `heroku access:remove`
6464

@@ -82,7 +82,7 @@ EXAMPLES
8282
$ heroku access:remove user@email.com --app APP
8383
```
8484

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

8787
## `heroku access:update EMAIL`
8888

@@ -107,4 +107,4 @@ DESCRIPTION
107107
update existing collaborators on an team app
108108
```
109109

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

docs/accounts.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ EXAMPLES
2424
$ heroku accounts
2525
```
2626

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

2929
## `heroku accounts:add NAME`
3030

@@ -47,7 +47,7 @@ EXAMPLES
4747
$ heroku accounts:add my-account
4848
```
4949

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

5252
## `heroku accounts:current`
5353

@@ -64,7 +64,7 @@ EXAMPLES
6464
$ heroku accounts:current
6565
```
6666

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

6969
## `heroku accounts:remove NAME`
7070

@@ -87,7 +87,7 @@ EXAMPLES
8787
$ heroku accounts:remove my-account
8888
```
8989

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

9292
## `heroku accounts:set NAME`
9393

@@ -110,4 +110,4 @@ EXAMPLES
110110
$ heroku accounts:set my-account
111111
```
112112

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

docs/addons.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ EXAMPLES
5050
$ heroku addons --app acme-inc-www
5151
```
5252

53-
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/index.ts)_
53+
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/index.ts)_
5454

5555
## `heroku addons:attach ADDON_NAME`
5656

@@ -78,7 +78,7 @@ DESCRIPTION
7878
attach an existing add-on resource to an app
7979
```
8080

81-
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/attach.ts)_
81+
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/attach.ts)_
8282

8383
## `heroku addons:create SERVICE:PLAN`
8484

@@ -117,7 +117,7 @@ EXAMPLES
117117
$ heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE
118118
```
119119

120-
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/create.ts)_
120+
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/create.ts)_
121121

122122
## `heroku addons:destroy ADDONNAME`
123123

@@ -147,7 +147,7 @@ EXAMPLES
147147
$ addons:destroy [ADDON]... [flags]
148148
```
149149

150-
_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/destroy.ts)_
150+
_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/destroy.ts)_
151151

152152
## `heroku addons:detach ATTACHMENT_NAME`
153153

@@ -171,7 +171,7 @@ DESCRIPTION
171171
detach an existing add-on resource from an app
172172
```
173173

174-
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/detach.ts)_
174+
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/detach.ts)_
175175

176176
## `heroku addons:docs ADDON`
177177

@@ -196,7 +196,7 @@ DESCRIPTION
196196
open an add-on's Dev Center documentation in your browser
197197
```
198198

199-
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/docs.ts)_
199+
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/docs.ts)_
200200

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

@@ -260,7 +260,7 @@ DESCRIPTION
260260
show detailed add-on resource and attachment information
261261
```
262262

263-
_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/info.ts)_
263+
_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/info.ts)_
264264

265265
## `heroku addons:open ADDON`
266266

@@ -285,7 +285,7 @@ DESCRIPTION
285285
open an add-on's dashboard in your browser
286286
```
287287

288-
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/open.ts)_
288+
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/open.ts)_
289289

290290
## `heroku addons:plans SERVICE`
291291

@@ -308,7 +308,7 @@ DESCRIPTION
308308
list all available plans for an add-on service
309309
```
310310

311-
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/plans.ts)_
311+
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/plans.ts)_
312312

313313
## `heroku addons:rename ADDON_NAME NEW_NAME`
314314

@@ -329,7 +329,7 @@ DESCRIPTION
329329
rename an add-on
330330
```
331331

332-
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/rename.ts)_
332+
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/rename.ts)_
333333

334334
## `heroku addons:services`
335335

@@ -349,7 +349,7 @@ DESCRIPTION
349349
list all available add-on services
350350
```
351351

352-
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/services.ts)_
352+
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/services.ts)_
353353

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

@@ -391,7 +391,7 @@ EXAMPLES
391391
$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2
392392
```
393393

394-
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/upgrade.ts)_
394+
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/upgrade.ts)_
395395

396396
## `heroku addons:wait [ADDON]`
397397

@@ -416,4 +416,4 @@ DESCRIPTION
416416
show provisioning status of the add-ons on the app
417417
```
418418

419-
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/addons/wait.ts)_
419+
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/addons/wait.ts)_

docs/apps.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ EXAMPLES
4646
$ heroku apps
4747
```
4848

49-
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/index.ts)_
49+
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/index.ts)_
5050

5151
## `heroku apps:create [APP]`
5252

@@ -101,7 +101,7 @@ EXAMPLES
101101
$ heroku apps:create --region eu
102102
```
103103

104-
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/create.ts)_
104+
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/create.ts)_
105105

106106
## `heroku apps:destroy`
107107

@@ -123,7 +123,7 @@ DESCRIPTION
123123
permanently destroy an app
124124
```
125125

126-
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/destroy.ts)_
126+
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/destroy.ts)_
127127

128128
## `heroku apps:errors`
129129

@@ -148,7 +148,7 @@ DESCRIPTION
148148
view app errors
149149
```
150150

151-
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/errors.ts)_
151+
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/errors.ts)_
152152

153153
## `heroku apps:favorites`
154154

@@ -168,7 +168,7 @@ DESCRIPTION
168168
list favorited apps
169169
```
170170

171-
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/favorites/index.ts)_
171+
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/favorites/index.ts)_
172172

173173
## `heroku apps:favorites:add`
174174

@@ -189,7 +189,7 @@ DESCRIPTION
189189
favorites an app
190190
```
191191

192-
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/favorites/add.ts)_
192+
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/favorites/add.ts)_
193193

194194
## `heroku apps:favorites:remove`
195195

@@ -210,7 +210,7 @@ DESCRIPTION
210210
unfavorites an app
211211
```
212212

213-
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/favorites/remove.ts)_
213+
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/favorites/remove.ts)_
214214

215215
## `heroku apps:info`
216216

@@ -238,7 +238,7 @@ EXAMPLES
238238
$ heroku apps:info --shell
239239
```
240240

241-
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/info.ts)_
241+
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/info.ts)_
242242

243243
## `heroku apps:join`
244244

@@ -262,7 +262,7 @@ ALIASES
262262
$ heroku join
263263
```
264264

265-
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/join.ts)_
265+
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/join.ts)_
266266

267267
## `heroku apps:leave`
268268

@@ -289,7 +289,7 @@ EXAMPLES
289289
$ heroku apps:leave -a APP
290290
```
291291

292-
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/leave.ts)_
292+
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/leave.ts)_
293293

294294
## `heroku apps:lock`
295295

@@ -313,7 +313,7 @@ ALIASES
313313
$ heroku lock
314314
```
315315

316-
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/lock.ts)_
316+
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/lock.ts)_
317317

318318
## `heroku apps:open [PATH]`
319319

@@ -342,7 +342,7 @@ EXAMPLES
342342
$ heroku open -a myapp /foo
343343
```
344344

345-
_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/open.ts)_
345+
_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/open.ts)_
346346

347347
## `heroku apps:rename NEWNAME`
348348

@@ -369,7 +369,7 @@ EXAMPLES
369369
$ heroku apps:rename --app oldname newname
370370
```
371371

372-
_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/rename.ts)_
372+
_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/rename.ts)_
373373

374374
## `heroku apps:stacks`
375375

@@ -390,7 +390,7 @@ DESCRIPTION
390390
show the list of available stacks
391391
```
392392

393-
_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/stacks/index.ts)_
393+
_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/stacks/index.ts)_
394394

395395
## `heroku apps:stacks:set STACK`
396396

@@ -420,7 +420,7 @@ EXAMPLES
420420
Run git push heroku main to trigger a new build on myapp.
421421
```
422422

423-
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/stacks/set.ts)_
423+
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/stacks/set.ts)_
424424

425425
## `heroku apps:transfer RECIPIENT`
426426

@@ -456,7 +456,7 @@ EXAMPLES
456456
...
457457
```
458458

459-
_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/transfer.ts)_
459+
_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/transfer.ts)_
460460

461461
## `heroku apps:unlock`
462462

@@ -480,4 +480,4 @@ ALIASES
480480
$ heroku unlock
481481
```
482482

483-
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.0/src/commands/apps/unlock.ts)_
483+
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v11.0.0-beta.4/src/commands/apps/unlock.ts)_

0 commit comments

Comments
 (0)