heroku 7.66.4 → 7.67.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/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.1](https://github.com/heroku/cli/compare/v7.67.0...v7.67.1) (2022-11-30)
7
+
8
+ **Note:** Version bump only for package heroku
9
+
10
+
11
+
12
+
13
+
14
+ # [7.67.0](https://github.com/heroku/cli/compare/v7.66.4...v7.67.0) (2022-11-29)
15
+
16
+ **Note:** Version bump only for package heroku
17
+
18
+
19
+
20
+
21
+
6
22
  ## [7.66.4](https://github.com/heroku/cli/compare/v7.66.3...v7.66.4) (2022-11-16)
7
23
 
8
24
  **Note:** Version bump only for package heroku
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). Run `lerna bootstrap` after cloning the repository to set it up.
83
+ This project is built with [lerna](https://lerna.js.org/). The core plugins are located in [./packages](./packages).
84
84
 
85
- The standard `oclif` `./bin/run` script serves as your entry point to the CLI in your local development environment.
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
 
@@ -1 +1 @@
1
- {"version":"7.66.4","commands":{}}
1
+ {"version":"7.67.1","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.66.4",
4
+ "version": "7.67.1",
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.66.3",
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.66.3",
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.66.3",
34
+ "@heroku-cli/plugin-run": "^7.67.1",
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": "05043cbf13de261a17fe94ac61021f1fabaa3fff"
287
+ "gitHead": "320d69ad37209decff28dbae61416f3ee1b60948"
288
288
  }