heroku 10.2.0 → 10.3.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 +1 -1
- package/lib/commands/buildpacks/index.js +12 -3
- package/lib/commands/pg/outliers.js +21 -20
- package/lib/commands/pipelines/create.js +5 -3
- package/lib/commands/redis/credentials.js +1 -1
- package/lib/commands/redis/stats-reset.js +1 -1
- package/lib/commands/redis/wait.js +1 -1
- package/lib/commands/spaces/create.js +1 -1
- package/lib/commands/telemetry/index.js +1 -1
- package/lib/lib/api.d.ts +2 -1
- package/lib/lib/api.js +2 -2
- package/lib/lib/redis/api.d.ts +1 -1
- package/lib/lib/redis/api.js +2 -2
- package/oclif.manifest.json +998 -997
- package/package.json +6 -5
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.
|
|
4
|
+
"version": "10.3.0",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@heroku-cli/color": "2.0.1",
|
|
10
10
|
"@heroku-cli/command": "^11.5.0",
|
|
11
11
|
"@heroku-cli/notifications": "^1.2.4",
|
|
12
|
-
"@heroku-cli/plugin-ps-exec": "2.6.
|
|
12
|
+
"@heroku-cli/plugin-ps-exec": "2.6.2",
|
|
13
13
|
"@heroku-cli/schema": "^1.0.25",
|
|
14
14
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
15
15
|
"@heroku/eventsource": "^1.0.7",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"shell-quote": "^1.8.1",
|
|
67
67
|
"smooth-progress": "^1.1.0",
|
|
68
68
|
"sparkline": "^0.2.0",
|
|
69
|
-
"ssh2": "^1.
|
|
69
|
+
"ssh2": "^1.16.0",
|
|
70
70
|
"stdout-stderr": "^0.1.13",
|
|
71
71
|
"strftime": "^0.10.0",
|
|
72
72
|
"strip-ansi": "^6",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"@types/shell-escape": "^0.2.0",
|
|
104
104
|
"@types/shell-quote": "^1.7.5",
|
|
105
105
|
"@types/sinon": "^17.0.3",
|
|
106
|
-
"@types/ssh2": "^1.15.
|
|
106
|
+
"@types/ssh2": "^1.15.4",
|
|
107
107
|
"@types/std-mocks": "^1.0.4",
|
|
108
108
|
"@types/strftime": "^0.9.8",
|
|
109
109
|
"@types/supports-color": "^8.1.3",
|
|
@@ -368,6 +368,7 @@
|
|
|
368
368
|
"heroku-pipelines": null,
|
|
369
369
|
"heroku-ps-wait": null,
|
|
370
370
|
"heroku-redis": null,
|
|
371
|
+
"heroku-repo": "@heroku-cli/plugin-heroku-repo",
|
|
371
372
|
"heroku-skynet-cli": "@heroku/skynet",
|
|
372
373
|
"heroku-splunk": "@heroku/splunk",
|
|
373
374
|
"heroku-sudo": "@heroku/sudo",
|
|
@@ -396,5 +397,5 @@
|
|
|
396
397
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
397
398
|
},
|
|
398
399
|
"types": "lib/index.d.ts",
|
|
399
|
-
"gitHead": "
|
|
400
|
+
"gitHead": "7556b06e19da422a58d178168a1791f0fb279b9d"
|
|
400
401
|
}
|