Skip to content

Commit 82c0564

Browse files
authored
release v10.13.2 (#3371)
* v10.13.2 * Manually adds commit to changelog Signed-off-by: Chris Montes <[email protected]> * Manually adds commit to changelog Signed-off-by: Chris Montes <[email protected]> --------- Signed-off-by: Chris Montes <[email protected]>
1 parent 0cc8ca2 commit 82c0564

Some content is hidden

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

45 files changed

+316
-293
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 20.19.4
1+
nodejs 20.19.5

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.13.2](https://github.com/heroku/cli/compare/v10.13.1...v10.13.2) (2025-09-16)
7+
8+
9+
### Bug Fixes
10+
11+
* set ignoreStdin to true for redis:cli database arg ([#3366](https://github.com/heroku/cli/issues/3366)) ([f6a4e3c](https://github.com/heroku/cli/commit/f6a4e3c89bcade19db43d8ad9a33aa2987fa1c0f))
12+
* Remove destructive copy ([#3370](https://github.com/heroku/cli/pull/3370))
13+
14+
15+
16+
17+
618
## [10.13.1](https://github.com/heroku/cli/compare/v10.13.0...v10.13.1) (2025-09-04)
719

820

docs/access.md

Lines changed: 4 additions & 4 deletions
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.13.1/packages/cli/src/commands/access/index.ts)_
28+
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/access/add.ts)_
55+
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/access/remove.ts)_
76+
_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/access/update.ts)_
98+
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/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/v10.13.1/packages/cli/src/commands/accounts/index.ts)_
27+
_See code: [src/commands/accounts/index.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/src/commands/accounts/index.ts)_
2828

2929
## `heroku accounts:add NAME`
3030

@@ -44,7 +44,7 @@ EXAMPLES
4444
$ heroku accounts:add my-account
4545
```
4646

47-
_See code: [src/commands/accounts/add.ts](https://github.com/heroku/cli/blob/v10.13.1/packages/cli/src/commands/accounts/add.ts)_
47+
_See code: [src/commands/accounts/add.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/src/commands/accounts/add.ts)_
4848

4949
## `heroku accounts:current`
5050

@@ -61,7 +61,7 @@ EXAMPLES
6161
$ heroku accounts:current
6262
```
6363

64-
_See code: [src/commands/accounts/current.ts](https://github.com/heroku/cli/blob/v10.13.1/packages/cli/src/commands/accounts/current.ts)_
64+
_See code: [src/commands/accounts/current.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/src/commands/accounts/current.ts)_
6565

6666
## `heroku accounts:remove NAME`
6767

@@ -81,7 +81,7 @@ EXAMPLES
8181
$ heroku accounts:remove my-account
8282
```
8383

84-
_See code: [src/commands/accounts/remove.ts](https://github.com/heroku/cli/blob/v10.13.1/packages/cli/src/commands/accounts/remove.ts)_
84+
_See code: [src/commands/accounts/remove.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/src/commands/accounts/remove.ts)_
8585

8686
## `heroku accounts:set NAME`
8787

@@ -101,4 +101,4 @@ EXAMPLES
101101
$ heroku accounts:set my-account
102102
```
103103

104-
_See code: [src/commands/accounts/set.ts](https://github.com/heroku/cli/blob/v10.13.1/packages/cli/src/commands/accounts/set.ts)_
104+
_See code: [src/commands/accounts/set.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/src/commands/accounts/set.ts)_

docs/addons.md

Lines changed: 13 additions & 13 deletions
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.13.1/packages/cli/src/commands/addons/index.ts)_
50+
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/attach.ts)_
75+
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/create.ts)_
110+
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/destroy.ts)_
137+
_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/detach.ts)_
158+
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/docs.ts)_
180+
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/info.ts)_
237+
_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/open.ts)_
259+
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/plans.ts)_
279+
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/rename.ts)_
297+
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/services.ts)_
314+
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/upgrade.ts)_
352+
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/addons/wait.ts)_
374+
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/src/commands/addons/wait.ts)_

docs/apps.md

Lines changed: 17 additions & 17 deletions
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.13.1/packages/cli/src/commands/apps/index.ts)_
46+
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/create.ts)_
92+
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/destroy.ts)_
111+
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/errors.ts)_
133+
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/favorites/index.ts)_
150+
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/favorites/add.ts)_
168+
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/favorites/remove.ts)_
186+
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/info.ts)_
211+
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/join.ts)_
232+
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/leave.ts)_
256+
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/lock.ts)_
277+
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/open.ts)_
303+
_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/rename.ts)_
327+
_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/stacks/index.ts)_
345+
_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/stacks/set.ts)_
372+
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/transfer.ts)_
403+
_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v10.13.2/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.13.1/packages/cli/src/commands/apps/unlock.ts)_
424+
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v10.13.2/packages/cli/src/commands/apps/unlock.ts)_

0 commit comments

Comments
 (0)