heroku 7.66.3 → 7.67.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/CHANGELOG.md +16 -0
- package/README.md +9 -4
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [7.67.0](https://github.com/heroku/cli/compare/v7.66.4...v7.67.0) (2022-11-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package heroku
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [7.66.4](https://github.com/heroku/cli/compare/v7.66.3...v7.66.4) (2022-11-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package heroku
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [7.66.3](https://github.com/heroku/cli/compare/v7.66.2...v7.66.3) (2022-11-14)
|
|
7
23
|
|
|
8
24
|
|
package/README.md
CHANGED
|
@@ -80,16 +80,21 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
80
80
|
Developing
|
|
81
81
|
==========
|
|
82
82
|
|
|
83
|
-
This project is built with [lerna](https://lerna.js.org/). The core plugins are located in [./packages](./packages).
|
|
83
|
+
This project is built with [lerna](https://lerna.js.org/). The core plugins are located in [./packages](./packages).
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
After cloning the repo
|
|
86
|
+
1. Run `yarn` to install dependencies
|
|
87
|
+
2. Run `yarn lerna bootstrap` set up Lerna and link the packages together
|
|
88
|
+
- This repo currently uses an older version of Lerna. We recommend using the version specified in the package.json instead of a newer version that you may have installed globally.
|
|
89
|
+
|
|
90
|
+
To execute Heroku CLI commands locally, use `./bin/run <command>`. For example, to run the `heroku apps` command with your local code, run `./bin/run apps` from the root directory.
|
|
86
91
|
|
|
87
92
|
Testing
|
|
88
93
|
=======
|
|
89
94
|
|
|
90
|
-
Run all tests with `lerna run test`.
|
|
95
|
+
Run all tests with `yarn lerna run test`.
|
|
91
96
|
|
|
92
|
-
Run one test, in this case plugin-certs-v5, with `lerna run --scope @heroku-cli/plugin-certs-v5 test`.
|
|
97
|
+
Run one test, in this case plugin-certs-v5, with `yarn lerna run --scope @heroku-cli/plugin-certs-v5 test`.
|
|
93
98
|
|
|
94
99
|
## Debugging
|
|
95
100
|
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"7.
|
|
1
|
+
{"version":"7.67.0","commands":{}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.67.0",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": {
|
|
7
7
|
"heroku": "./bin/run"
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@heroku-cli/color": "1.1.14",
|
|
12
12
|
"@heroku-cli/command": "^8.4.1",
|
|
13
|
-
"@heroku-cli/plugin-addons-v5": "^7.
|
|
13
|
+
"@heroku-cli/plugin-addons-v5": "^7.67.0",
|
|
14
14
|
"@heroku-cli/plugin-apps": "^7.66.3",
|
|
15
|
-
"@heroku-cli/plugin-apps-v5": "^7.
|
|
15
|
+
"@heroku-cli/plugin-apps-v5": "^7.67.0",
|
|
16
16
|
"@heroku-cli/plugin-auth": "^7.66.3",
|
|
17
17
|
"@heroku-cli/plugin-autocomplete": "^7.66.3",
|
|
18
18
|
"@heroku-cli/plugin-buildpacks": "^7.66.3",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@heroku-cli/plugin-ps": "^7.66.3",
|
|
32
32
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
33
33
|
"@heroku-cli/plugin-redis-v5": "^7.66.3",
|
|
34
|
-
"@heroku-cli/plugin-run": "^7.
|
|
34
|
+
"@heroku-cli/plugin-run": "^7.67.0",
|
|
35
35
|
"@heroku-cli/plugin-spaces": "^7.66.3",
|
|
36
36
|
"@heroku-cli/plugin-status": "^7.66.3",
|
|
37
37
|
"@heroku-cli/plugin-webhooks": "^7.66.3",
|
|
@@ -284,5 +284,5 @@
|
|
|
284
284
|
"version": "oclif-dev readme --multi && git add README.md ../../docs"
|
|
285
285
|
},
|
|
286
286
|
"types": "lib/index.d.ts",
|
|
287
|
-
"gitHead": "
|
|
287
|
+
"gitHead": "74b9b556bdee07fbc557314c1cf9332cacb15ac2"
|
|
288
288
|
}
|