heroku 8.2.0-beta.9 → 8.2.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
@@ -56,16 +56,13 @@ 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
60
59
  * [`heroku orgs`](docs/orgs.md) - manage organizations
61
60
  * [`heroku pg`](docs/pg.md) - manage postgresql databases
62
61
  * [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to
63
62
  * [`heroku plugins`](docs/plugins.md) - List installed plugins.
64
63
  * [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
65
- * [`heroku psql`](docs/psql.md) - open a psql shell to the database
66
64
  * [`heroku redis`](docs/redis.md) - manage heroku redis instances
67
65
  * [`heroku regions`](docs/regions.md) - list available regions for deployment
68
- * [`heroku releases`](docs/releases.md) - display the releases for an app
69
66
  * [`heroku reviewapps`](docs/reviewapps.md) - disable review apps and/or settings on an existing pipeline
70
67
  * [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
71
68
  * [`heroku sessions`](docs/sessions.md) - OAuth sessions
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "8.2.0-beta.9",
2
+ "version": "8.2.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.2.0-beta.9",
4
+ "version": "8.2.0",
5
5
  "author": "Jeff Dickey @jdxcode",
6
6
  "bin": "./bin/run",
7
7
  "bugs": "https://github.com/heroku/cli/issues",
@@ -9,17 +9,17 @@
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-beta.3",
13
- "@heroku-cli/plugin-apps-v5": "^8.2.0-beta.3",
14
- "@heroku-cli/plugin-certs-v5": "^8.2.0-beta.3",
15
- "@heroku-cli/plugin-ci-v5": "^8.2.0-beta.3",
16
- "@heroku-cli/plugin-container-registry-v5": "^8.2.0-beta.3",
17
- "@heroku-cli/plugin-orgs-v5": "^8.2.0-beta.3",
18
- "@heroku-cli/plugin-pg-v5": "^8.2.0-beta.3",
12
+ "@heroku-cli/plugin-addons-v5": "^8.2.0",
13
+ "@heroku-cli/plugin-apps-v5": "^8.2.0",
14
+ "@heroku-cli/plugin-certs-v5": "^8.2.0",
15
+ "@heroku-cli/plugin-ci-v5": "^8.2.0",
16
+ "@heroku-cli/plugin-container-registry-v5": "^8.2.0",
17
+ "@heroku-cli/plugin-orgs-v5": "^8.2.0",
18
+ "@heroku-cli/plugin-pg-v5": "^8.2.0",
19
19
  "@heroku-cli/plugin-ps": "^8.1.7",
20
20
  "@heroku-cli/plugin-ps-exec": "^2.4.0",
21
- "@heroku-cli/plugin-redis-v5": "^8.2.0-beta.3",
22
- "@heroku-cli/plugin-spaces": "^8.2.0-beta.3",
21
+ "@heroku-cli/plugin-redis-v5": "^8.2.0",
22
+ "@heroku-cli/plugin-spaces": "^8.2.0",
23
23
  "@heroku-cli/schema": "^1.0.25",
24
24
  "@heroku/buildpack-registry": "^1.0.1",
25
25
  "@heroku/eventsource": "^1.0.7",
@@ -28,7 +28,7 @@
28
28
  "@oclif/plugin-help": "^5",
29
29
  "@oclif/plugin-legacy": "^1.3.0",
30
30
  "@oclif/plugin-not-found": "2.3.16",
31
- "@oclif/plugin-plugins": "2.4.7",
31
+ "@oclif/plugin-plugins": "2.4.3",
32
32
  "@oclif/plugin-update": "3.1.10",
33
33
  "@oclif/plugin-version": "^1.2.1",
34
34
  "@oclif/plugin-warn-if-update-available": "2.0.29",
@@ -315,14 +315,14 @@
315
315
  "build": "rm -rf lib && tsc",
316
316
  "postpublish": "rm -f oclif.manifest.json",
317
317
  "prepack": "yarn run build && oclif manifest",
318
- "pretest": "tsc -p test --noEmit",
319
- "test": "yarn prepack && nyc mocha --forbid-only \"test/**/*.unit.test.ts\"",
320
- "test:acceptance": "mocha --forbid-only \"test/**/*.acceptance.test.ts\" && node ./bin/bats-test-runner",
321
- "test:integration": "mocha --forbid-only \"test/**/*.integration.test.ts\"",
322
- "test:smoke": "mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
318
+ "pretest": "tsc -p test --noEmit && cd ../.. && yarn build",
319
+ "test": "yarn pretest && nyc mocha --forbid-only \"test/**/*.unit.test.ts\" && yarn posttest",
320
+ "test:acceptance": "yarn pretest && mocha --forbid-only \"test/**/*.acceptance.test.ts\" && node ./bin/bats-test-runner",
321
+ "test:integration": "yarn pretest && mocha --forbid-only \"test/**/*.integration.test.ts\"",
322
+ "test:smoke": "yarn pretest && mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
323
323
  "posttest": "yarn lint",
324
324
  "version": "oclif readme --multi && git add README.md ../../docs"
325
325
  },
326
326
  "types": "lib/index.d.ts",
327
- "gitHead": "e1b2063d5b388c9ded94e2aae71314f4c2f6f6c5"
327
+ "gitHead": "1875102f332f215ad9788b5fc117b4a2bd6bbd8c"
328
328
  }