heroku 8.2.0-beta.0 → 8.2.0-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 +5 -6
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -37,18 +37,16 @@ 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
|
|
41
40
|
* [`heroku autocomplete`](docs/autocomplete.md) - display autocomplete installation instructions
|
|
42
41
|
* [`heroku buildpacks`](docs/buildpacks.md) - scripts used to compile apps
|
|
43
42
|
* [`heroku certs`](docs/certs.md) - a topic for the ssl plugin
|
|
44
43
|
* [`heroku ci`](docs/ci.md) - run an application test suite on Heroku
|
|
45
|
-
* [`heroku clients`](docs/clients.md) - OAuth clients on the platform
|
|
46
44
|
* [`heroku config`](docs/config.md) - environment variables of apps
|
|
47
45
|
* [`heroku container`](docs/container.md) - Use containers to build and deploy Heroku apps
|
|
48
46
|
* [`heroku domains`](docs/domains.md) - custom domains for apps
|
|
49
47
|
* [`heroku drains`](docs/drains.md) - forward logs to syslog or HTTPS
|
|
50
48
|
* [`heroku features`](docs/features.md) - add/remove app features
|
|
51
|
-
* [`heroku git`](docs/git.md) -
|
|
49
|
+
* [`heroku git`](docs/git.md) - set git remote and clone Heroku repository
|
|
52
50
|
* [`heroku help`](docs/help.md) - Display help for heroku.
|
|
53
51
|
* [`heroku keys`](docs/keys.md) - add/remove account ssh keys
|
|
54
52
|
* [`heroku labs`](docs/labs.md) - add/remove experimental features
|
|
@@ -56,16 +54,17 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
56
54
|
* [`heroku logs`](docs/logs.md) - display recent log output
|
|
57
55
|
* [`heroku maintenance`](docs/maintenance.md) - enable/disable access to app
|
|
58
56
|
* [`heroku members`](docs/members.md) - manage organization members
|
|
57
|
+
* [`heroku notifications`](docs/notifications.md) - display notifications
|
|
59
58
|
* [`heroku orgs`](docs/orgs.md) - manage organizations
|
|
60
59
|
* [`heroku pg`](docs/pg.md) - manage postgresql databases
|
|
61
|
-
* [`heroku pipelines`](docs/pipelines.md) -
|
|
60
|
+
* [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to
|
|
62
61
|
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
|
|
63
62
|
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
|
|
64
63
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
65
64
|
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
66
|
-
* [`heroku
|
|
65
|
+
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
66
|
+
* [`heroku reviewapps`](docs/reviewapps.md) - disable review apps and/or settings on an existing pipeline
|
|
67
67
|
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
68
|
-
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
|
69
68
|
* [`heroku spaces`](docs/spaces.md) - manage heroku private spaces
|
|
70
69
|
* [`heroku status`](docs/status.md) - display current status of the Heroku platform
|
|
71
70
|
* [`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.1",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
],
|
|
268
268
|
"update": [
|
|
269
269
|
"./lib/hooks/update/plugin-migrate",
|
|
270
|
-
"./lib/hooks/update/
|
|
270
|
+
"./lib/hooks/update/brew",
|
|
271
271
|
"./lib/hooks/update/completions",
|
|
272
272
|
"./lib/hooks/update/tidy",
|
|
273
273
|
"./lib/hooks/recache"
|
|
@@ -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": "3c7876133a3d64d888f3fa43b001ff457b8458e6"
|
|
328
328
|
}
|