Skip to content

Commit

Permalink
v7.61.0 (#2028)
Browse files Browse the repository at this point in the history
  • Loading branch information
saracope committed Aug 3, 2022
1 parent cbfdb0c commit 104e4b2
Show file tree
Hide file tree
Showing 30 changed files with 439 additions and 133 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03)


### Bug Fixes

* upgrade @oclif/command from 1.5.18 to 1.8.0 ([#1890](https://github.com/heroku/cli/issues/1890)) ([297531c](https://github.com/heroku/cli/commit/297531cabc2474ddb025f9b952d10bb5345cf11d))
* upgrade @oclif/command from 1.8.0 to 1.8.16 ([#2026](https://github.com/heroku/cli/issues/2026)) ([cbfdb0c](https://github.com/heroku/cli/commit/cbfdb0c8303d6ed752681203b8f6491a55397b6c))
* upgrade @oclif/plugin-plugins from 1.7.9 to 1.10.1 ([#1889](https://github.com/heroku/cli/issues/1889)) ([2a135cc](https://github.com/heroku/cli/commit/2a135cc931d714aa9d739b953d6ed056ce215ef2))
* upgrade @oclif/plugin-update from 1.3.9 to 1.5.0 ([#1892](https://github.com/heroku/cli/issues/1892)) ([ad3c97c](https://github.com/heroku/cli/commit/ad3c97c0a7d16a14d8b50f3f2f3d4bf3a70a662b))





## [7.60.2](https://github.com/heroku/cli/compare/v7.60.1...v7.60.2) (2022-04-27)

**Note:** Version bump only for package heroku
Expand Down
2 changes: 0 additions & 2 deletions docs/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ OPTIONS
--json output in json format
--region=region specify region for the app to run in
--space=space the private space to create the app in
--ssh-git use SSH git protocol for local git remote
EXAMPLES
$ heroku apps:create
Expand Down Expand Up @@ -310,7 +309,6 @@ USAGE
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
--ssh-git use ssh git protocol instead of https
DESCRIPTION
This will locally update the git remote if it is set to the old app.
Expand Down
10 changes: 5 additions & 5 deletions docs/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ EXAMPLE
$ heroku ci --app murmuring-headland-14719
```

_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/index.ts)_
_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/index.ts)_

## `heroku ci:config`

Expand Down Expand Up @@ -206,7 +206,7 @@ EXAMPLE
$ heroku ci:info 1288 --app murmuring-headland-14719
```

_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/info.ts)_
_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/info.ts)_

## `heroku ci:last`

Expand All @@ -227,7 +227,7 @@ EXAMPLE
$ heroku ci:last --pipeline=my-pipeline --node 100
```

_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/last.ts)_
_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/last.ts)_

## `heroku ci:migrate-manifest`

Expand Down Expand Up @@ -302,7 +302,7 @@ EXAMPLE
$ heroku ci:rerun 985 --app murmuring-headland-14719
```

_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/rerun.ts)_
_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/rerun.ts)_

## `heroku ci:run`

Expand All @@ -322,4 +322,4 @@ EXAMPLE
$ heroku ci:run --app murmuring-headland-14719
```

_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.60.0/packages/ci/src/commands/ci/run.ts)_
_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.61.0/packages/ci/src/commands/ci/run.ts)_
4 changes: 2 additions & 2 deletions docs/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ EXAMPLES
...
```

_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.60.0/packages/git/src/commands/git/clone.ts)_
_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.61.0/packages/git/src/commands/git/clone.ts)_

## `heroku git:remote`

Expand Down Expand Up @@ -59,4 +59,4 @@ EXAMPLES
$ heroku git:remote --remote heroku-staging -a example
```

_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.60.0/packages/git/src/commands/git/remote.ts)_
_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.61.0/packages/git/src/commands/git/remote.ts)_
28 changes: 14 additions & 14 deletions docs/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ EXAMPLE
$ heroku pipelines
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/index.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/index.ts)_

## `heroku pipelines:add PIPELINE`

Expand Down Expand Up @@ -65,7 +65,7 @@ EXAMPLE
$ heroku pipelines:add my-pipeline -a my-app -s production
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/add.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/add.ts)_

## `heroku pipelines:connect NAME`

Expand All @@ -87,7 +87,7 @@ EXAMPLE
$ heroku pipelines:connect my-pipeline -r githuborg/reponame
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/connect.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/connect.ts)_

## `heroku pipelines:create [NAME]`

Expand Down Expand Up @@ -123,7 +123,7 @@ EXAMPLES
$ heroku pipelines:create my-pipeline -a my-app-staging
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/create.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/create.ts)_

## `heroku pipelines:destroy PIPELINE`

Expand All @@ -142,7 +142,7 @@ EXAMPLE
$ heroku pipelines:destroy my-pipeline
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/destroy.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/destroy.ts)_

## `heroku pipelines:diff`

Expand All @@ -162,7 +162,7 @@ EXAMPLE
$ heroku pipelines:diff -a my-app-staging
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/diff.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/diff.ts)_

## `heroku pipelines:info PIPELINE`

Expand All @@ -184,7 +184,7 @@ EXAMPLE
$ heroku pipelines:info my-pipeline
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/info.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/info.ts)_

## `heroku pipelines:open PIPELINE`

Expand All @@ -203,7 +203,7 @@ EXAMPLE
$ heroku pipelines:open my-pipeline
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/open.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/open.ts)_

## `heroku pipelines:promote`

Expand All @@ -224,7 +224,7 @@ EXAMPLE
$ heroku pipelines:promote -a my-app-staging
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/promote.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/promote.ts)_

## `heroku pipelines:remove`

Expand All @@ -244,7 +244,7 @@ EXAMPLE
$ heroku pipelines:remove -a my-app
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/remove.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/remove.ts)_

## `heroku pipelines:rename PIPELINE NAME`

Expand All @@ -264,7 +264,7 @@ EXAMPLE
$ heroku pipelines:rename my-pipeline new-pipeline-name
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/rename.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/rename.ts)_

## `heroku pipelines:setup [NAME] [REPO]`

Expand All @@ -288,7 +288,7 @@ EXAMPLE
$ heroku pipelines:setup my-pipeline githuborg/reponame -t my-team
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/setup.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/setup.ts)_

## `heroku pipelines:transfer OWNER`

Expand All @@ -312,7 +312,7 @@ EXAMPLES
$ heroku pipelines:transfer admin-team -p my-pipeline
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/transfer.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/transfer.ts)_

## `heroku pipelines:update`

Expand All @@ -333,4 +333,4 @@ EXAMPLE
$ heroku pipelines:update -s staging -a my-app
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/pipelines/update.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/pipelines/update.ts)_
34 changes: 29 additions & 5 deletions docs/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
list installed plugins

* [`heroku plugins`](#heroku-plugins)
* [`heroku plugins:inspect PLUGIN...`](#heroku-pluginsinspect-plugin)
* [`heroku plugins:install PLUGIN...`](#heroku-pluginsinstall-plugin)
* [`heroku plugins:link PLUGIN`](#heroku-pluginslink-plugin)
* [`heroku plugins:uninstall PLUGIN...`](#heroku-pluginsuninstall-plugin)
Expand All @@ -26,7 +27,30 @@ EXAMPLE
$ heroku plugins
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/index.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/index.ts)_

## `heroku plugins:inspect PLUGIN...`

displays installation properties of a plugin

```
displays installation properties of a plugin
USAGE
$ heroku plugins:inspect PLUGIN...
ARGUMENTS
PLUGIN [default: .] plugin to inspect
OPTIONS
-h, --help show CLI help
-v, --verbose
EXAMPLE
$ heroku plugins:inspect myplugin
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/inspect.ts)_

## `heroku plugins:install PLUGIN...`

Expand Down Expand Up @@ -70,7 +94,7 @@ EXAMPLES
$ heroku plugins:install someuser/someplugin
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/install.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/install.ts)_

## `heroku plugins:link PLUGIN`

Expand Down Expand Up @@ -103,7 +127,7 @@ EXAMPLE
$ heroku plugins:link myplugin
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/link.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/link.ts)_

## `heroku plugins:uninstall PLUGIN...`

Expand All @@ -127,7 +151,7 @@ ALIASES
$ heroku plugins:remove
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/uninstall.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/uninstall.ts)_

## `heroku plugins:update`

Expand All @@ -144,4 +168,4 @@ OPTIONS
-v, --verbose
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.7.9/src/commands/plugins/update.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/update.ts)_
4 changes: 2 additions & 2 deletions docs/reviewapps.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ EXAMPLE
$ heroku reviewapps:disable -p my-pipeline -a my-app --no-autodeploy
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/reviewapps/disable.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/reviewapps/disable.ts)_

## `heroku reviewapps:enable`

Expand All @@ -52,4 +52,4 @@ EXAMPLE
$ heroku reviewapps:enable -p my-pipeline -a my-app --autodeploy --autodestroy
```

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.54.0/src/commands/reviewapps/enable.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.61.0/src/commands/reviewapps/enable.ts)_
5 changes: 4 additions & 1 deletion docs/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ update the <%= config.bin %> CLI
USAGE
$ heroku update [CHANNEL]
OPTIONS
--from-local interactively choose an already installed version
```

_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v1.3.9/src/commands/update.ts)_
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v1.5.0/src/commands/update.ts)_
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.60.2",
"version": "7.61.0",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
8 changes: 8 additions & 0 deletions packages/addons-v5/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03)

**Note:** Version bump only for package @heroku-cli/plugin-addons-v5





# [7.54.0](https://github.com/heroku/cli/compare/v7.47.10...v7.54.0) (2021-05-18)


Expand Down
2 changes: 1 addition & 1 deletion packages/addons-v5/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-addons-v5",
"description": "`heroku addons:*` commands",
"version": "7.54.0",
"version": "7.61.0",
"author": "Bo Jeanes @bjeanes",
"bugs": "https://github.com/heroku/cli/issues",
"cli-engine": {
Expand Down
11 changes: 11 additions & 0 deletions packages/apps-v5/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.61.0](https://github.com/heroku/cli/compare/v7.60.2...v7.61.0) (2022-08-03)


### Features

* remove git ssh ([#2018](https://github.com/heroku/cli/issues/2018)) ([cabb90f](https://github.com/heroku/cli/commit/cabb90f802cee31059d62c8b4c813452fd78a6f1))





## [7.60.2](https://github.com/heroku/cli/compare/v7.60.1...v7.60.2) (2022-04-27)


Expand Down
4 changes: 1 addition & 3 deletions packages/apps-v5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $ npm install -g @heroku-cli/plugin-apps-v5
$ heroku COMMAND
running command...
$ heroku (-v|--version|version)
@heroku-cli/plugin-apps-v5/7.60.2 darwin-x64 node-v14.18.0
@heroku-cli/plugin-apps-v5/7.61.0 darwin-x64 node-v16.14.0
$ heroku --help [COMMAND]
USAGE
$ heroku COMMAND
Expand Down Expand Up @@ -116,7 +116,6 @@ OPTIONS
--json output in json format
--region=region specify region for the app to run in
--space=space the private space to create the app in
--ssh-git use SSH git protocol for local git remote
EXAMPLES
$ heroku apps:create
Expand Down Expand Up @@ -272,7 +271,6 @@ USAGE
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
--ssh-git use ssh git protocol instead of https
DESCRIPTION
This will locally update the git remote if it is set to the old app.
Expand Down
2 changes: 1 addition & 1 deletion packages/apps-v5/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-apps-v5",
"description": "Heroku CLI plugin to manage apps.",
"version": "7.60.2",
"version": "7.61.0",
"author": "Jeff Dickey (@jdxcode)",
"bugs": "https://github.com/heroku/cli/issues",
"cli-engine": {
Expand Down
Loading

0 comments on commit 104e4b2

Please sign in to comment.