heroku 8.3.1 → 8.3.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 CHANGED
@@ -58,13 +58,13 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
58
58
  * [`heroku members`](docs/members.md) - manage organization members
59
59
  * [`heroku orgs`](docs/orgs.md) - manage organizations
60
60
  * [`heroku pg`](docs/pg.md) - manage postgresql databases
61
- * [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to
61
+ * [`heroku pipelines`](docs/pipelines.md) - manage pipelines
62
62
  * [`heroku plugins`](docs/plugins.md) - List installed plugins.
63
63
  * [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
64
64
  * [`heroku psql`](docs/psql.md) - open a psql shell to the database
65
65
  * [`heroku redis`](docs/redis.md) - manage heroku redis instances
66
66
  * [`heroku regions`](docs/regions.md) - list available regions for deployment
67
- * [`heroku reviewapps`](docs/reviewapps.md) - disable review apps and/or settings on an existing pipeline
67
+ * [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
68
68
  * [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
69
69
  * [`heroku sessions`](docs/sessions.md) - OAuth sessions
70
70
  * [`heroku spaces`](docs/spaces.md) - manage heroku private spaces
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "8.3.1",
2
+ "version": "8.3.2-beta.0",
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.3.1",
4
+ "version": "8.3.2-beta.0",
5
5
  "author": "Jeff Dickey @jdxcode",
6
6
  "bin": "./bin/run",
7
7
  "bugs": "https://github.com/heroku/cli/issues",
@@ -9,8 +9,8 @@
9
9
  "@heroku-cli/color": "1.1.14",
10
10
  "@heroku-cli/command": "^10.0.0",
11
11
  "@heroku-cli/notifications": "^1.2.2",
12
- "@heroku-cli/plugin-addons-v5": "^8.2.0",
13
- "@heroku-cli/plugin-apps-v5": "^8.2.0",
12
+ "@heroku-cli/plugin-addons-v5": "^8.3.2-beta.0",
13
+ "@heroku-cli/plugin-apps-v5": "^8.3.2-beta.0",
14
14
  "@heroku-cli/plugin-certs-v5": "^8.2.0",
15
15
  "@heroku-cli/plugin-ci-v5": "^8.2.0",
16
16
  "@heroku-cli/plugin-container-registry-v5": "^8.2.0",
@@ -19,7 +19,7 @@
19
19
  "@heroku-cli/plugin-ps": "^8.1.7",
20
20
  "@heroku-cli/plugin-ps-exec": "^2.4.0",
21
21
  "@heroku-cli/plugin-redis-v5": "^8.2.0",
22
- "@heroku-cli/plugin-spaces": "^8.2.0",
22
+ "@heroku-cli/plugin-spaces": "^8.3.2-beta.0",
23
23
  "@heroku-cli/schema": "^1.0.25",
24
24
  "@heroku/buildpack-registry": "^1.0.1",
25
25
  "@heroku/eventsource": "^1.0.7",
@@ -234,9 +234,15 @@
234
234
  "description": "space outbound IP rules",
235
235
  "hidden": true
236
236
  },
237
+ "pipelines": {
238
+ "description": "manage pipelines"
239
+ },
237
240
  "ps": {
238
241
  "description": "manage app dynos"
239
242
  },
243
+ "reviewapps": {
244
+ "description": "manage reviewapps in pipelines"
245
+ },
240
246
  "run": {
241
247
  "description": "run a one-off process inside a Heroku dyno"
242
248
  },
@@ -332,5 +338,5 @@
332
338
  "version": "oclif readme --multi && git add README.md ../../docs"
333
339
  },
334
340
  "types": "lib/index.d.ts",
335
- "gitHead": "02ae6d1378876249032413312db4c86c845dbd21"
341
+ "gitHead": "a8c089b18913cb3413ba10b0063267f8a28b6596"
336
342
  }