Skip to content

Commit

Permalink
v7.47.12
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetanley committed Feb 3, 2021
1 parent 36e9665 commit 081ccc6
Show file tree
Hide file tree
Showing 14 changed files with 87 additions and 55 deletions.
8 changes: 8 additions & 0 deletions 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.47.12](https://github.com/heroku/cli/compare/v7.47.11...v7.47.12) (2021-02-03)

**Note:** Version bump only for package heroku





## [7.47.11](https://github.com/heroku/cli/compare/v7.47.10...v7.47.11) (2021-01-22)

**Note:** Version bump only for package heroku
Expand Down
12 changes: 6 additions & 6 deletions docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ALIASES
$ heroku twofactor
```

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

## `heroku auth:2fa:disable`

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

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

## `heroku auth:login`

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

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

## `heroku auth:logout`

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

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

## `heroku auth:token`

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

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

## `heroku auth:whoami`

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

_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/whoami.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/whoami.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.47.10/packages/auth/src/commands/labs/disable.ts)_
_See code: [@heroku-cli/plugin-auth](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/labs/disable.ts)_

## `heroku labs:enable FEATURE`

Expand Down
30 changes: 15 additions & 15 deletions docs/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXAMPLE
$ heroku pipelines
```

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

## `heroku pipelines:add PIPELINE`

Expand All @@ -59,7 +59,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.47.2/src/commands/pipelines/add.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.47.12/src/commands/pipelines/add.ts)_

## `heroku pipelines:connect NAME`

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

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

## `heroku pipelines:create [NAME]`

'create a new pipeline
create a new pipeline

```
USAGE
Expand All @@ -109,7 +109,7 @@ EXAMPLES
$ heroku pipelines:create my-pipeline -a my-app-staging
```

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

## `heroku pipelines:destroy PIPELINE`

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

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

## `heroku pipelines:diff`

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

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

## `heroku pipelines:info PIPELINE`

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

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

## `heroku pipelines:open PIPELINE`

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

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

## `heroku pipelines:promote`

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

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

## `heroku pipelines:remove`

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

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

## `heroku pipelines:rename PIPELINE NAME`

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

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

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

Expand All @@ -258,7 +258,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.47.2/src/commands/pipelines/setup.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.47.12/src/commands/pipelines/setup.ts)_

## `heroku pipelines:transfer OWNER`

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

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

## `heroku pipelines:update`

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

_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.47.2/src/commands/pipelines/update.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.47.12/src/commands/pipelines/update.ts)_
4 changes: 2 additions & 2 deletions docs/reviewapps.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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.47.2/src/commands/reviewapps/disable.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.47.12/src/commands/reviewapps/disable.ts)_

## `heroku reviewapps:enable`

Expand All @@ -48,4 +48,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.47.2/src/commands/reviewapps/enable.ts)_
_See code: [@heroku-cli/plugin-pipelines](https://github.com/heroku/cli/blob/v7.47.12/src/commands/reviewapps/enable.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.47.11",
"version": "7.47.12",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
8 changes: 8 additions & 0 deletions packages/auth/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.47.12](https://github.com/heroku/cli/compare/v7.47.11...v7.47.12) (2021-02-03)

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





## [7.47.10](https://github.com/heroku/cli/compare/v7.47.7...v7.47.10) (2021-01-21)

**Note:** Version bump only for package @heroku-cli/plugin-auth
Expand Down
14 changes: 7 additions & 7 deletions packages/auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ALIASES
$ heroku twofactor
```

_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/2fa/index.ts)_
_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/2fa/index.ts)_

## `heroku auth:2fa:disable`

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

_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/2fa/disable.ts)_
_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/2fa/disable.ts)_

## `heroku auth:login`

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

_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/login.ts)_
_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/login.ts)_

## `heroku auth:logout`

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

_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/logout.ts)_
_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/logout.ts)_

## `heroku auth:token`

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

_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/token.ts)_
_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/token.ts)_

## `heroku auth:whoami`

Expand All @@ -120,7 +120,7 @@ ALIASES
$ heroku whoami
```

_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/auth/whoami.ts)_
_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/auth/whoami.ts)_

## `heroku labs:disable [FEATURE]`

Expand All @@ -136,5 +136,5 @@ OPTIONS
--confirm=confirm
```

_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v7.47.10/packages/auth/src/commands/labs/disable.ts)_
_See code: [src/commands/labs/disable.ts](https://github.com/heroku/cli/blob/v7.47.12/packages/auth/src/commands/labs/disable.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-auth",
"description": "auth core plugin for Heroku CLI",
"version": "7.47.10",
"version": "7.47.12",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/heroku/cli/issues",
"dependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/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.47.12](https://github.com/heroku/cli/compare/v7.47.11...v7.47.12) (2021-02-03)

**Note:** Version bump only for package heroku





## [7.47.11](https://github.com/heroku/cli/compare/v7.47.10...v7.47.11) (2021-01-22)

**Note:** Version bump only for package heroku
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "heroku",
"description": "CLI to interact with Heroku",
"version": "7.47.11",
"version": "7.47.12",
"author": "Jeff Dickey @jdxcode",
"bin": {
"heroku": "./bin/run"
Expand All @@ -13,7 +13,7 @@
"@heroku-cli/plugin-addons-v5": "^7.47.10",
"@heroku-cli/plugin-apps": "^7.47.10",
"@heroku-cli/plugin-apps-v5": "^7.47.11",
"@heroku-cli/plugin-auth": "^7.47.10",
"@heroku-cli/plugin-auth": "^7.47.12",
"@heroku-cli/plugin-autocomplete": "^7.43.0",
"@heroku-cli/plugin-buildpacks": "^7.43.0",
"@heroku-cli/plugin-certs": "^7.43.0",
Expand All @@ -27,7 +27,7 @@
"@heroku-cli/plugin-oauth-v5": "^7.47.10",
"@heroku-cli/plugin-orgs-v5": "^7.43.0",
"@heroku-cli/plugin-pg-v5": "^7.47.10",
"@heroku-cli/plugin-pipelines": "^7.47.2",
"@heroku-cli/plugin-pipelines": "^7.47.12",
"@heroku-cli/plugin-ps": "^7.43.0",
"@heroku-cli/plugin-ps-exec": "2.3.8",
"@heroku-cli/plugin-redis-v5": "^7.47.10",
Expand Down
8 changes: 8 additions & 0 deletions packages/pipelines/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.47.12](https://github.com/heroku/cli/compare/v7.47.11...v7.47.12) (2021-02-03)

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





## [7.47.2](https://github.com/heroku/cli/compare/v7.47.1...v7.47.2) (2020-11-11)

**Note:** Version bump only for package @heroku-cli/plugin-pipelines
Expand Down
Loading

0 comments on commit 081ccc6

Please sign in to comment.