heroku 8.0.1 → 8.0.2-beta.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/README.md +7 -7
- package/oclif.manifest.json +1 -1
- package/package.json +41 -35
package/README.md
CHANGED
|
@@ -49,30 +49,28 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
49
49
|
* [`heroku drains`](docs/drains.md) - forward logs to syslog or HTTPS
|
|
50
50
|
* [`heroku features`](docs/features.md) - add/remove app features
|
|
51
51
|
* [`heroku git`](docs/git.md) - manage local git repository for app
|
|
52
|
-
* [`heroku help`](docs/help.md) -
|
|
52
|
+
* [`heroku help`](docs/help.md) - Display help for heroku.
|
|
53
53
|
* [`heroku keys`](docs/keys.md) - add/remove account ssh keys
|
|
54
54
|
* [`heroku labs`](docs/labs.md) - add/remove experimental features
|
|
55
55
|
* [`heroku local`](docs/local.md) - run Heroku app locally
|
|
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
|
|
60
59
|
* [`heroku orgs`](docs/orgs.md) - manage organizations
|
|
61
60
|
* [`heroku pg`](docs/pg.md) - manage postgresql databases
|
|
62
61
|
* [`heroku pipelines`](docs/pipelines.md) - manage pipelines
|
|
63
|
-
* [`heroku plugins`](docs/plugins.md) -
|
|
62
|
+
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
|
|
64
63
|
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
|
|
65
|
-
* [`heroku psql`](docs/psql.md) - open a psql shell to the database
|
|
66
64
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
67
65
|
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
68
|
-
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
69
66
|
* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
|
|
70
67
|
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
71
68
|
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
|
72
69
|
* [`heroku spaces`](docs/spaces.md) - manage heroku private spaces
|
|
73
|
-
* [`heroku status`](docs/status.md) - status of the Heroku platform
|
|
70
|
+
* [`heroku status`](docs/status.md) - display current status of the Heroku platform
|
|
74
71
|
* [`heroku teams`](docs/teams.md) - manage teams
|
|
75
72
|
* [`heroku update`](docs/update.md) - update the Heroku CLI
|
|
73
|
+
* [`heroku version`](docs/version.md)
|
|
76
74
|
* [`heroku webhooks`](docs/webhooks.md) - list webhooks on an app
|
|
77
75
|
|
|
78
76
|
<!-- commandsstop -->
|
|
@@ -80,10 +78,12 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
80
78
|
Developing
|
|
81
79
|
==========
|
|
82
80
|
|
|
83
|
-
This project is built with [lerna](https://lerna.js.org/). The core plugins are located in [./packages](./packages).
|
|
81
|
+
This project is built with [lerna](https://lerna.js.org/). The core plugins are located in [./packages](./packages).
|
|
84
82
|
|
|
85
83
|
After cloning the repo
|
|
86
84
|
1. Run `yarn` to install dependencies
|
|
85
|
+
2. Run `yarn lerna bootstrap` set up Lerna and link the packages together
|
|
86
|
+
- This repo currently uses an older version of Lerna. We recommend using the version specified in the package.json instead of a newer version that you may have installed globally.
|
|
87
87
|
|
|
88
88
|
To execute Heroku CLI commands locally, use `./bin/run <command>`. For example, to run the `heroku apps` command with your local code, run `./bin/run apps` from the root directory.
|
|
89
89
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,44 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "8.0.1",
|
|
4
|
+
"version": "8.0.2-beta.1",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@heroku-cli/color": "1.1.14",
|
|
10
|
-
"@heroku-cli/command": "^9.0.
|
|
11
|
-
"@heroku-cli/plugin-addons-v5": "^8.0.
|
|
12
|
-
"@heroku-cli/plugin-apps": "^8.0.1",
|
|
13
|
-
"@heroku-cli/plugin-apps-v5": "^8.0.
|
|
14
|
-
"@heroku-cli/plugin-auth": "^8.0.1",
|
|
15
|
-
"@heroku-cli/plugin-autocomplete": "^8.0.1",
|
|
16
|
-
"@heroku-cli/plugin-buildpacks": "^8.0.1",
|
|
17
|
-
"@heroku-cli/plugin-certs": "^8.0.1",
|
|
18
|
-
"@heroku-cli/plugin-certs-v5": "^8.0.
|
|
19
|
-
"@heroku-cli/plugin-ci": "^8.0.1",
|
|
20
|
-
"@heroku-cli/plugin-ci-v5": "^8.0.
|
|
21
|
-
"@heroku-cli/plugin-config": "^8.0.1",
|
|
22
|
-
"@heroku-cli/plugin-container-registry-v5": "^8.0.
|
|
23
|
-
"@heroku-cli/plugin-git": "^8.0.1",
|
|
24
|
-
"@heroku-cli/plugin-local": "^8.0.1",
|
|
25
|
-
"@heroku-cli/plugin-oauth-v5": "^8.0.
|
|
26
|
-
"@heroku-cli/plugin-orgs-v5": "^8.0.
|
|
27
|
-
"@heroku-cli/plugin-pg-v5": "^8.0.
|
|
28
|
-
"@heroku-cli/plugin-pipelines": "^8.0.
|
|
29
|
-
"@heroku-cli/plugin-ps": "^8.0.1",
|
|
10
|
+
"@heroku-cli/command": "^9.0.2",
|
|
11
|
+
"@heroku-cli/plugin-addons-v5": "^8.0.2-beta.1",
|
|
12
|
+
"@heroku-cli/plugin-apps": "^8.0.2-beta.1",
|
|
13
|
+
"@heroku-cli/plugin-apps-v5": "^8.0.2-beta.1",
|
|
14
|
+
"@heroku-cli/plugin-auth": "^8.0.2-beta.1",
|
|
15
|
+
"@heroku-cli/plugin-autocomplete": "^8.0.2-beta.1",
|
|
16
|
+
"@heroku-cli/plugin-buildpacks": "^8.0.2-beta.1",
|
|
17
|
+
"@heroku-cli/plugin-certs": "^8.0.2-beta.1",
|
|
18
|
+
"@heroku-cli/plugin-certs-v5": "^8.0.2-beta.1",
|
|
19
|
+
"@heroku-cli/plugin-ci": "^8.0.2-beta.1",
|
|
20
|
+
"@heroku-cli/plugin-ci-v5": "^8.0.2-beta.1",
|
|
21
|
+
"@heroku-cli/plugin-config": "^8.0.2-beta.1",
|
|
22
|
+
"@heroku-cli/plugin-container-registry-v5": "^8.0.2-beta.1",
|
|
23
|
+
"@heroku-cli/plugin-git": "^8.0.2-beta.1",
|
|
24
|
+
"@heroku-cli/plugin-local": "^8.0.2-beta.1",
|
|
25
|
+
"@heroku-cli/plugin-oauth-v5": "^8.0.2-beta.1",
|
|
26
|
+
"@heroku-cli/plugin-orgs-v5": "^8.0.2-beta.1",
|
|
27
|
+
"@heroku-cli/plugin-pg-v5": "^8.0.2-beta.1",
|
|
28
|
+
"@heroku-cli/plugin-pipelines": "^8.0.2-beta.1",
|
|
29
|
+
"@heroku-cli/plugin-ps": "^8.0.2-beta.1",
|
|
30
30
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
31
|
-
"@heroku-cli/plugin-redis-v5": "^8.0.
|
|
32
|
-
"@heroku-cli/plugin-run": "^8.0.1",
|
|
33
|
-
"@heroku-cli/plugin-spaces": "^8.0.
|
|
34
|
-
"@heroku-cli/plugin-status": "^8.0.1",
|
|
35
|
-
"@heroku-cli/plugin-webhooks": "^8.0.1",
|
|
36
|
-
"@oclif/core": "^1.
|
|
31
|
+
"@heroku-cli/plugin-redis-v5": "^8.0.2-beta.1",
|
|
32
|
+
"@heroku-cli/plugin-run": "^8.0.2-beta.1",
|
|
33
|
+
"@heroku-cli/plugin-spaces": "^8.0.2-beta.1",
|
|
34
|
+
"@heroku-cli/plugin-status": "^8.0.2-beta.1",
|
|
35
|
+
"@heroku-cli/plugin-webhooks": "^8.0.2-beta.1",
|
|
36
|
+
"@oclif/core": "^1.26.2",
|
|
37
37
|
"@oclif/plugin-commands": "2.2.2",
|
|
38
|
+
"@oclif/plugin-help": "^5",
|
|
39
|
+
"@oclif/plugin-legacy": "^1.3.0",
|
|
38
40
|
"@oclif/plugin-not-found": "2.3.16",
|
|
39
41
|
"@oclif/plugin-plugins": "2.1.12",
|
|
40
42
|
"@oclif/plugin-update": "3.0.13",
|
|
41
|
-
"@oclif/plugin-
|
|
43
|
+
"@oclif/plugin-version": "^1.2.1",
|
|
44
|
+
"@oclif/plugin-warn-if-update-available": "2.0.29",
|
|
42
45
|
"@oclif/plugin-which": "2.2.8",
|
|
43
46
|
"debug": "4.1.1",
|
|
44
47
|
"execa": "1.0.0",
|
|
@@ -60,7 +63,6 @@
|
|
|
60
63
|
"@types/lodash": "^4.14.123",
|
|
61
64
|
"@types/mocha": "^5.2.6",
|
|
62
65
|
"@types/nock": "^9.3.1",
|
|
63
|
-
"@types/node": "^10.12.24",
|
|
64
66
|
"@types/supports-color": "^5.3.0",
|
|
65
67
|
"@types/write-json-file": "^3.2.1",
|
|
66
68
|
"aws-sdk": "^2.421.0",
|
|
@@ -72,7 +74,7 @@
|
|
|
72
74
|
"lodash": "^4.17.11",
|
|
73
75
|
"mocha": "^5.2.0",
|
|
74
76
|
"nock": "^10.0.6",
|
|
75
|
-
"oclif": "3.6.
|
|
77
|
+
"oclif": "3.6.4",
|
|
76
78
|
"qqjs": "0.3.10",
|
|
77
79
|
"read-pkg": "^4.0.1",
|
|
78
80
|
"sinon": "^7.2.4",
|
|
@@ -80,7 +82,7 @@
|
|
|
80
82
|
"typescript": "4.8.4"
|
|
81
83
|
},
|
|
82
84
|
"engines": {
|
|
83
|
-
"node": ">=
|
|
85
|
+
"node": ">=14"
|
|
84
86
|
},
|
|
85
87
|
"files": [
|
|
86
88
|
"/oclif.manifest.json",
|
|
@@ -101,10 +103,12 @@
|
|
|
101
103
|
"-h"
|
|
102
104
|
],
|
|
103
105
|
"additionalVersionFlags": [
|
|
104
|
-
"-v"
|
|
106
|
+
"-v",
|
|
107
|
+
"version"
|
|
105
108
|
],
|
|
106
109
|
"commands": "./lib/commands",
|
|
107
110
|
"plugins": [
|
|
111
|
+
"@oclif/plugin-legacy",
|
|
108
112
|
"@heroku-cli/plugin-addons-v5",
|
|
109
113
|
"@heroku-cli/plugin-apps",
|
|
110
114
|
"@heroku-cli/plugin-apps-v5",
|
|
@@ -135,6 +139,7 @@
|
|
|
135
139
|
"@oclif/plugin-not-found",
|
|
136
140
|
"@oclif/plugin-plugins",
|
|
137
141
|
"@oclif/plugin-update",
|
|
142
|
+
"@oclif/plugin-version",
|
|
138
143
|
"@oclif/plugin-warn-if-update-available",
|
|
139
144
|
"@oclif/plugin-which"
|
|
140
145
|
],
|
|
@@ -238,7 +243,7 @@
|
|
|
238
243
|
},
|
|
239
244
|
"update": {
|
|
240
245
|
"node": {
|
|
241
|
-
"version": "
|
|
246
|
+
"version": "16.19.0"
|
|
242
247
|
},
|
|
243
248
|
"s3": {
|
|
244
249
|
"xz": true,
|
|
@@ -278,8 +283,9 @@
|
|
|
278
283
|
"prepack": "yarn run build && oclif manifest",
|
|
279
284
|
"pretest": "tsc -p test --noEmit",
|
|
280
285
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
281
|
-
"posttest": "yarn lint"
|
|
286
|
+
"posttest": "yarn lint",
|
|
287
|
+
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
282
288
|
},
|
|
283
289
|
"types": "lib/index.d.ts",
|
|
284
|
-
"gitHead": "
|
|
290
|
+
"gitHead": "a717d575f00e8079065cb37478e9b50507b912bd"
|
|
285
291
|
}
|