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.
Files changed (96) hide show
  1. package/README.md +4 -1
  2. package/lib/commands/apps/create.d.ts +28 -0
  3. package/lib/commands/apps/create.js +194 -0
  4. package/lib/commands/apps/destroy.d.ts +14 -0
  5. package/lib/commands/apps/destroy.js +46 -0
  6. package/lib/commands/apps/errors.d.ts +12 -0
  7. package/lib/commands/apps/errors.js +119 -0
  8. package/lib/commands/apps/favorites/add.d.ts +9 -0
  9. package/lib/commands/apps/favorites/add.js +37 -0
  10. package/lib/commands/apps/favorites/index.d.ts +9 -0
  11. package/lib/commands/apps/favorites/index.js +25 -0
  12. package/lib/commands/apps/favorites/remove.d.ts +9 -0
  13. package/lib/commands/apps/favorites/remove.js +27 -0
  14. package/lib/commands/apps/index.d.ts +16 -0
  15. package/lib/commands/apps/index.js +119 -0
  16. package/lib/commands/apps/info.d.ts +18 -0
  17. package/lib/commands/apps/info.js +163 -0
  18. package/lib/commands/apps/open.d.ts +14 -0
  19. package/lib/commands/apps/open.js +29 -0
  20. package/lib/commands/apps/rename.d.ts +15 -0
  21. package/lib/commands/apps/rename.js +50 -0
  22. package/lib/commands/apps/stacks/index.d.ts +10 -0
  23. package/lib/commands/apps/stacks/index.js +43 -0
  24. package/lib/commands/apps/stacks/set.d.ts +14 -0
  25. package/lib/commands/apps/stacks/set.js +41 -0
  26. package/lib/commands/auth/logout.js +1 -0
  27. package/lib/commands/ci/config/get.d.ts +16 -0
  28. package/lib/commands/ci/config/get.js +37 -0
  29. package/lib/commands/ci/config/index.d.ts +12 -0
  30. package/lib/commands/ci/config/index.js +43 -0
  31. package/lib/commands/ci/config/set.d.ts +12 -0
  32. package/lib/commands/ci/config/set.js +48 -0
  33. package/lib/commands/ci/config/unset.d.ts +13 -0
  34. package/lib/commands/ci/config/unset.js +35 -0
  35. package/lib/commands/ci/debug.d.ts +13 -0
  36. package/lib/commands/ci/debug.js +105 -0
  37. package/lib/commands/ci/index.js +1 -1
  38. package/lib/commands/ci/info.js +1 -1
  39. package/lib/commands/ci/last.js +1 -1
  40. package/lib/commands/ci/migrate-manifest.d.ts +7 -0
  41. package/lib/commands/ci/migrate-manifest.js +74 -0
  42. package/lib/commands/ci/open.d.ts +12 -0
  43. package/lib/commands/ci/open.js +23 -0
  44. package/lib/commands/ci/rerun.js +1 -1
  45. package/lib/commands/ci/run.js +1 -1
  46. package/lib/commands/config/set.d.ts +11 -0
  47. package/lib/commands/config/set.js +59 -0
  48. package/lib/commands/domains/index.d.ts +1 -1
  49. package/lib/commands/drains/add.d.ts +11 -0
  50. package/lib/commands/drains/add.js +22 -0
  51. package/lib/commands/drains/index.d.ts +10 -0
  52. package/lib/commands/drains/index.js +49 -0
  53. package/lib/commands/drains/remove.d.ts +12 -0
  54. package/lib/commands/drains/remove.js +21 -0
  55. package/lib/commands/pipelines/add.js +1 -1
  56. package/lib/commands/pipelines/connect.js +1 -1
  57. package/lib/commands/pipelines/create.js +1 -1
  58. package/lib/commands/pipelines/destroy.js +1 -1
  59. package/lib/commands/pipelines/diff.js +1 -1
  60. package/lib/commands/pipelines/info.js +1 -1
  61. package/lib/commands/pipelines/promote.js +1 -1
  62. package/lib/commands/pipelines/remove.js +1 -1
  63. package/lib/commands/pipelines/rename.js +1 -1
  64. package/lib/commands/pipelines/setup.js +1 -1
  65. package/lib/commands/pipelines/transfer.js +1 -1
  66. package/lib/commands/pipelines/update.js +1 -1
  67. package/lib/lib/{pipelines/api.d.ts → api.d.ts} +10 -5
  68. package/lib/lib/{pipelines/api.js → api.js} +48 -4
  69. package/lib/lib/apps/confirm-app.d.ts +1 -0
  70. package/lib/lib/apps/confirm-app.js +23 -0
  71. package/lib/lib/apps/error_info.d.ts +7 -0
  72. package/lib/lib/apps/error_info.js +185 -0
  73. package/lib/lib/buildpacks/buildpacks.js +3 -4
  74. package/lib/lib/ci/git.d.ts +7 -1
  75. package/lib/lib/ci/git.js +44 -1
  76. package/lib/lib/ci/pipelines.d.ts +3 -3
  77. package/lib/lib/ci/pipelines.js +10 -9
  78. package/lib/lib/ci/test-run.d.ts +1 -0
  79. package/lib/lib/ci/test-run.js +2 -1
  80. package/lib/lib/ci/validate.d.ts +2 -0
  81. package/lib/lib/ci/validate.js +10 -0
  82. package/lib/lib/git/git.d.ts +11 -0
  83. package/lib/lib/git/git.js +38 -0
  84. package/lib/lib/git/push.d.ts +1 -0
  85. package/lib/lib/git/push.js +6 -0
  86. package/lib/lib/pipelines/disambiguate.js +1 -1
  87. package/lib/lib/pipelines/ownership.js +1 -1
  88. package/lib/lib/pipelines/setup/create-apps.d.ts +2 -1
  89. package/lib/lib/pipelines/setup/create-apps.js +1 -1
  90. package/lib/lib/pipelines/setup/poll-app-setups.js +1 -1
  91. package/lib/lib/types/favorites.d.ts +7 -0
  92. package/lib/lib/types/favorites.js +2 -0
  93. package/oclif.manifest.json +879 -11
  94. package/package.json +8 -4
  95. package/lib/lib/buildpacks/push.d.ts +0 -0
  96. 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": "8.7.1",
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": "^8.6.0",
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": "3f5e36901ddf432874f4a6099ee149370599ab41"
347
+ "gitHead": "27e2542808d0c96d050a05fa72b2f5980a6c2107"
344
348
  }
File without changes
@@ -1,4 +0,0 @@
1
- "use strict";
2
- module.exports = function (remote) {
3
- return `git push ${remote || 'heroku'} main`;
4
- };