heroku 9.1.0 → 9.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/lib/commands/addons/create.js +5 -0
- package/lib/commands/authorizations/create.js +1 -5
- package/lib/commands/authorizations/info.js +1 -5
- package/lib/commands/authorizations/revoke.js +1 -5
- package/lib/commands/authorizations/rotate.js +1 -5
- package/lib/commands/authorizations/update.js +1 -5
- package/lib/commands/ci/index.js +1 -1
- package/lib/commands/ci/info.js +1 -1
- package/lib/commands/ci/last.js +1 -1
- package/lib/commands/ci/rerun.js +1 -1
- package/lib/commands/ci/run.d.ts +1 -0
- package/lib/commands/ci/run.js +2 -1
- package/lib/commands/local/run.js +4 -2
- package/lib/commands/pg/backups/schedule.js +6 -12
- package/lib/commands/pg/credentials/rotate.d.ts +1 -0
- package/lib/commands/pg/credentials/rotate.js +1 -0
- package/lib/commands/pg/settings/auto-explain/log-min-duration.d.ts +1 -4
- package/lib/commands/pg/settings/auto-explain/log-min-duration.js +1 -1
- package/lib/commands/pg/settings/log-min-duration-statement.d.ts +1 -4
- package/lib/commands/pg/settings/log-min-duration-statement.js +1 -1
- package/lib/commands/ps/scale.js +0 -22
- package/lib/commands/ps/type.js +0 -22
- package/lib/commands/redis/cli.js +1 -2
- package/lib/commands/run/index.js +2 -1
- package/lib/lib/run/helpers.d.ts +1 -0
- package/lib/lib/run/helpers.js +13 -1
- package/oclif.manifest.json +695 -679
- package/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.2.0-beta.1",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@heroku-cli/color": "2.0.1",
|
|
10
|
-
"@heroku-cli/command": "^11.1
|
|
10
|
+
"@heroku-cli/command": "^11.3.1",
|
|
11
11
|
"@heroku-cli/notifications": "^1.2.4",
|
|
12
|
-
"@heroku-cli/plugin-ps": "^8.1.7",
|
|
13
12
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
14
13
|
"@heroku-cli/schema": "^1.0.25",
|
|
15
14
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
@@ -46,7 +45,7 @@
|
|
|
46
45
|
"execa": "5.1.1",
|
|
47
46
|
"filesize": "^10.1.2",
|
|
48
47
|
"foreman": "^3.0.1",
|
|
49
|
-
"fs-extra": "
|
|
48
|
+
"fs-extra": "^9.1",
|
|
50
49
|
"github-url-to-object": "^4.0.4",
|
|
51
50
|
"glob": "^10.3.10",
|
|
52
51
|
"got": "^11.8.6",
|
|
@@ -113,7 +112,6 @@
|
|
|
113
112
|
"@types/validator": "^10.9.0",
|
|
114
113
|
"@types/write-json-file": "^3.2.1",
|
|
115
114
|
"@types/ws": "^6.0.1",
|
|
116
|
-
"aws-sdk": "^2.421.0",
|
|
117
115
|
"bats": "^1.1.0",
|
|
118
116
|
"chai": "^4.4.1",
|
|
119
117
|
"chai-as-promised": "^7.1.1",
|
|
@@ -375,6 +373,7 @@
|
|
|
375
373
|
"repository": "heroku/cli",
|
|
376
374
|
"scripts": {
|
|
377
375
|
"build": "rm -rf lib && tsc",
|
|
376
|
+
"build:dev": "rm -rf lib && tsc --sourcemap",
|
|
378
377
|
"lint": "eslint . --ext .ts --config ../../.eslintrc --ignore-path ../../.eslintignore-lib",
|
|
379
378
|
"postpublish": "rm -f oclif.manifest.json",
|
|
380
379
|
"prepack": "yarn run build && oclif manifest",
|
|
@@ -389,5 +388,5 @@
|
|
|
389
388
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
390
389
|
},
|
|
391
390
|
"types": "lib/index.d.ts",
|
|
392
|
-
"gitHead": "
|
|
391
|
+
"gitHead": "5964369e5d44ae5bb17162655a2f57d97ba5ae04"
|
|
393
392
|
}
|