heroku 8.0.6 → 8.1.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/file.js +1 -1
- package/lib/hooks/update/plugin-migrate.js +0 -2
- package/oclif.manifest.json +1 -1
- package/package.json +22 -22
package/lib/file.js
CHANGED
|
@@ -43,7 +43,7 @@ async function removeEmptyDirs(dir) {
|
|
|
43
43
|
throw error;
|
|
44
44
|
}
|
|
45
45
|
const dirs = files.filter(f => f.stat.isDirectory()).map(f => f.path);
|
|
46
|
-
// eslint-disable-next-line
|
|
46
|
+
// eslint-disable-next-line unicorn/no-array-callback-reference
|
|
47
47
|
for (const p of dirs.map(removeEmptyDirs))
|
|
48
48
|
await p;
|
|
49
49
|
files = await ls(dir);
|
|
@@ -31,7 +31,6 @@ const migrate = async function () {
|
|
|
31
31
|
const { manifest } = await fs.readJSON(p);
|
|
32
32
|
for (const plugin of Object.keys(manifest.plugins)) {
|
|
33
33
|
process.stderr.write(`heroku-cli: migrating ${plugin}\n`);
|
|
34
|
-
// eslint-disable-next-line no-await-in-loop
|
|
35
34
|
await exec('heroku', ['plugins:install', plugin]);
|
|
36
35
|
}
|
|
37
36
|
}
|
|
@@ -45,7 +44,6 @@ const migrate = async function () {
|
|
|
45
44
|
const { manifest } = await fs.readJSON(path.join(pluginsDir, 'link.json'));
|
|
46
45
|
for (const { root } of Object.values(manifest.plugins)) {
|
|
47
46
|
process.stderr.write(`heroku-cli: migrating ${root}\n`);
|
|
48
|
-
// eslint-disable-next-line no-await-in-loop
|
|
49
47
|
await exec('heroku', ['plugins:link', root]);
|
|
50
48
|
}
|
|
51
49
|
}
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.1.1",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@heroku-cli/color": "1.1.14",
|
|
10
10
|
"@heroku-cli/command": "^9.0.2",
|
|
11
|
-
"@heroku-cli/plugin-addons-v5": "^8.0
|
|
12
|
-
"@heroku-cli/plugin-apps": "^8.0
|
|
11
|
+
"@heroku-cli/plugin-addons-v5": "^8.1.0",
|
|
12
|
+
"@heroku-cli/plugin-apps": "^8.1.0",
|
|
13
13
|
"@heroku-cli/plugin-apps-v5": "^8.0.5",
|
|
14
14
|
"@heroku-cli/plugin-auth": "^8.0.6",
|
|
15
15
|
"@heroku-cli/plugin-autocomplete": "^8.0.6",
|
|
16
|
-
"@heroku-cli/plugin-buildpacks": "^8.0
|
|
17
|
-
"@heroku-cli/plugin-certs": "^8.0
|
|
18
|
-
"@heroku-cli/plugin-certs-v5": "^8.0
|
|
19
|
-
"@heroku-cli/plugin-ci": "^8.0
|
|
20
|
-
"@heroku-cli/plugin-ci-v5": "^8.0
|
|
21
|
-
"@heroku-cli/plugin-config": "^8.0
|
|
22
|
-
"@heroku-cli/plugin-container-registry-v5": "^8.0
|
|
23
|
-
"@heroku-cli/plugin-git": "^8.0
|
|
24
|
-
"@heroku-cli/plugin-local": "^8.0
|
|
25
|
-
"@heroku-cli/plugin-oauth-v5": "^8.0
|
|
26
|
-
"@heroku-cli/plugin-orgs-v5": "^8.0
|
|
27
|
-
"@heroku-cli/plugin-pg-v5": "^8.0
|
|
28
|
-
"@heroku-cli/plugin-pipelines": "^8.0
|
|
29
|
-
"@heroku-cli/plugin-ps": "^8.0
|
|
16
|
+
"@heroku-cli/plugin-buildpacks": "^8.1.0",
|
|
17
|
+
"@heroku-cli/plugin-certs": "^8.1.0",
|
|
18
|
+
"@heroku-cli/plugin-certs-v5": "^8.1.0",
|
|
19
|
+
"@heroku-cli/plugin-ci": "^8.1.0",
|
|
20
|
+
"@heroku-cli/plugin-ci-v5": "^8.1.0",
|
|
21
|
+
"@heroku-cli/plugin-config": "^8.1.0",
|
|
22
|
+
"@heroku-cli/plugin-container-registry-v5": "^8.1.0",
|
|
23
|
+
"@heroku-cli/plugin-git": "^8.1.0",
|
|
24
|
+
"@heroku-cli/plugin-local": "^8.1.0",
|
|
25
|
+
"@heroku-cli/plugin-oauth-v5": "^8.1.0",
|
|
26
|
+
"@heroku-cli/plugin-orgs-v5": "^8.1.0",
|
|
27
|
+
"@heroku-cli/plugin-pg-v5": "^8.1.0",
|
|
28
|
+
"@heroku-cli/plugin-pipelines": "^8.1.0",
|
|
29
|
+
"@heroku-cli/plugin-ps": "^8.1.0",
|
|
30
30
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
31
31
|
"@heroku-cli/plugin-redis-v5": "^8.0.5",
|
|
32
|
-
"@heroku-cli/plugin-run": "^8.0
|
|
33
|
-
"@heroku-cli/plugin-spaces": "^8.0
|
|
34
|
-
"@heroku-cli/plugin-status": "^8.0
|
|
32
|
+
"@heroku-cli/plugin-run": "^8.1.0",
|
|
33
|
+
"@heroku-cli/plugin-spaces": "^8.1.0",
|
|
34
|
+
"@heroku-cli/plugin-status": "^8.1.0",
|
|
35
35
|
"@heroku-cli/plugin-webhooks": "^8.0.6",
|
|
36
36
|
"@oclif/core": "^1.26.2",
|
|
37
37
|
"@oclif/plugin-commands": "2.2.2",
|
|
38
38
|
"@oclif/plugin-help": "^5",
|
|
39
39
|
"@oclif/plugin-legacy": "^1.3.0",
|
|
40
40
|
"@oclif/plugin-not-found": "2.3.16",
|
|
41
|
-
"@oclif/plugin-plugins": "2.4.
|
|
41
|
+
"@oclif/plugin-plugins": "2.4.7",
|
|
42
42
|
"@oclif/plugin-update": "3.1.10",
|
|
43
43
|
"@oclif/plugin-version": "^1.2.1",
|
|
44
44
|
"@oclif/plugin-warn-if-update-available": "2.0.29",
|
|
@@ -285,5 +285,5 @@
|
|
|
285
285
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
286
286
|
},
|
|
287
287
|
"types": "lib/index.d.ts",
|
|
288
|
-
"gitHead": "
|
|
288
|
+
"gitHead": "61f79bc9e768cf1be86ae3ea9de35d3828c95484"
|
|
289
289
|
}
|