heroku 8.0.0 → 8.0.2-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 +6 -17
- package/oclif.manifest.json +1 -1
- package/package.json +39 -34
package/README.md
CHANGED
|
@@ -36,43 +36,30 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
36
36
|
* [`heroku access`](docs/access.md) - manage user access to apps
|
|
37
37
|
* [`heroku addons`](docs/addons.md) - tools and services for developing, extending, and operating your app
|
|
38
38
|
* [`heroku apps`](docs/apps.md) - manage apps on Heroku
|
|
39
|
-
* [`heroku auth`](docs/auth.md) - check 2fa status
|
|
40
39
|
* [`heroku authorizations`](docs/authorizations.md) - OAuth authorizations
|
|
41
|
-
* [`heroku autocomplete`](docs/autocomplete.md) - display autocomplete installation instructions
|
|
42
|
-
* [`heroku buildpacks`](docs/buildpacks.md) - scripts used to compile apps
|
|
43
40
|
* [`heroku certs`](docs/certs.md) - a topic for the ssl plugin
|
|
44
41
|
* [`heroku ci`](docs/ci.md) - run an application test suite on Heroku
|
|
45
42
|
* [`heroku clients`](docs/clients.md) - OAuth clients on the platform
|
|
46
43
|
* [`heroku config`](docs/config.md) - environment variables of apps
|
|
47
44
|
* [`heroku container`](docs/container.md) - Use containers to build and deploy Heroku apps
|
|
48
|
-
* [`heroku domains`](docs/domains.md) - custom domains for apps
|
|
49
45
|
* [`heroku drains`](docs/drains.md) - forward logs to syslog or HTTPS
|
|
50
46
|
* [`heroku features`](docs/features.md) - add/remove app features
|
|
51
|
-
* [`heroku
|
|
52
|
-
* [`heroku help`](docs/help.md) - display help for heroku
|
|
47
|
+
* [`heroku help`](docs/help.md) - Display help for heroku.
|
|
53
48
|
* [`heroku keys`](docs/keys.md) - add/remove account ssh keys
|
|
54
49
|
* [`heroku labs`](docs/labs.md) - add/remove experimental features
|
|
55
50
|
* [`heroku local`](docs/local.md) - run Heroku app locally
|
|
56
|
-
* [`heroku logs`](docs/logs.md) - display recent log output
|
|
57
51
|
* [`heroku maintenance`](docs/maintenance.md) - enable/disable access to app
|
|
58
52
|
* [`heroku members`](docs/members.md) - manage organization members
|
|
59
|
-
* [`heroku notifications`](docs/notifications.md) - display notifications
|
|
60
53
|
* [`heroku orgs`](docs/orgs.md) - manage organizations
|
|
61
54
|
* [`heroku pg`](docs/pg.md) - manage postgresql databases
|
|
62
|
-
* [`heroku
|
|
63
|
-
* [`heroku plugins`](docs/plugins.md) - list installed plugins
|
|
55
|
+
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
|
|
64
56
|
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
|
|
65
|
-
* [`heroku psql`](docs/psql.md) - open a psql shell to the database
|
|
66
57
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
67
|
-
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
68
|
-
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
69
|
-
* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
|
|
70
|
-
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
71
58
|
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
|
72
59
|
* [`heroku spaces`](docs/spaces.md) - manage heroku private spaces
|
|
73
|
-
* [`heroku status`](docs/status.md) - status of the Heroku platform
|
|
74
60
|
* [`heroku teams`](docs/teams.md) - manage teams
|
|
75
61
|
* [`heroku update`](docs/update.md) - update the Heroku CLI
|
|
62
|
+
* [`heroku version`](docs/version.md)
|
|
76
63
|
* [`heroku webhooks`](docs/webhooks.md) - list webhooks on an app
|
|
77
64
|
|
|
78
65
|
<!-- commandsstop -->
|
|
@@ -80,10 +67,12 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
80
67
|
Developing
|
|
81
68
|
==========
|
|
82
69
|
|
|
83
|
-
This project is built with [lerna](https://lerna.js.org/). The core plugins are located in [./packages](./packages).
|
|
70
|
+
This project is built with [lerna](https://lerna.js.org/). The core plugins are located in [./packages](./packages).
|
|
84
71
|
|
|
85
72
|
After cloning the repo
|
|
86
73
|
1. Run `yarn` to install dependencies
|
|
74
|
+
2. Run `yarn lerna bootstrap` set up Lerna and link the packages together
|
|
75
|
+
- 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
76
|
|
|
88
77
|
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
78
|
|
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.0",
|
|
4
|
+
"version": "8.0.2-beta.0",
|
|
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.0",
|
|
12
|
-
"@heroku-cli/plugin-apps": "^8.0.0",
|
|
13
|
-
"@heroku-cli/plugin-apps-v5": "^8.0.0",
|
|
14
|
-
"@heroku-cli/plugin-auth": "^8.0.0",
|
|
15
|
-
"@heroku-cli/plugin-autocomplete": "^8.0.0",
|
|
16
|
-
"@heroku-cli/plugin-buildpacks": "^8.0.0",
|
|
17
|
-
"@heroku-cli/plugin-certs": "^8.0.0",
|
|
18
|
-
"@heroku-cli/plugin-certs-v5": "^8.0.0",
|
|
19
|
-
"@heroku-cli/plugin-ci": "^8.0.0",
|
|
20
|
-
"@heroku-cli/plugin-ci-v5": "^8.0.0",
|
|
21
|
-
"@heroku-cli/plugin-config": "^8.0.0",
|
|
22
|
-
"@heroku-cli/plugin-container-registry-v5": "^8.0.0",
|
|
23
|
-
"@heroku-cli/plugin-git": "^8.0.0",
|
|
24
|
-
"@heroku-cli/plugin-local": "^8.0.0",
|
|
25
|
-
"@heroku-cli/plugin-oauth-v5": "^8.0.0",
|
|
26
|
-
"@heroku-cli/plugin-orgs-v5": "^8.0.0",
|
|
27
|
-
"@heroku-cli/plugin-pg-v5": "^8.0.0",
|
|
28
|
-
"@heroku-cli/plugin-pipelines": "^8.0.0",
|
|
29
|
-
"@heroku-cli/plugin-ps": "^8.0.0",
|
|
10
|
+
"@heroku-cli/command": "^9.0.2",
|
|
11
|
+
"@heroku-cli/plugin-addons-v5": "^8.0.2-beta.0",
|
|
12
|
+
"@heroku-cli/plugin-apps": "^8.0.2-beta.0",
|
|
13
|
+
"@heroku-cli/plugin-apps-v5": "^8.0.2-beta.0",
|
|
14
|
+
"@heroku-cli/plugin-auth": "^8.0.2-beta.0",
|
|
15
|
+
"@heroku-cli/plugin-autocomplete": "^8.0.2-beta.0",
|
|
16
|
+
"@heroku-cli/plugin-buildpacks": "^8.0.2-beta.0",
|
|
17
|
+
"@heroku-cli/plugin-certs": "^8.0.2-beta.0",
|
|
18
|
+
"@heroku-cli/plugin-certs-v5": "^8.0.2-beta.0",
|
|
19
|
+
"@heroku-cli/plugin-ci": "^8.0.2-beta.0",
|
|
20
|
+
"@heroku-cli/plugin-ci-v5": "^8.0.2-beta.0",
|
|
21
|
+
"@heroku-cli/plugin-config": "^8.0.2-beta.0",
|
|
22
|
+
"@heroku-cli/plugin-container-registry-v5": "^8.0.2-beta.0",
|
|
23
|
+
"@heroku-cli/plugin-git": "^8.0.2-beta.0",
|
|
24
|
+
"@heroku-cli/plugin-local": "^8.0.2-beta.0",
|
|
25
|
+
"@heroku-cli/plugin-oauth-v5": "^8.0.2-beta.0",
|
|
26
|
+
"@heroku-cli/plugin-orgs-v5": "^8.0.2-beta.0",
|
|
27
|
+
"@heroku-cli/plugin-pg-v5": "^8.0.2-beta.0",
|
|
28
|
+
"@heroku-cli/plugin-pipelines": "^8.0.2-beta.0",
|
|
29
|
+
"@heroku-cli/plugin-ps": "^8.0.2-beta.0",
|
|
30
30
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
31
|
-
"@heroku-cli/plugin-redis-v5": "^8.0.0",
|
|
32
|
-
"@heroku-cli/plugin-run": "^8.0.0",
|
|
33
|
-
"@heroku-cli/plugin-spaces": "^8.0.0",
|
|
34
|
-
"@heroku-cli/plugin-status": "^8.0.0",
|
|
35
|
-
"@heroku-cli/plugin-webhooks": "^8.0.0",
|
|
36
|
-
"@oclif/core": "^1.
|
|
31
|
+
"@heroku-cli/plugin-redis-v5": "^8.0.2-beta.0",
|
|
32
|
+
"@heroku-cli/plugin-run": "^8.0.2-beta.0",
|
|
33
|
+
"@heroku-cli/plugin-spaces": "^8.0.2-beta.0",
|
|
34
|
+
"@heroku-cli/plugin-status": "^8.0.2-beta.0",
|
|
35
|
+
"@heroku-cli/plugin-webhooks": "^8.0.2-beta.0",
|
|
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",
|
|
@@ -105,6 +107,7 @@
|
|
|
105
107
|
],
|
|
106
108
|
"commands": "./lib/commands",
|
|
107
109
|
"plugins": [
|
|
110
|
+
"@oclif/plugin-legacy",
|
|
108
111
|
"@heroku-cli/plugin-addons-v5",
|
|
109
112
|
"@heroku-cli/plugin-apps",
|
|
110
113
|
"@heroku-cli/plugin-apps-v5",
|
|
@@ -135,6 +138,7 @@
|
|
|
135
138
|
"@oclif/plugin-not-found",
|
|
136
139
|
"@oclif/plugin-plugins",
|
|
137
140
|
"@oclif/plugin-update",
|
|
141
|
+
"@oclif/plugin-version",
|
|
138
142
|
"@oclif/plugin-warn-if-update-available",
|
|
139
143
|
"@oclif/plugin-which"
|
|
140
144
|
],
|
|
@@ -238,7 +242,7 @@
|
|
|
238
242
|
},
|
|
239
243
|
"update": {
|
|
240
244
|
"node": {
|
|
241
|
-
"version": "
|
|
245
|
+
"version": "16.19.0"
|
|
242
246
|
},
|
|
243
247
|
"s3": {
|
|
244
248
|
"xz": true,
|
|
@@ -278,8 +282,9 @@
|
|
|
278
282
|
"prepack": "yarn run build && oclif manifest",
|
|
279
283
|
"pretest": "tsc -p test --noEmit",
|
|
280
284
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
281
|
-
"posttest": "yarn lint"
|
|
285
|
+
"posttest": "yarn lint",
|
|
286
|
+
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
282
287
|
},
|
|
283
288
|
"types": "lib/index.d.ts",
|
|
284
|
-
"gitHead": "
|
|
289
|
+
"gitHead": "be6dc888eb3f6a118cf34e44d0b393b981734aef"
|
|
285
290
|
}
|