heroku 10.0.0-alpha.2 → 10.0.0-beta.2
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 +17 -0
- package/lib/commands/buildpacks/index.js +9 -3
- package/lib/commands/git/remote.js +1 -1
- package/lib/commands/pipelines/diff.d.ts +1 -1
- package/lib/commands/pipelines/diff.js +24 -14
- package/lib/commands/pipelines/promote.js +1 -1
- package/lib/commands/run/inside.d.ts +5 -2
- package/lib/commands/run/inside.js +17 -11
- package/lib/commands/spaces/create.js +14 -0
- package/lib/commands/telemetry/add.d.ts +2 -3
- package/lib/commands/telemetry/add.js +9 -9
- package/lib/commands/telemetry/update.d.ts +2 -2
- package/lib/commands/telemetry/update.js +5 -5
- package/lib/global_telemetry.js +1 -1
- package/lib/lib/api.d.ts +12 -3
- package/lib/lib/api.js +15 -14
- package/lib/lib/buildpacks/buildpacks.d.ts +2 -4
- package/lib/lib/buildpacks/buildpacks.js +37 -8
- package/lib/lib/pipelines/ownership.d.ts +3 -2
- package/lib/lib/pipelines/render-pipeline.d.ts +2 -1
- package/lib/lib/pipelines/render-pipeline.js +6 -6
- package/oclif.manifest.json +716 -713
- package/package.json +2 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "10.0.0-
|
|
4
|
+
"version": "10.0.0-beta.2",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -76,7 +76,6 @@
|
|
|
76
76
|
"tslib": "1.14.1",
|
|
77
77
|
"tunnel-ssh": "4.1.6",
|
|
78
78
|
"urijs": "^1.19.11",
|
|
79
|
-
"valid-url": "^1.0.9",
|
|
80
79
|
"validator": "^13.7.0",
|
|
81
80
|
"word-wrap": "^1.2.5",
|
|
82
81
|
"ws": "^6.2.2"
|
|
@@ -391,5 +390,5 @@
|
|
|
391
390
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
392
391
|
},
|
|
393
392
|
"types": "lib/index.d.ts",
|
|
394
|
-
"gitHead": "
|
|
393
|
+
"gitHead": "894a01c72314f33c1fa227a97c0e3fe09ebda4e6"
|
|
395
394
|
}
|