heroku 8.3.2-beta.8 → 8.4.0-beta.2
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
CHANGED
|
@@ -56,6 +56,7 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
56
56
|
* [`heroku logs`](docs/logs.md) - display recent log output
|
|
57
57
|
* [`heroku maintenance`](docs/maintenance.md) - enable/disable access to app
|
|
58
58
|
* [`heroku members`](docs/members.md) - manage organization members
|
|
59
|
+
* [`heroku notifications`](docs/notifications.md) - display notifications
|
|
59
60
|
* [`heroku orgs`](docs/orgs.md) - manage organizations
|
|
60
61
|
* [`heroku pg`](docs/pg.md) - manage postgresql databases
|
|
61
62
|
* [`heroku pipelines`](docs/pipelines.md) - manage pipelines
|
|
@@ -64,6 +65,7 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
64
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
|
|
68
|
+
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
67
69
|
* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
|
|
68
70
|
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
69
71
|
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
|
@@ -42,6 +42,6 @@ WebhooksAdd.flags = {
|
|
|
42
42
|
include: command_1.flags.string({ char: 'i', description: 'comma delimited event types your server will receive ', required: true }),
|
|
43
43
|
level: command_1.flags.string({ char: 'l', description: 'notify does not retry, sync will retry until successful or timeout', required: true }),
|
|
44
44
|
secret: command_1.flags.string({ char: 's', description: 'value to sign delivery with in Heroku-Webhook-Hmac-SHA256 header' }),
|
|
45
|
-
authorization: command_1.flags.string({ char: 't', description: '
|
|
45
|
+
authorization: command_1.flags.string({ char: 't', description: 'authoriation header to send with webhooks' }),
|
|
46
46
|
url: command_1.flags.string({ char: 'u', description: 'URL for receiver', required: true }),
|
|
47
47
|
};
|
|
@@ -33,7 +33,7 @@ WebhooksUpdate.flags = {
|
|
|
33
33
|
include: command_1.flags.string({ char: 'i', description: 'comma delimited event types your server will receive ', required: true }),
|
|
34
34
|
level: command_1.flags.string({ char: 'l', description: 'notify does not retry, sync will retry until successful or timeout', required: true }),
|
|
35
35
|
secret: command_1.flags.string({ char: 's', description: 'value to sign delivery with in Heroku-Webhook-Hmac-SHA256 header' }),
|
|
36
|
-
authorization: command_1.flags.string({ char: 't', description: '
|
|
36
|
+
authorization: command_1.flags.string({ char: 't', description: 'authoriation header to send with webhooks' }),
|
|
37
37
|
url: command_1.flags.string({ char: 'u', description: 'URL for receiver', required: true }),
|
|
38
38
|
};
|
|
39
39
|
WebhooksUpdate.args = {
|
package/lib/hooks/update/brew.js
CHANGED
|
@@ -24,7 +24,6 @@ const brewHook = async function () {
|
|
|
24
24
|
let cellarPath;
|
|
25
25
|
if (binPath && binPath.startsWith(path.join(brewRoot, 'Cellar'))) {
|
|
26
26
|
cellarPath = path.resolve(binPath, path.dirname(path.relative(binPath, path.join(brewRoot, 'Cellar/heroku'))));
|
|
27
|
-
console.error('brew update path:', cellarPath);
|
|
28
27
|
}
|
|
29
28
|
const fetchInstallReceipt = async () => {
|
|
30
29
|
if (!cellarPath)
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "8.
|
|
2
|
+
"version": "8.4.0-beta.2",
|
|
3
3
|
"commands": {
|
|
4
4
|
"console": {
|
|
5
5
|
"id": "console",
|
|
@@ -2860,7 +2860,7 @@
|
|
|
2860
2860
|
"name": "authorization",
|
|
2861
2861
|
"type": "option",
|
|
2862
2862
|
"char": "t",
|
|
2863
|
-
"description": "
|
|
2863
|
+
"description": "authoriation header to send with webhooks",
|
|
2864
2864
|
"multiple": false
|
|
2865
2865
|
},
|
|
2866
2866
|
"url": {
|
|
@@ -3060,7 +3060,7 @@
|
|
|
3060
3060
|
"name": "authorization",
|
|
3061
3061
|
"type": "option",
|
|
3062
3062
|
"char": "t",
|
|
3063
|
-
"description": "
|
|
3063
|
+
"description": "authoriation header to send with webhooks",
|
|
3064
3064
|
"multiple": false
|
|
3065
3065
|
},
|
|
3066
3066
|
"url": {
|
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
|
+
"version": "8.4.0-beta.2",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"@heroku-cli/color": "1.1.14",
|
|
10
10
|
"@heroku-cli/command": "^10.0.0",
|
|
11
11
|
"@heroku-cli/notifications": "^1.2.2",
|
|
12
|
-
"@heroku-cli/plugin-addons-v5": "^8.
|
|
13
|
-
"@heroku-cli/plugin-apps-v5": "^8.
|
|
12
|
+
"@heroku-cli/plugin-addons-v5": "^8.4.0-beta.2",
|
|
13
|
+
"@heroku-cli/plugin-apps-v5": "^8.4.0-beta.2",
|
|
14
14
|
"@heroku-cli/plugin-certs-v5": "^8.2.0",
|
|
15
15
|
"@heroku-cli/plugin-ci-v5": "^8.2.0",
|
|
16
16
|
"@heroku-cli/plugin-container-registry-v5": "^8.2.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@heroku-cli/plugin-ps": "^8.1.7",
|
|
20
20
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
21
21
|
"@heroku-cli/plugin-redis-v5": "^8.2.0",
|
|
22
|
-
"@heroku-cli/plugin-spaces": "^8.
|
|
22
|
+
"@heroku-cli/plugin-spaces": "^8.4.0-beta.2",
|
|
23
23
|
"@heroku-cli/schema": "^1.0.25",
|
|
24
24
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
25
25
|
"@heroku/eventsource": "^1.0.7",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@oclif/plugin-legacy": "^1.3.0",
|
|
30
30
|
"@oclif/plugin-not-found": "2.3.16",
|
|
31
31
|
"@oclif/plugin-plugins": "2.4.3",
|
|
32
|
-
"@oclif/plugin-update": "3.1.
|
|
32
|
+
"@oclif/plugin-update": "3.1.10",
|
|
33
33
|
"@oclif/plugin-version": "^1.2.1",
|
|
34
34
|
"@oclif/plugin-warn-if-update-available": "2.0.29",
|
|
35
35
|
"@oclif/plugin-which": "2.2.8",
|
|
@@ -338,5 +338,5 @@
|
|
|
338
338
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
339
339
|
},
|
|
340
340
|
"types": "lib/index.d.ts",
|
|
341
|
-
"gitHead": "
|
|
341
|
+
"gitHead": "d5b7eebcbae429334e25eecff745ebccb9ade4af"
|
|
342
342
|
}
|