Skip to content

Commit dd6baf6

Browse files
committed
Merge branch 'prerelease/10.0.3-alpha.2' of github.com:heroku/cli into feature/interactive-prompt
2 parents 39fb094 + 7016979 commit dd6baf6

Some content is hidden

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

42 files changed

+501
-477
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [10.0.3-alpha.3](https://github.com/heroku/cli/compare/v10.0.2...v10.0.3-alpha.0) (2025-01-30)
7+
8+
9+
### Bug Fixes
10+
11+
* 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))
12+
* 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))
13+
14+
15+
16+
17+
618
## [10.0.2](https://github.com/heroku/cli/compare/v10.0.1...v10.0.2) (2025-01-09)
719

820

docs/access.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ USAGE
1717
$ heroku access -a <value> [-r <value>] [--json]
1818
1919
FLAGS
20-
-a, --app=<value> (required) app to run command against
20+
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
2121
-r, --remote=<value> git remote of app to use
2222
--json output in json format
2323
2424
DESCRIPTION
2525
list who has access to an app
2626
```
2727

28-
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/access/index.ts)_
28+
_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)_
2929

3030
## `heroku access:add EMAIL`
3131

@@ -39,7 +39,7 @@ ARGUMENTS
3939
EMAIL email address of the team member
4040
4141
FLAGS
42-
-a, --app=<value> (required) app to run command against
42+
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
4343
-p, --permissions=<value> list of permissions comma separated
4444
-r, --remote=<value> git remote of app to use
4545
@@ -52,7 +52,7 @@ EXAMPLES
5252
$ heroku access:add [email protected] --app APP --permissions deploy,manage,operate # permissions must be comma separated
5353
```
5454

55-
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/access/add.ts)_
55+
_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)_
5656

5757
## `heroku access:remove`
5858

@@ -63,7 +63,7 @@ USAGE
6363
$ heroku access:remove -a <value> [-r <value>]
6464
6565
FLAGS
66-
-a, --app=<value> (required) app to run command against
66+
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
6767
-r, --remote=<value> git remote of app to use
6868
6969
DESCRIPTION
@@ -73,7 +73,7 @@ EXAMPLES
7373
$ heroku access:remove [email protected] --app APP
7474
```
7575

76-
_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/access/remove.ts)_
76+
_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)_
7777

7878
## `heroku access:update EMAIL`
7979

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

98-
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/access/update.ts)_
98+
_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)_

docs/addons.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ USAGE
2828
2929
FLAGS
3030
-A, --all show add-ons and attachments for all accessible apps
31-
-a, --app=<value> app to run command against
31+
-a, --app=<value> [default: heroku-vscode] app to run command against
3232
-r, --remote=<value> git remote of app to use
3333
--json return add-ons in json format
3434
@@ -47,7 +47,7 @@ EXAMPLES
4747
$ heroku addons --app acme-inc-www
4848
```
4949

50-
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/index.ts)_
50+
_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)_
5151

5252
## `heroku addons:attach ADDON_NAME`
5353

@@ -62,7 +62,7 @@ ARGUMENTS
6262
ADDON_NAME unique identifier or globally unique name of the add-on
6363
6464
FLAGS
65-
-a, --app=<value> (required) app to run command against
65+
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
6666
-r, --remote=<value> git remote of app to use
6767
--as=<value> name for add-on attachment
6868
--confirm=<value> overwrite existing add-on attachment with same name
@@ -72,7 +72,7 @@ DESCRIPTION
7272
attach an existing add-on resource to an app
7373
```
7474

75-
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/attach.ts)_
75+
_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)_
7676

7777
## `heroku addons:create SERVICE:PLAN`
7878

@@ -87,7 +87,7 @@ ARGUMENTS
8787
SERVICE:PLAN... unique identifier or unique name of the add-on service plan
8888
8989
FLAGS
90-
-a, --app=<value> (required) app to run command against
90+
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
9191
-r, --remote=<value> git remote of app to use
9292
--as=<value> name for the initial add-on attachment
9393
--confirm=<value> overwrite existing config vars or existing add-on attachments
@@ -107,7 +107,7 @@ EXAMPLES
107107
$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE
108108
```
109109

110-
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/create.ts)_
110+
_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)_
111111

112112
## `heroku addons:destroy ADDONNAME`
113113

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

137-
_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/destroy.ts)_
137+
_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)_
138138

139139
## `heroku addons:detach ATTACHMENT_NAME`
140140

@@ -148,14 +148,14 @@ ARGUMENTS
148148
ATTACHMENT_NAME unique identifier of the add-on attachment
149149
150150
FLAGS
151-
-a, --app=<value> (required) app to run command against
151+
-a, --app=<value> (required) [default: heroku-vscode] app to run command against
152152
-r, --remote=<value> git remote of app to use
153153
154154
DESCRIPTION
155155
detach an existing add-on resource from an app
156156
```
157157

158-
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/detach.ts)_
158+
_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)_
159159

160160
## `heroku addons:docs ADDON`
161161

@@ -169,15 +169,15 @@ ARGUMENTS
169169
ADDON unique identifier or globally unique name of the add-on
170170
171171
FLAGS
172-
-a, --app=<value> app to run command against
172+
-a, --app=<value> [default: heroku-vscode] app to run command against
173173
-r, --remote=<value> git remote of app to use
174174
--show-url show URL, do not open browser
175175
176176
DESCRIPTION
177177
open an add-on's Dev Center documentation in your browser
178178
```
179179

180-
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/docs.ts)_
180+
_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)_
181181

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

@@ -192,7 +192,7 @@ ARGUMENTS
192192
PLAN unique identifier or name of the plan
193193
194194
FLAGS
195-
-a, --app=<value> app to run command against
195+
-a, --app=<value> [default: heroku-vscode] app to run command against
196196
-r, --remote=<value> git remote of app to use
197197
198198
DESCRIPTION
@@ -227,14 +227,14 @@ ARGUMENTS
227227
ADDON unique identifier or globally unique name of the add-on
228228
229229
FLAGS
230-
-a, --app=<value> app to run command against
230+
-a, --app=<value> [default: heroku-vscode] app to run command against
231231
-r, --remote=<value> git remote of app to use
232232
233233
DESCRIPTION
234234
show detailed add-on resource and attachment information
235235
```
236236

237-
_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/info.ts)_
237+
_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)_
238238

239239
## `heroku addons:open ADDON`
240240

@@ -248,15 +248,15 @@ ARGUMENTS
248248
ADDON unique identifier or globally unique name of the add-on
249249
250250
FLAGS
251-
-a, --app=<value> app to run command against
251+
-a, --app=<value> [default: heroku-vscode] app to run command against
252252
-r, --remote=<value> git remote of app to use
253253
--show-url show URL, do not open browser
254254
255255
DESCRIPTION
256256
open an add-on's dashboard in your browser
257257
```
258258

259-
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/open.ts)_
259+
_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)_
260260

261261
## `heroku addons:plans SERVICE`
262262

@@ -276,7 +276,7 @@ DESCRIPTION
276276
list all available plans for an add-on service
277277
```
278278

279-
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/plans.ts)_
279+
_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)_
280280

281281
## `heroku addons:rename ADDON_NAME NEW_NAME`
282282

@@ -294,7 +294,7 @@ DESCRIPTION
294294
rename an add-on
295295
```
296296

297-
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/rename.ts)_
297+
_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)_
298298

299299
## `heroku addons:services`
300300

@@ -311,7 +311,7 @@ DESCRIPTION
311311
list all available add-on services
312312
```
313313

314-
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/services.ts)_
314+
_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)_
315315

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

@@ -326,7 +326,7 @@ ARGUMENTS
326326
PLAN unique identifier or name of the plan
327327
328328
FLAGS
329-
-a, --app=<value> app to run command against
329+
-a, --app=<value> [default: heroku-vscode] app to run command against
330330
-r, --remote=<value> git remote of app to use
331331
332332
DESCRIPTION
@@ -349,7 +349,7 @@ EXAMPLES
349349
$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2
350350
```
351351

352-
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/upgrade.ts)_
352+
_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)_
353353

354354
## `heroku addons:wait [ADDON]`
355355

@@ -363,12 +363,12 @@ ARGUMENTS
363363
ADDON unique identifier or globally unique name of the add-on
364364
365365
FLAGS
366-
-a, --app=<value> app to run command against
366+
-a, --app=<value> [default: heroku-vscode] app to run command against
367367
-r, --remote=<value> git remote of app to use
368368
--wait-interval=<value> how frequently to poll in seconds
369369
370370
DESCRIPTION
371371
show provisioning status of the add-ons on the app
372372
```
373373

374-
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v10.0.2/packages/cli/src/commands/addons/wait.ts)_
374+
_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)_

0 commit comments

Comments
 (0)