heroku 8.2.0-beta.0 → 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 CHANGED
@@ -48,7 +48,7 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
48
48
  * [`heroku domains`](docs/domains.md) - custom domains for apps
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
- * [`heroku git`](docs/git.md) - manage local git repository for app
51
+ * [`heroku git`](docs/git.md) - set git remote and clone Heroku repository
52
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
@@ -56,14 +56,17 @@ 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
- * [`heroku pipelines`](docs/pipelines.md) - manage pipelines
62
+ * [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to
62
63
  * [`heroku plugins`](docs/plugins.md) - List installed plugins.
63
64
  * [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
65
+ * [`heroku psql`](docs/psql.md) - open a psql shell to the database
64
66
  * [`heroku redis`](docs/redis.md) - manage heroku redis instances
65
67
  * [`heroku regions`](docs/regions.md) - list available regions for deployment
66
- * [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
68
+ * [`heroku releases`](docs/releases.md) - display the releases for an app
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
68
71
  * [`heroku sessions`](docs/sessions.md) - OAuth sessions
69
72
  * [`heroku spaces`](docs/spaces.md) - manage heroku private spaces
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "8.2.0-beta.0",
2
+ "version": "8.2.0-beta.2",
3
3
  "commands": {
4
4
  "console": {
5
5
  "id": "console",
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.0",
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": {
@@ -267,7 +267,7 @@
267
267
  ],
268
268
  "update": [
269
269
  "./lib/hooks/update/plugin-migrate",
270
- "./lib/hooks/update/b",
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": "638b83d9c152bc261c730559c47b232d52b44493"
327
+ "gitHead": "225fc4a173dded57598add856478ebeea2403972"
328
328
  }