heroku 11.0.1-beta.0 → 11.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,13 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
6
 
7
- ## [11.0.1-beta.0](https://github.com/heroku/cli/compare/v11.0.0...v11.0.1-beta.0) (2026-03-25)
7
+ ## [11.0.1](https://github.com/heroku/cli/compare/v11.0.0...v11.0.1) (2026-03-26)
8
8
 
9
9
 
10
10
  ### Bug Fixes
11
11
 
12
12
  * address UI issues with confirmation prompts on multiple commands (W-21649376) ([#3602](https://github.com/heroku/cli/issues/3602)) ([7e96152](https://github.com/heroku/cli/commit/7e96152f8789d4580cd30b0e501866d6f01c9079))
13
13
  * resolve addons across data maintenances commands ([#3609](https://github.com/heroku/cli/issues/3609)) ([84eb648](https://github.com/heroku/cli/commit/84eb64866d1204cb393bae80ae8b4c58eabcb1cc))
14
+ * separate TERM=dumb run status lines ([#3617](https://github.com/heroku/cli/issues/3617)) ([3eff3dc](https://github.com/heroku/cli/commit/3eff3dccfe6bb131756ed4a7984904f80af06165))
14
15
  * show correct error message for Essential-tier (W-21653472) ([#3614](https://github.com/heroku/cli/issues/3614)) ([6fcb3a4](https://github.com/heroku/cli/commit/6fcb3a4ae28166c46b7412dec518afa275c54d6a))
15
16
 
16
17
 
@@ -337,7 +337,13 @@ export default class Dyno extends Duplex {
337
337
  const pathnameWithSearchParams = this.uri.pathname + this.uri.search;
338
338
  c.write(pathnameWithSearchParams.slice(1) + '\r\n', () => {
339
339
  if (this.opts.showStatus) {
340
- ux.action.status = this._status('connecting');
340
+ if (process.env.TERM === 'dumb') {
341
+ ux.action.stop(this._status('connecting'));
342
+ ux.action.start(`Running ${color.code(this.opts.command)} on ${color.app(this.opts.app)}`);
343
+ }
344
+ else {
345
+ ux.action.status = this._status('connecting');
346
+ }
341
347
  }
342
348
  });
343
349
  });
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "heroku",
3
- "version": "11.0.1-beta.0",
3
+ "version": "11.0.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "heroku",
9
- "version": "11.0.1-beta.0",
9
+ "version": "11.0.1",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "@heroku-cli/command": "^12.2.2",
@@ -19510,5 +19510,5 @@
19510
19510
  ]
19511
19511
  }
19512
19512
  },
19513
- "version": "11.0.1-beta.0"
19513
+ "version": "11.0.1"
19514
19514
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "heroku",
3
3
  "description": "CLI to interact with Heroku",
4
- "version": "11.0.1-beta.0",
4
+ "version": "11.0.1",
5
5
  "author": "Heroku",
6
6
  "bin": "./bin/run",
7
7
  "bugs": "https://github.com/heroku/cli/issues",
@@ -345,7 +345,7 @@
345
345
  },
346
346
  "update": {
347
347
  "node": {
348
- "version": "22.22.1"
348
+ "version": "22.22.2"
349
349
  },
350
350
  "s3": {
351
351
  "bucket": "heroku-cli-assets",