heroku 11.8.0-alpha.1 → 11.8.0
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 +6 -6
- package/dist/commands/auth/logout.js +3 -3
- package/npm-shrinkwrap.json +34 -34
- package/oclif.manifest.json +962 -962
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ 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.8.0
|
|
7
|
+
## [11.8.0](https://github.com/heroku/cli/compare/v11.7.1...v11.8.0) (2026-07-01)
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
### Features
|
|
@@ -15,14 +15,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
15
15
|
|
|
16
16
|
### Bug Fixes
|
|
17
17
|
|
|
18
|
-
*
|
|
18
|
+
* remove keychain accounts cache on logout ([#3797](https://github.com/heroku/cli/issues/3797)) ([70cbd44](https://github.com/heroku/cli/commit/70cbd44fcac9b7d3cd21d8d62b713e63e2030924))
|
|
19
|
+
* update CLI to work with changes to heroku-cli-util table function ([#3796](https://github.com/heroku/cli/issues/3796)) ([a523792](https://github.com/heroku/cli/commit/a523792944869e4ea9fe217c080619e1819b43ae))
|
|
19
20
|
|
|
20
|
-
## [11.8.0-alpha.0](https://github.com/heroku/cli/compare/v11.7.1...v11.8.0-alpha.0) (2026-06-29)
|
|
21
21
|
|
|
22
|
+
### Miscellaneous Chores
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
* skip caching token in keychain mode for accounts cache ([#3792](https://github.com/heroku/cli/issues/3792)) ([5d7d95b](https://github.com/heroku/cli/commit/5d7d95bafbcf088c9818690df769d3b8451be369))
|
|
24
|
+
* **deps:** bump @heroku/mcp-server to 1.2.5 and update undici ([#3794](https://github.com/heroku/cli/issues/3794)) ([f5dab06](https://github.com/heroku/cli/commit/f5dab067f0b760a4efd9deee9760b6075a7d913e))
|
|
25
|
+
* **deps:** bump @heroku/mcp-server to 1.2.5, update undici ([09ca009](https://github.com/heroku/cli/commit/09ca0096ae32a27809d688e5e783466fe27d2401))
|
|
26
26
|
|
|
27
27
|
## [11.7.1](https://github.com/heroku/cli/compare/v11.7.0...v11.7.1) (2026-06-24)
|
|
28
28
|
|
|
@@ -10,7 +10,7 @@ export default class Logout extends Command {
|
|
|
10
10
|
async run() {
|
|
11
11
|
await this.parse(Logout);
|
|
12
12
|
ux.action.start('Logging out');
|
|
13
|
-
const
|
|
13
|
+
const cachedAccount = await AccountsModule.current(this.heroku);
|
|
14
14
|
await this.heroku.logout();
|
|
15
15
|
const git = new Git();
|
|
16
16
|
try {
|
|
@@ -20,8 +20,8 @@ export default class Logout extends Command {
|
|
|
20
20
|
catch {
|
|
21
21
|
// ignore
|
|
22
22
|
}
|
|
23
|
-
if (
|
|
24
|
-
await AccountsModule.remove(
|
|
23
|
+
if (cachedAccount) {
|
|
24
|
+
await AccountsModule.remove(cachedAccount);
|
|
25
25
|
}
|
|
26
26
|
await this.config.runHook('recache', { type: 'logout' });
|
|
27
27
|
ux.action.stop();
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
|
-
"version": "11.8.0
|
|
3
|
+
"version": "11.8.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "heroku",
|
|
9
|
-
"version": "11.8.0
|
|
9
|
+
"version": "11.8.0",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@heroku-cli/command": "13.0.0
|
|
12
|
+
"@heroku-cli/command": "^13.0.0",
|
|
13
13
|
"@heroku-cli/notifications": "^1.2.6",
|
|
14
14
|
"@heroku-cli/schema": "^1.0.25",
|
|
15
15
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
16
|
-
"@heroku/heroku-cli-util": "10.9.1
|
|
16
|
+
"@heroku/heroku-cli-util": "^10.9.1",
|
|
17
17
|
"@heroku/http-call": "^5.5.1",
|
|
18
|
-
"@heroku/mcp-server": "^1.2.
|
|
18
|
+
"@heroku/mcp-server": "^1.2.5",
|
|
19
19
|
"@heroku/socksv5": "^0.0.9",
|
|
20
20
|
"@inquirer/prompts": "^7.0",
|
|
21
21
|
"@oclif/core": "^4.8.4",
|
|
@@ -1870,21 +1870,21 @@
|
|
|
1870
1870
|
}
|
|
1871
1871
|
},
|
|
1872
1872
|
"node_modules/@emnapi/core": {
|
|
1873
|
-
"version": "1.
|
|
1874
|
-
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.
|
|
1875
|
-
"integrity": "sha512-
|
|
1873
|
+
"version": "1.11.1",
|
|
1874
|
+
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
|
|
1875
|
+
"integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
|
|
1876
1876
|
"dev": true,
|
|
1877
1877
|
"license": "MIT",
|
|
1878
1878
|
"optional": true,
|
|
1879
1879
|
"dependencies": {
|
|
1880
|
-
"@emnapi/wasi-threads": "1.
|
|
1880
|
+
"@emnapi/wasi-threads": "1.2.2",
|
|
1881
1881
|
"tslib": "^2.4.0"
|
|
1882
1882
|
}
|
|
1883
1883
|
},
|
|
1884
1884
|
"node_modules/@emnapi/runtime": {
|
|
1885
|
-
"version": "1.
|
|
1886
|
-
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.
|
|
1887
|
-
"integrity": "sha512-
|
|
1885
|
+
"version": "1.11.1",
|
|
1886
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
|
|
1887
|
+
"integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
|
|
1888
1888
|
"dev": true,
|
|
1889
1889
|
"license": "MIT",
|
|
1890
1890
|
"optional": true,
|
|
@@ -1893,9 +1893,9 @@
|
|
|
1893
1893
|
}
|
|
1894
1894
|
},
|
|
1895
1895
|
"node_modules/@emnapi/wasi-threads": {
|
|
1896
|
-
"version": "1.
|
|
1897
|
-
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.
|
|
1898
|
-
"integrity": "sha512-
|
|
1896
|
+
"version": "1.2.2",
|
|
1897
|
+
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
|
|
1898
|
+
"integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
|
|
1899
1899
|
"dev": true,
|
|
1900
1900
|
"license": "MIT",
|
|
1901
1901
|
"optional": true,
|
|
@@ -2270,9 +2270,9 @@
|
|
|
2270
2270
|
}
|
|
2271
2271
|
},
|
|
2272
2272
|
"node_modules/@heroku-cli/command": {
|
|
2273
|
-
"version": "13.0.0
|
|
2274
|
-
"resolved": "https://registry.npmjs.org/@heroku-cli/command/-/command-13.0.0
|
|
2275
|
-
"integrity": "sha512-
|
|
2273
|
+
"version": "13.0.0",
|
|
2274
|
+
"resolved": "https://registry.npmjs.org/@heroku-cli/command/-/command-13.0.0.tgz",
|
|
2275
|
+
"integrity": "sha512-ABsPOWZmKIEgrjECBGyhwJQAt4FGx7u0GUNCvVo4yp6TZA2hHQpK4ddfuxfnYO8F3/LQm6PRmeBTBeiX055ToA==",
|
|
2276
2276
|
"license": "ISC",
|
|
2277
2277
|
"dependencies": {
|
|
2278
2278
|
"@heroku/http-call": "^5.5.2",
|
|
@@ -2577,12 +2577,12 @@
|
|
|
2577
2577
|
"license": "MIT"
|
|
2578
2578
|
},
|
|
2579
2579
|
"node_modules/@heroku/heroku-cli-util": {
|
|
2580
|
-
"version": "10.9.1
|
|
2581
|
-
"resolved": "https://registry.npmjs.org/@heroku/heroku-cli-util/-/heroku-cli-util-10.9.1
|
|
2582
|
-
"integrity": "sha512-
|
|
2580
|
+
"version": "10.9.1",
|
|
2581
|
+
"resolved": "https://registry.npmjs.org/@heroku/heroku-cli-util/-/heroku-cli-util-10.9.1.tgz",
|
|
2582
|
+
"integrity": "sha512-42ekCR7J9WvVPqcBNuzzPdl0DFTNbpbkBWRcPYQ2M86obYR9nrY2WTJu2ayPVSyVdUo3ieGc+G9Ad/2E5AigXg==",
|
|
2583
2583
|
"license": "ISC",
|
|
2584
2584
|
"dependencies": {
|
|
2585
|
-
"@heroku-cli/command": "13.0.0
|
|
2585
|
+
"@heroku-cli/command": "^13.0.0",
|
|
2586
2586
|
"@heroku/http-call": "^5.5.0",
|
|
2587
2587
|
"@oclif/core": "^4.3.0",
|
|
2588
2588
|
"@oclif/table": "0.5.9",
|
|
@@ -2715,9 +2715,9 @@
|
|
|
2715
2715
|
}
|
|
2716
2716
|
},
|
|
2717
2717
|
"node_modules/@heroku/mcp-server": {
|
|
2718
|
-
"version": "1.2.
|
|
2719
|
-
"resolved": "https://registry.npmjs.org/@heroku/mcp-server/-/mcp-server-1.2.
|
|
2720
|
-
"integrity": "sha512
|
|
2718
|
+
"version": "1.2.5",
|
|
2719
|
+
"resolved": "https://registry.npmjs.org/@heroku/mcp-server/-/mcp-server-1.2.5.tgz",
|
|
2720
|
+
"integrity": "sha512-++WpH7m4M6dgY9PUkI/odJgNEz9nkS7PDehtXsQ/dSGnDn4DHym/tXL45uV/gYZF+CswzfLWemNKfFwTV9QMVA==",
|
|
2721
2721
|
"license": "Apache-2.0",
|
|
2722
2722
|
"dependencies": {
|
|
2723
2723
|
"@heroku-cli/schema": "^2.0.1",
|
|
@@ -6070,9 +6070,9 @@
|
|
|
6070
6070
|
"license": "MIT"
|
|
6071
6071
|
},
|
|
6072
6072
|
"node_modules/@tybys/wasm-util": {
|
|
6073
|
-
"version": "0.10.
|
|
6074
|
-
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.
|
|
6075
|
-
"integrity": "sha512-
|
|
6073
|
+
"version": "0.10.3",
|
|
6074
|
+
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
|
|
6075
|
+
"integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
|
|
6076
6076
|
"dev": true,
|
|
6077
6077
|
"license": "MIT",
|
|
6078
6078
|
"optional": true,
|
|
@@ -8362,9 +8362,9 @@
|
|
|
8362
8362
|
}
|
|
8363
8363
|
},
|
|
8364
8364
|
"node_modules/cheerio/node_modules/undici": {
|
|
8365
|
-
"version": "7.
|
|
8366
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-7.
|
|
8367
|
-
"integrity": "sha512-
|
|
8365
|
+
"version": "7.28.0",
|
|
8366
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.28.0.tgz",
|
|
8367
|
+
"integrity": "sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==",
|
|
8368
8368
|
"license": "MIT",
|
|
8369
8369
|
"engines": {
|
|
8370
8370
|
"node": ">=20.18.1"
|
|
@@ -21812,9 +21812,9 @@
|
|
|
21812
21812
|
}
|
|
21813
21813
|
},
|
|
21814
21814
|
"node_modules/undici": {
|
|
21815
|
-
"version": "6.
|
|
21816
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-6.
|
|
21817
|
-
"integrity": "sha512-
|
|
21815
|
+
"version": "6.27.0",
|
|
21816
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-6.27.0.tgz",
|
|
21817
|
+
"integrity": "sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==",
|
|
21818
21818
|
"dev": true,
|
|
21819
21819
|
"license": "MIT",
|
|
21820
21820
|
"engines": {
|