heroku 8.4.2 → 8.4.3-beta.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/README.md +1 -0
- package/bin/run +2 -1
- package/lib/commands/run/index.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -62,6 +62,7 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
62
62
|
* [`heroku pipelines`](docs/pipelines.md) - manage pipelines
|
|
63
63
|
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
|
|
64
64
|
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
|
|
65
|
+
* [`heroku psql`](docs/psql.md) - open a psql shell to the database
|
|
65
66
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
66
67
|
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
67
68
|
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
package/bin/run
CHANGED
|
@@ -46,6 +46,7 @@ oclif.run().then(require('@oclif/core/flush')).catch(async error => {
|
|
|
46
46
|
const cliError = error
|
|
47
47
|
cliError.cliRunDuration = globalTelemetry.computeDuration(cliStartTime)
|
|
48
48
|
await globalTelemetry.sendTelemetry(cliError)
|
|
49
|
-
|
|
49
|
+
|
|
50
|
+
return require('@oclif/core/handle')(error)
|
|
50
51
|
})
|
|
51
52
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const command_v9_1 = require("@heroku-cli/command-v9");
|
|
4
|
-
const completions_1 = require("@heroku-cli/command/lib/completions");
|
|
4
|
+
const completions_1 = require("@heroku-cli/command-v9/lib/completions");
|
|
5
5
|
const core_v1_1 = require("@oclif/core-v1");
|
|
6
6
|
require("@oclif/core-v1/lib/parser");
|
|
7
7
|
const debug_1 = require("debug");
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "8.4.
|
|
4
|
+
"version": "8.4.3-beta.0",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -341,5 +341,5 @@
|
|
|
341
341
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
342
342
|
},
|
|
343
343
|
"types": "lib/index.d.ts",
|
|
344
|
-
"gitHead": "
|
|
344
|
+
"gitHead": "4df2d080bdebfae7132b23e764b956afe4e5f01a"
|
|
345
345
|
}
|