heroku 8.7.1 → 9.0.0-alpha.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 +4 -1
- package/lib/commands/apps/create.d.ts +28 -0
- package/lib/commands/apps/create.js +194 -0
- package/lib/commands/apps/destroy.d.ts +14 -0
- package/lib/commands/apps/destroy.js +46 -0
- package/lib/commands/apps/errors.d.ts +12 -0
- package/lib/commands/apps/errors.js +119 -0
- package/lib/commands/apps/favorites/add.d.ts +9 -0
- package/lib/commands/apps/favorites/add.js +37 -0
- package/lib/commands/apps/favorites/index.d.ts +9 -0
- package/lib/commands/apps/favorites/index.js +25 -0
- package/lib/commands/apps/favorites/remove.d.ts +9 -0
- package/lib/commands/apps/favorites/remove.js +27 -0
- package/lib/commands/apps/index.d.ts +16 -0
- package/lib/commands/apps/index.js +119 -0
- package/lib/commands/apps/info.d.ts +18 -0
- package/lib/commands/apps/info.js +163 -0
- package/lib/commands/apps/open.d.ts +14 -0
- package/lib/commands/apps/open.js +29 -0
- package/lib/commands/apps/rename.d.ts +15 -0
- package/lib/commands/apps/rename.js +50 -0
- package/lib/commands/apps/stacks/index.d.ts +10 -0
- package/lib/commands/apps/stacks/index.js +43 -0
- package/lib/commands/apps/stacks/set.d.ts +14 -0
- package/lib/commands/apps/stacks/set.js +41 -0
- package/lib/commands/auth/logout.js +1 -0
- package/lib/commands/ci/config/get.d.ts +16 -0
- package/lib/commands/ci/config/get.js +37 -0
- package/lib/commands/ci/config/index.d.ts +12 -0
- package/lib/commands/ci/config/index.js +43 -0
- package/lib/commands/ci/config/set.d.ts +12 -0
- package/lib/commands/ci/config/set.js +48 -0
- package/lib/commands/ci/config/unset.d.ts +13 -0
- package/lib/commands/ci/config/unset.js +35 -0
- package/lib/commands/ci/debug.d.ts +13 -0
- package/lib/commands/ci/debug.js +105 -0
- 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/migrate-manifest.d.ts +7 -0
- package/lib/commands/ci/migrate-manifest.js +74 -0
- package/lib/commands/ci/open.d.ts +12 -0
- package/lib/commands/ci/open.js +23 -0
- package/lib/commands/ci/rerun.js +1 -1
- package/lib/commands/ci/run.js +1 -1
- package/lib/commands/config/set.d.ts +11 -0
- package/lib/commands/config/set.js +59 -0
- package/lib/commands/domains/index.d.ts +1 -1
- package/lib/commands/drains/add.d.ts +11 -0
- package/lib/commands/drains/add.js +22 -0
- package/lib/commands/drains/index.d.ts +10 -0
- package/lib/commands/drains/index.js +49 -0
- package/lib/commands/drains/remove.d.ts +12 -0
- package/lib/commands/drains/remove.js +21 -0
- package/lib/commands/pipelines/add.js +1 -1
- package/lib/commands/pipelines/connect.js +1 -1
- package/lib/commands/pipelines/create.js +1 -1
- package/lib/commands/pipelines/destroy.js +1 -1
- package/lib/commands/pipelines/diff.js +1 -1
- package/lib/commands/pipelines/info.js +1 -1
- package/lib/commands/pipelines/promote.js +1 -1
- package/lib/commands/pipelines/remove.js +1 -1
- package/lib/commands/pipelines/rename.js +1 -1
- package/lib/commands/pipelines/setup.js +1 -1
- package/lib/commands/pipelines/transfer.js +1 -1
- package/lib/commands/pipelines/update.js +1 -1
- package/lib/lib/{pipelines/api.d.ts → api.d.ts} +10 -5
- package/lib/lib/{pipelines/api.js → api.js} +48 -4
- package/lib/lib/apps/confirm-app.d.ts +1 -0
- package/lib/lib/apps/confirm-app.js +23 -0
- package/lib/lib/apps/error_info.d.ts +7 -0
- package/lib/lib/apps/error_info.js +185 -0
- package/lib/lib/buildpacks/buildpacks.js +3 -4
- package/lib/lib/ci/git.d.ts +7 -1
- package/lib/lib/ci/git.js +44 -1
- package/lib/lib/ci/pipelines.d.ts +3 -3
- package/lib/lib/ci/pipelines.js +10 -9
- package/lib/lib/ci/test-run.d.ts +1 -0
- package/lib/lib/ci/test-run.js +2 -1
- package/lib/lib/ci/validate.d.ts +2 -0
- package/lib/lib/ci/validate.js +10 -0
- package/lib/lib/git/git.d.ts +11 -0
- package/lib/lib/git/git.js +38 -0
- package/lib/lib/git/push.d.ts +1 -0
- package/lib/lib/git/push.js +6 -0
- package/lib/lib/pipelines/disambiguate.js +1 -1
- package/lib/lib/pipelines/ownership.js +1 -1
- package/lib/lib/pipelines/setup/create-apps.d.ts +2 -1
- package/lib/lib/pipelines/setup/create-apps.js +1 -1
- package/lib/lib/pipelines/setup/poll-app-setups.js +1 -1
- package/lib/lib/types/favorites.d.ts +7 -0
- package/lib/lib/types/favorites.js +2 -0
- package/oclif.manifest.json +879 -11
- package/package.json +8 -4
- package/lib/lib/buildpacks/push.d.ts +0 -0
- package/lib/lib/buildpacks/push.js +0 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "9.0.0-alpha.1",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@heroku-cli/plugin-pg-v5": "^8.7.0",
|
|
20
20
|
"@heroku-cli/plugin-ps": "^8.1.7",
|
|
21
21
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
22
|
-
"@heroku-cli/plugin-redis-v5": "^
|
|
22
|
+
"@heroku-cli/plugin-redis-v5": "^9.0.0-alpha.0",
|
|
23
23
|
"@heroku-cli/plugin-run": "8.1.4",
|
|
24
24
|
"@heroku-cli/plugin-spaces": "^8.7.1",
|
|
25
25
|
"@heroku-cli/schema": "^1.0.25",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"debug": "4.1.1",
|
|
51
51
|
"edit-string": "^1.1.6",
|
|
52
52
|
"execa": "5.1.1",
|
|
53
|
+
"filesize": "^4.0.0",
|
|
53
54
|
"foreman": "^3.0.1",
|
|
54
55
|
"fs-extra": "7.0.1",
|
|
55
56
|
"github-url-to-object": "^4.0.4",
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
"heroku-cli-util": "^8.0.12",
|
|
58
59
|
"http-call": "5.3.0",
|
|
59
60
|
"inquirer": "^7.3.0",
|
|
61
|
+
"js-yaml": "^4.0.8",
|
|
60
62
|
"lodash": "^4.17.11",
|
|
61
63
|
"netrc-parser": "3.1.6",
|
|
62
64
|
"node-fetch": "^2.6.7",
|
|
@@ -65,6 +67,7 @@
|
|
|
65
67
|
"semver": "5.6.0",
|
|
66
68
|
"shell-escape": "^0.2.0",
|
|
67
69
|
"shell-quote": "^1.6.1",
|
|
70
|
+
"strip-ansi": "^6",
|
|
68
71
|
"tmp": "^0.0.33",
|
|
69
72
|
"true-myth": "2.2.3",
|
|
70
73
|
"tslib": "1.14.1",
|
|
@@ -84,6 +87,7 @@
|
|
|
84
87
|
"@types/glob": "^7.1.1",
|
|
85
88
|
"@types/got": "^9.6.7",
|
|
86
89
|
"@types/inquirer": "7.3.0",
|
|
90
|
+
"@types/js-yaml": "^4.0.8",
|
|
87
91
|
"@types/lodash": "^4.14.123",
|
|
88
92
|
"@types/mocha": "^5.2.6",
|
|
89
93
|
"@types/nock": "^9.3.1",
|
|
@@ -111,6 +115,7 @@
|
|
|
111
115
|
"qqjs": "0.3.11",
|
|
112
116
|
"read-pkg": "^4.0.1",
|
|
113
117
|
"sinon": "^7.2.4",
|
|
118
|
+
"strip-ansi": "6.0.1",
|
|
114
119
|
"ts-node": "^10.9.1",
|
|
115
120
|
"typescript": "4.8.4"
|
|
116
121
|
},
|
|
@@ -146,7 +151,6 @@
|
|
|
146
151
|
"@heroku-cli/plugin-addons-v5",
|
|
147
152
|
"@heroku-cli/plugin-apps-v5",
|
|
148
153
|
"@heroku-cli/plugin-certs-v5",
|
|
149
|
-
"@heroku-cli/plugin-ci-v5",
|
|
150
154
|
"@heroku-cli/plugin-container-registry-v5",
|
|
151
155
|
"@heroku-cli/plugin-orgs-v5",
|
|
152
156
|
"@heroku-cli/plugin-pg-v5",
|
|
@@ -340,5 +344,5 @@
|
|
|
340
344
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
341
345
|
},
|
|
342
346
|
"types": "lib/index.d.ts",
|
|
343
|
-
"gitHead": "
|
|
347
|
+
"gitHead": "27e2542808d0c96d050a05fa72b2f5980a6c2107"
|
|
344
348
|
}
|
|
File without changes
|