heroku 8.2.0-beta.1 → 8.2.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 +4 -0
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -37,10 +37,12 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
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
39
|
* [`heroku auth`](docs/auth.md) - check 2fa status
|
|
40
|
+
* [`heroku authorizations`](docs/authorizations.md) - OAuth authorizations
|
|
40
41
|
* [`heroku autocomplete`](docs/autocomplete.md) - display autocomplete installation instructions
|
|
41
42
|
* [`heroku buildpacks`](docs/buildpacks.md) - scripts used to compile apps
|
|
42
43
|
* [`heroku certs`](docs/certs.md) - a topic for the ssl plugin
|
|
43
44
|
* [`heroku ci`](docs/ci.md) - run an application test suite on Heroku
|
|
45
|
+
* [`heroku clients`](docs/clients.md) - OAuth clients on the platform
|
|
44
46
|
* [`heroku config`](docs/config.md) - environment variables of apps
|
|
45
47
|
* [`heroku container`](docs/container.md) - Use containers to build and deploy Heroku apps
|
|
46
48
|
* [`heroku domains`](docs/domains.md) - custom domains for apps
|
|
@@ -60,11 +62,13 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
60
62
|
* [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to
|
|
61
63
|
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
|
|
62
64
|
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
|
|
65
|
+
* [`heroku psql`](docs/psql.md) - open a psql shell to the database
|
|
63
66
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
64
67
|
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
65
68
|
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
66
69
|
* [`heroku reviewapps`](docs/reviewapps.md) - disable review apps and/or settings on an existing pipeline
|
|
67
70
|
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
71
|
+
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
|
68
72
|
* [`heroku spaces`](docs/spaces.md) - manage heroku private spaces
|
|
69
73
|
* [`heroku status`](docs/status.md) - display current status of the Heroku platform
|
|
70
74
|
* [`heroku teams`](docs/teams.md) - manage teams
|
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.2.0-beta.
|
|
4
|
+
"version": "8.2.0-beta.2",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"shell-quote": "^1.6.1",
|
|
59
59
|
"tmp": "^0.0.33",
|
|
60
60
|
"true-myth": "2.2.3",
|
|
61
|
+
"tslib": "1.14.1",
|
|
61
62
|
"urijs": "^1.19.11",
|
|
62
63
|
"uuid": "3.3.2",
|
|
63
64
|
"valid-url": "^1.0.9",
|
|
@@ -102,7 +103,6 @@
|
|
|
102
103
|
"read-pkg": "^4.0.1",
|
|
103
104
|
"sinon": "^7.2.4",
|
|
104
105
|
"ts-node": "^10.9.1",
|
|
105
|
-
"tslib": "1.14.1",
|
|
106
106
|
"typescript": "4.8.4"
|
|
107
107
|
},
|
|
108
108
|
"engines": {
|
|
@@ -324,5 +324,5 @@
|
|
|
324
324
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
325
325
|
},
|
|
326
326
|
"types": "lib/index.d.ts",
|
|
327
|
-
"gitHead": "
|
|
327
|
+
"gitHead": "225fc4a173dded57598add856478ebeea2403972"
|
|
328
328
|
}
|