Skip to content

Commit

Permalink
v7.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Aug 30, 2018
1 parent c33f518 commit 0c3108f
Show file tree
Hide file tree
Showing 43 changed files with 452 additions and 184 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="7.13.0"></a>
# [7.13.0](https://github.com/heroku/cli/compare/v7.12.6...v7.13.0) (2018-08-30)


### Features

* **buildpacks:** added search, info, and versions commands ([#1000](https://github.com/heroku/cli/issues/1000)) ([c33f518](https://github.com/heroku/cli/commit/c33f518))





<a name="7.12.6"></a>
## [7.12.6](https://github.com/heroku/cli/compare/v7.12.5...v7.12.6) (2018-08-30)

Expand Down
14 changes: 7 additions & 7 deletions docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ALIASES
$ heroku twofactor
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/auth/2fa/index.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/auth/2fa/index.ts)_

## `heroku auth:2fa:disable`

Expand All @@ -43,7 +43,7 @@ EXAMPLES
Disabling 2fa on [email protected]... done
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/auth/2fa/disable.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/auth/2fa/disable.ts)_

## `heroku auth:2fa:generate-recovery-codes`

Expand Down Expand Up @@ -82,7 +82,7 @@ EXAMPLES
f82e7c2a50737494
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/auth/2fa/generate-recovery-codes.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/auth/2fa/generate-recovery-codes.ts)_

## `heroku auth:login`

Expand All @@ -102,7 +102,7 @@ ALIASES
$ heroku login
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/auth/login.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/auth/login.ts)_

## `heroku auth:logout`

Expand All @@ -116,7 +116,7 @@ ALIASES
$ heroku logout
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/auth/logout.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/auth/logout.ts)_

## `heroku auth:token`

Expand All @@ -134,7 +134,7 @@ DESCRIPTION
authorizations:create
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/auth/token.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/auth/token.ts)_

## `heroku auth:whoami`

Expand All @@ -148,4 +148,4 @@ ALIASES
$ heroku whoami
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/auth/whoami.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/auth/whoami.ts)_
2 changes: 1 addition & 1 deletion docs/autocomplete.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ EXAMPLES
$ heroku autocomplete --refresh-cache
```

_See code: [@heroku-cli/plugin-autocomplete](https://github.com/heroku/heroku-cli-autocomplete/blob/v7.12.6/src/commands/autocomplete/index.ts)_
_See code: [@heroku-cli/plugin-autocomplete](https://github.com/heroku/heroku-cli-autocomplete/blob/v7.13.0/src/commands/autocomplete/index.ts)_
104 changes: 79 additions & 25 deletions docs/buildpacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,47 @@
scripts used to compile apps

* [`heroku buildpacks`](#heroku-buildpacks)
* [`heroku buildpacks:add URL`](#heroku-buildpacksadd-url)
* [`heroku buildpacks:add BUILDPACK`](#heroku-buildpacksadd-buildpack)
* [`heroku buildpacks:clear`](#heroku-buildpacksclear)
* [`heroku buildpacks:remove [URL]`](#heroku-buildpacksremove-url)
* [`heroku buildpacks:set URL`](#heroku-buildpacksset-url)
* [`heroku buildpacks:info BUILDPACK`](#heroku-buildpacksinfo-buildpack)
* [`heroku buildpacks:remove [BUILDPACK]`](#heroku-buildpacksremove-buildpack)
* [`heroku buildpacks:search [TERM]`](#heroku-buildpackssearch-term)
* [`heroku buildpacks:set BUILDPACK`](#heroku-buildpacksset-buildpack)
* [`heroku buildpacks:versions BUILDPACK`](#heroku-buildpacksversions-buildpack)

## `heroku buildpacks`

display the buildpack_url(s) for an app
display the buildpacks for an app

```
USAGE
$ heroku buildpacks
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku buildpacks -a myapp
=== myapp Buildpack URL
heroku/ruby
-a, --app=app (required) app to run command against
```

## `heroku buildpacks:add URL`
_See code: [@heroku-cli/plugin-buildpacks](https://github.com/heroku/cli/blob/v7.13.0/src/commands/buildpacks/index.ts)_

## `heroku buildpacks:add BUILDPACK`

add new app buildpack, inserting into list of buildpacks if necessary

```
USAGE
$ heroku buildpacks:add URL
$ heroku buildpacks:add BUILDPACK
ARGUMENTS
BUILDPACK namespace/name of the buildpack
OPTIONS
-a, --app=app (required) app to run command against
-i, --index=index the 1-based index of the URL in the list of URLs
-r, --remote=remote git remote of app to use
EXAMPLES
$ heroku buildpacks:add -i 1 https://github.com/heroku/heroku-buildpack-ruby
```

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

## `heroku buildpacks:clear`

clear all buildpacks set on the app
Expand All @@ -53,37 +54,90 @@ USAGE
$ heroku buildpacks:clear
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
-a, --app=app (required) app to run command against
```

## `heroku buildpacks:remove [URL]`
_See code: [@heroku-cli/plugin-buildpacks](https://github.com/heroku/cli/blob/v7.13.0/src/commands/buildpacks/clear.ts)_

## `heroku buildpacks:info BUILDPACK`

fetch info about a buildpack

```
USAGE
$ heroku buildpacks:info BUILDPACK
ARGUMENTS
BUILDPACK namespace/name of the buildpack
```

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

## `heroku buildpacks:remove [BUILDPACK]`

remove a buildpack set on the app

```
USAGE
$ heroku buildpacks:remove [URL]
$ heroku buildpacks:remove [BUILDPACK]
ARGUMENTS
BUILDPACK namespace/name of the buildpack
OPTIONS
-a, --app=app (required) app to run command against
-i, --index=index the 1-based index of the URL to remove from the list of URLs
-r, --remote=remote git remote of app to use
```

## `heroku buildpacks:set URL`
_See code: [@heroku-cli/plugin-buildpacks](https://github.com/heroku/cli/blob/v7.13.0/src/commands/buildpacks/remove.ts)_

set new app buildpack, overwriting into list of buildpacks if necessary
## `heroku buildpacks:search [TERM]`

search for buildpacks

```
USAGE
$ heroku buildpacks:set URL
$ heroku buildpacks:search [TERM]
ARGUMENTS
TERM search term that searches across name, namespace, and description
OPTIONS
--description=description buildpack description to filter on
--name=name buildpack names to filter on using a comma separated list
--namespace=namespace buildpack namespaces to filter on using a comma separated list
```

_See code: [@heroku-cli/plugin-buildpacks](https://github.com/heroku/cli/blob/v7.13.0/src/commands/buildpacks/search.ts)_

## `heroku buildpacks:set BUILDPACK`

```
USAGE
$ heroku buildpacks:set BUILDPACK
ARGUMENTS
BUILDPACK namespace/name of the buildpack
OPTIONS
-a, --app=app (required) app to run command against
-i, --index=index the 1-based index of the URL in the list of URLs
-r, --remote=remote git remote of app to use
```

_See code: [@heroku-cli/plugin-buildpacks](https://github.com/heroku/cli/blob/v7.13.0/src/commands/buildpacks/set.ts)_

## `heroku buildpacks:versions BUILDPACK`

list versions of a buildpack

EXAMPLES
$ heroku buildpacks:set -i 1 heroku/ruby
```
USAGE
$ heroku buildpacks:versions BUILDPACK
ARGUMENTS
BUILDPACK namespace/name of the buildpack
```

_See code: [@heroku-cli/plugin-buildpacks](https://github.com/heroku/cli/blob/v7.13.0/src/commands/buildpacks/versions.ts)_
10 changes: 5 additions & 5 deletions docs/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXAMPLE
$ heroku ci --app murmuring-headland-14719
```

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

## `heroku ci:config`

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

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

## `heroku ci:last`

Expand All @@ -181,7 +181,7 @@ EXAMPLE
$ heroku ci:last --app murmuring-headland-14719 --node 100
```

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

## `heroku ci:migrate-manifest`

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

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

## `heroku ci:run`

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

_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.12.6/src/commands/ci/run.ts)_
_See code: [@heroku-cli/plugin-ci](https://github.com/heroku/cli/blob/v7.13.0/src/commands/ci/run.ts)_
8 changes: 4 additions & 4 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ OPTIONS
-s, --shell output config vars in shell format
```

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

## `heroku config:edit [KEY]`

Expand Down Expand Up @@ -56,7 +56,7 @@ EXAMPLES
$ VISUAL="atom --wait" heroku config:edit
```

_See code: [@heroku-cli/plugin-config](https://github.com/heroku/cli/blob/v7.12.6/packages/config/src/commands/config/edit.ts)_
_See code: [@heroku-cli/plugin-config](https://github.com/heroku/cli/blob/v7.13.0/packages/config/src/commands/config/edit.ts)_

## `heroku config:get KEY...`

Expand All @@ -76,7 +76,7 @@ EXAMPLES
production
```

_See code: [@heroku-cli/plugin-config](https://github.com/heroku/cli/blob/v7.12.6/packages/config/src/commands/config/get.ts)_
_See code: [@heroku-cli/plugin-config](https://github.com/heroku/cli/blob/v7.13.0/packages/config/src/commands/config/get.ts)_

## `heroku config:set`

Expand Down Expand Up @@ -123,4 +123,4 @@ EXAMPLES
Unsetting RAILS_ENV, RACK_ENV and restarting example... done, v10
```

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

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

## `heroku git:remote`

Expand All @@ -55,4 +55,4 @@ EXAMPLES
$ heroku git:remote --remote heroku-staging -a example
```

_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.12.6/packages/git/src/commands/git/remote.ts)_
_See code: [@heroku-cli/plugin-git](https://github.com/heroku/cli/blob/v7.13.0/packages/git/src/commands/git/remote.ts)_
2 changes: 1 addition & 1 deletion docs/labs.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ OPTIONS
--confirm=confirm
```

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.12.6/packages/auth/src/commands/labs/disable.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.13.0/packages/auth/src/commands/labs/disable.ts)_

## `heroku labs:enable FEATURE`

Expand Down
4 changes: 2 additions & 2 deletions docs/ps.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ OPTIONS
-a, --app=app (required) app to run command against
```

_See code: [@heroku-cli/plugin-ps](https://github.com/heroku/cli/blob/v7.12.6/packages/ps/src/commands/ps/autoscale/disable.ts)_
_See code: [@heroku-cli/plugin-ps](https://github.com/heroku/cli/blob/v7.13.0/packages/ps/src/commands/ps/autoscale/disable.ts)_

## `heroku ps:autoscale:enable`

Expand All @@ -73,7 +73,7 @@ OPTIONS
--p95=p95 desired p95 response time
```

_See code: [@heroku-cli/plugin-ps](https://github.com/heroku/cli/blob/v7.12.6/packages/ps/src/commands/ps/autoscale/enable.ts)_
_See code: [@heroku-cli/plugin-ps](https://github.com/heroku/cli/blob/v7.13.0/packages/ps/src/commands/ps/autoscale/enable.ts)_

## `heroku ps:copy FILE`

Expand Down
2 changes: 1 addition & 1 deletion docs/regions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ OPTIONS
--private show regions for private spaces
```

_See code: [@heroku-cli/plugin-ps](https://github.com/heroku/cli/blob/v7.12.6/packages/ps/src/commands/regions.ts)_
_See code: [@heroku-cli/plugin-ps](https://github.com/heroku/cli/blob/v7.13.0/packages/ps/src/commands/regions.ts)_
2 changes: 1 addition & 1 deletion docs/status.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ OPTIONS
--json output in json format
```

_See code: [@heroku-cli/plugin-status](https://github.com/heroku/cli/blob/v7.12.6/packages/status/src/commands/status.ts)_
_See code: [@heroku-cli/plugin-status](https://github.com/heroku/cli/blob/v7.13.0/packages/status/src/commands/status.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.12.6",
"version": "7.13.0",
"lerna": "2.11.0",
"useWorkspaces": true,
"npmClient": "yarn",
Expand Down
Loading

0 comments on commit 0c3108f

Please sign in to comment.