Skip to content

Commit 467b8ab

Browse files
authored
release v10.4.0 (#3259)
* v10.3.1 * v10.4.0 * update changelog
1 parent 72a4863 commit 467b8ab

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

+316
-279
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4.0](https://github.com/heroku/cli/compare/v10.3.0...v10.4.0) (2025-03-20)
7+
8+
### Features
9+
10+
* If addon is metered, print metered label and link to elements page ([#3258](https://github.com/heroku/cli/pull/3258)) ([72a4863](https://github.com/heroku/cli/commit/72a4863c8f4c139ea0d641576dc1ca361af30541))
11+
* chore: migrate retry command to oclif/core & move to cli core ([#3256](https://github.com/heroku/cli/pull/3256)) ([fb612fa](https://github.com/heroku/cli/commit/fb612fafa6c3b562ed015ea1d09fbff4589728fc))
12+
13+
614
# [10.3.0](https://github.com/heroku/cli/compare/v10.2.0...v10.3.0) (2025-03-12)
715

816

docs/access.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ 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.3.0/packages/cli/src/commands/access/index.ts)_
28+
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/access/index.ts)_
2929

3030
## `heroku access:add EMAIL`
3131

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

5757
## `heroku access:remove`
5858

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

7878
## `heroku access:update EMAIL`
7979

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

docs/addons.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -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.3.0/packages/cli/src/commands/addons/index.ts)_
50+
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/addons/index.ts)_
5151

5252
## `heroku addons:attach ADDON_NAME`
5353

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

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

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

112112
## `heroku addons:destroy ADDONNAME`
113113

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

139139
## `heroku addons:detach ATTACHMENT_NAME`
140140

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

160160
## `heroku addons:docs ADDON`
161161

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

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

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

239239
## `heroku addons:open ADDON`
240240

@@ -256,7 +256,7 @@ 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.3.0/packages/cli/src/commands/addons/open.ts)_
259+
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v10.4.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.3.0/packages/cli/src/commands/addons/plans.ts)_
279+
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v10.4.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.3.0/packages/cli/src/commands/addons/rename.ts)_
297+
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v10.4.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.3.0/packages/cli/src/commands/addons/services.ts)_
314+
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/addons/services.ts)_
315315

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

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

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

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

docs/apps.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ EXAMPLES
4343
$ heroku apps
4444
```
4545

46-
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/index.ts)_
46+
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/index.ts)_
4747

4848
## `heroku apps:create [APP]`
4949

@@ -89,7 +89,7 @@ EXAMPLES
8989
$ heroku apps:create --region eu
9090
```
9191

92-
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/create.ts)_
92+
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/create.ts)_
9393

9494
## `heroku apps:destroy`
9595

@@ -108,7 +108,7 @@ DESCRIPTION
108108
permanently destroy an app
109109
```
110110

111-
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/destroy.ts)_
111+
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/destroy.ts)_
112112

113113
## `heroku apps:errors`
114114

@@ -130,7 +130,7 @@ DESCRIPTION
130130
view app errors
131131
```
132132

133-
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/errors.ts)_
133+
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/errors.ts)_
134134

135135
## `heroku apps:favorites`
136136

@@ -147,7 +147,7 @@ DESCRIPTION
147147
list favorited apps
148148
```
149149

150-
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/favorites/index.ts)_
150+
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/favorites/index.ts)_
151151

152152
## `heroku apps:favorites:add`
153153

@@ -165,7 +165,7 @@ DESCRIPTION
165165
favorites an app
166166
```
167167

168-
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/favorites/add.ts)_
168+
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/favorites/add.ts)_
169169

170170
## `heroku apps:favorites:remove`
171171

@@ -183,7 +183,7 @@ DESCRIPTION
183183
unfavorites an app
184184
```
185185

186-
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/favorites/remove.ts)_
186+
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/favorites/remove.ts)_
187187

188188
## `heroku apps:info`
189189

@@ -208,7 +208,7 @@ EXAMPLES
208208
$ heroku apps:info --shell
209209
```
210210

211-
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/info.ts)_
211+
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/info.ts)_
212212

213213
## `heroku apps:join`
214214

@@ -229,7 +229,7 @@ ALIASES
229229
$ heroku join
230230
```
231231

232-
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/join.ts)_
232+
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/join.ts)_
233233

234234
## `heroku apps:leave`
235235

@@ -253,7 +253,7 @@ EXAMPLES
253253
$ heroku apps:leave -a APP
254254
```
255255

256-
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/leave.ts)_
256+
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/leave.ts)_
257257

258258
## `heroku apps:lock`
259259

@@ -274,7 +274,7 @@ ALIASES
274274
$ heroku lock
275275
```
276276

277-
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/lock.ts)_
277+
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/lock.ts)_
278278

279279
## `heroku apps:open [PATH]`
280280

@@ -300,7 +300,7 @@ EXAMPLES
300300
$ heroku open -a myapp /foo
301301
```
302302

303-
_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/open.ts)_
303+
_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/open.ts)_
304304

305305
## `heroku apps:rename NEWNAME`
306306

@@ -324,7 +324,7 @@ EXAMPLES
324324
$ heroku apps:rename --app oldname newname
325325
```
326326

327-
_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/rename.ts)_
327+
_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/rename.ts)_
328328

329329
## `heroku apps:stacks`
330330

@@ -342,7 +342,7 @@ DESCRIPTION
342342
show the list of available stacks
343343
```
344344

345-
_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/stacks/index.ts)_
345+
_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/stacks/index.ts)_
346346

347347
## `heroku apps:stacks:set STACK`
348348

@@ -369,7 +369,7 @@ EXAMPLES
369369
Run git push heroku main to trigger a new build on myapp.
370370
```
371371

372-
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/stacks/set.ts)_
372+
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/stacks/set.ts)_
373373

374374
## `heroku apps:transfer RECIPIENT`
375375

@@ -400,7 +400,7 @@ EXAMPLES
400400
...
401401
```
402402

403-
_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/transfer.ts)_
403+
_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/transfer.ts)_
404404

405405
## `heroku apps:unlock`
406406

@@ -421,4 +421,4 @@ ALIASES
421421
$ heroku unlock
422422
```
423423

424-
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/apps/unlock.ts)_
424+
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/apps/unlock.ts)_

docs/auth.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ALIASES
2626
$ heroku twofactor
2727
```
2828

29-
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/auth/2fa/index.ts)_
29+
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/auth/2fa/index.ts)_
3030

3131
## `heroku auth:2fa:disable`
3232

@@ -47,7 +47,7 @@ EXAMPLES
4747
$ heroku auth:2fa:disable
4848
```
4949

50-
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/auth/2fa/disable.ts)_
50+
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/auth/2fa/disable.ts)_
5151

5252
## `heroku auth:login`
5353

@@ -69,7 +69,7 @@ ALIASES
6969
$ heroku login
7070
```
7171

72-
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/auth/login.ts)_
72+
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/auth/login.ts)_
7373

7474
## `heroku auth:logout`
7575

@@ -86,7 +86,7 @@ ALIASES
8686
$ heroku logout
8787
```
8888

89-
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/auth/logout.ts)_
89+
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/auth/logout.ts)_
9090

9191
## `heroku auth:token`
9292

@@ -105,7 +105,7 @@ DESCRIPTION
105105
authorizations:create
106106
```
107107

108-
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/auth/token.ts)_
108+
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/auth/token.ts)_
109109

110110
## `heroku auth:whoami`
111111

@@ -122,4 +122,4 @@ ALIASES
122122
$ heroku whoami
123123
```
124124

125-
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v10.3.0/packages/cli/src/commands/auth/whoami.ts)_
125+
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v10.4.0/packages/cli/src/commands/auth/whoami.ts)_

0 commit comments

Comments
 (0)