Skip to content

Commit

Permalink
release v8.2.0 (#2437)
Browse files Browse the repository at this point in the history
* v8.2.0

* fix: update yarn.lock
  • Loading branch information
ryandagg authored Aug 15, 2023
1 parent 0ae29e6 commit 1875102
Show file tree
Hide file tree
Showing 53 changed files with 453 additions and 77 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.2.0](https://github.com/heroku/cli/compare/v8.1.9...v8.2.0) (2023-08-14)


### Bug Fixes

* build cli for all tests to save time. ([#2436](https://github.com/heroku/cli/issues/2436)) ([c81c801](https://github.com/heroku/cli/commit/c81c801e310738460f3d27d7241bfa2462426dcd))
* monorepo dependency issues - upgrade to yarn 3 ([#2429](https://github.com/heroku/cli/issues/2429)) ([0d7e5ca](https://github.com/heroku/cli/commit/0d7e5ca519799af4352ec973f51b45748699f3a1))
* turns out tslib is actually a runtime dependency, not just dev. ([#2427](https://github.com/heroku/cli/issues/2427)) ([76b3dc3](https://github.com/heroku/cli/commit/76b3dc3829a998c5235879f21b8b3795d1fd2044))
* use correct path for update hooks ([#2426](https://github.com/heroku/cli/issues/2426)) ([e55e00f](https://github.com/heroku/cli/commit/e55e00f920a066af01f1febd697054f812183c92))


### Features

* **cli:** add rollbar ([#2424](https://github.com/heroku/cli/issues/2424)) ([9a52f2f](https://github.com/heroku/cli/commit/9a52f2f8e9c8bf27e0d5c5cf04ca592e61188359))





## [8.1.9](https://github.com/heroku/cli/compare/v8.1.8...v8.1.9) (2023-06-21)

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

_See code: [src/commands/auth/2fa/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/2fa/index.ts)_

## `heroku auth:2fa:disable`

disables 2fa on account
Expand All @@ -45,6 +47,8 @@ EXAMPLES
$ heroku auth:2fa:disable
```

_See code: [src/commands/auth/2fa/disable.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/2fa/disable.ts)_

## `heroku auth:login`

login with your Heroku credentials
Expand All @@ -65,6 +69,8 @@ ALIASES
$ heroku login
```

_See code: [src/commands/auth/login.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/login.ts)_

## `heroku auth:logout`

clears local login credentials and invalidates API session
Expand All @@ -80,6 +86,8 @@ ALIASES
$ heroku logout
```

_See code: [src/commands/auth/logout.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/logout.ts)_

## `heroku auth:token`

outputs current CLI authentication token.
Expand All @@ -97,6 +105,8 @@ DESCRIPTION
authorizations:create
```

_See code: [src/commands/auth/token.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/token.ts)_

## `heroku auth:whoami`

display the current logged in user
Expand All @@ -111,3 +121,5 @@ DESCRIPTION
ALIASES
$ heroku whoami
```

_See code: [src/commands/auth/whoami.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/auth/whoami.ts)_
37 changes: 29 additions & 8 deletions docs/authorizations.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,37 @@ FLAGS
DESCRIPTION
list OAuth authorizations
EXAMPLES
$ heroku authorizations
```

_See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/index.ts)_

## `heroku authorizations:create`

create a new OAuth authorization

```
USAGE
$ heroku authorizations:create [-d <value>] [-s <value>] [-e <value>] [-S] [-j]
$ heroku authorizations:create [-d <value>] [-S] [-j] [-s <value>] [-e <value>]
FLAGS
-S, --short only output token
-d, --description=<value> set a custom authorization description
-d, --description=<value> set a custom authorization
-e, --expires-in=<value> set expiration in seconds (default no expiration)
-j, --json output in json format
-s, --scope=<value> set custom OAuth scopes
DESCRIPTION
create a new OAuth authorization
This creates an authorization with access to your Heroku account.
EXAMPLES
$ heroku authorizations:create --description "For use with Anvil"
```

_See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/create.ts)_

## `heroku authorizations:destroy ID`

revoke OAuth authorization
Expand All @@ -57,10 +66,12 @@ USAGE
DESCRIPTION
revoke OAuth authorization
ALIASES
$ heroku authorizations:destroy
$ heroku authorizations:revoke
$ heroku authorizations:destroy
EXAMPLES
$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb
```

## `heroku authorizations:info ID`
Expand All @@ -78,6 +89,8 @@ DESCRIPTION
show an existing OAuth authorization
```

_See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/info.ts)_

## `heroku authorizations:revoke ID`

revoke OAuth authorization
Expand All @@ -89,12 +102,16 @@ USAGE
DESCRIPTION
revoke OAuth authorization
ALIASES
$ heroku authorizations:destroy
$ heroku authorizations:revoke
$ heroku authorizations:destroy
EXAMPLES
$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb
```

_See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/revoke.ts)_

## `heroku authorizations:rotate ID`

updates an OAuth authorization token
Expand All @@ -107,13 +124,15 @@ DESCRIPTION
updates an OAuth authorization token
```

_See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/rotate.ts)_

## `heroku authorizations:update ID`

updates an OAuth authorization

```
USAGE
$ heroku authorizations:update ID [-d <value>] [--client-id <value>] [--client-secret <value>]
$ heroku authorizations:update ID [-d <value>] [--client-id <value> --client-secret <value>]
FLAGS
-d, --description=<value> set a custom authorization description
Expand All @@ -123,3 +142,5 @@ FLAGS
DESCRIPTION
updates an OAuth authorization
```

_See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/authorizations/update.ts)_
2 changes: 2 additions & 0 deletions docs/autocomplete.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ EXAMPLES
$ heroku autocomplete --refresh-cache
```

_See code: [src/commands/autocomplete/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/autocomplete/index.ts)_
16 changes: 16 additions & 0 deletions docs/buildpacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ DESCRIPTION
display the buildpacks for an app
```

_See code: [src/commands/buildpacks/index.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/index.ts)_

## `heroku buildpacks:add BUILDPACK`

add new app buildpack, inserting into list of buildpacks if necessary
Expand All @@ -48,6 +50,8 @@ DESCRIPTION
add new app buildpack, inserting into list of buildpacks if necessary
```

_See code: [src/commands/buildpacks/add.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/add.ts)_

## `heroku buildpacks:clear`

clear all buildpacks set on the app
Expand All @@ -64,6 +68,8 @@ DESCRIPTION
clear all buildpacks set on the app
```

_See code: [src/commands/buildpacks/clear.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/clear.ts)_

## `heroku buildpacks:info BUILDPACK`

fetch info about a buildpack
Expand All @@ -79,6 +85,8 @@ DESCRIPTION
fetch info about a buildpack
```

_See code: [src/commands/buildpacks/info.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/info.ts)_

## `heroku buildpacks:remove [BUILDPACK]`

remove a buildpack set on the app
Expand All @@ -99,6 +107,8 @@ DESCRIPTION
remove a buildpack set on the app
```

_See code: [src/commands/buildpacks/remove.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/remove.ts)_

## `heroku buildpacks:search [TERM]`

search for buildpacks
Expand All @@ -119,6 +129,8 @@ DESCRIPTION
search for buildpacks
```

_See code: [src/commands/buildpacks/search.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/search.ts)_

## `heroku buildpacks:set BUILDPACK`

```
Expand All @@ -134,6 +146,8 @@ FLAGS
-r, --remote=<value> git remote of app to use
```

_See code: [src/commands/buildpacks/set.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/set.ts)_

## `heroku buildpacks:versions BUILDPACK`

list versions of a buildpack
Expand All @@ -148,3 +162,5 @@ ARGUMENTS
DESCRIPTION
list versions of a buildpack
```

_See code: [src/commands/buildpacks/versions.ts](https://github.com/heroku/cli/blob/v8.2.0/src/commands/buildpacks/versions.ts)_
24 changes: 24 additions & 0 deletions docs/certs.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ DESCRIPTION
list SSL certificates for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/index.js)_

## `heroku certs:add CRT KEY`

add an SSL certificate to an app
Expand All @@ -55,6 +57,8 @@ EXAMPLES
https://help.salesforce.com/s/articleView?id=000333504&type=1
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/add.js)_

## `heroku certs:auto`

show ACM status for an app
Expand All @@ -72,6 +76,8 @@ DESCRIPTION
show ACM status for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/index.js)_

## `heroku certs:auto:disable`

disable ACM for an app
Expand All @@ -88,6 +94,8 @@ DESCRIPTION
disable ACM for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/disable.js)_

## `heroku certs:auto:enable`

enable ACM status for an app
Expand All @@ -105,6 +113,8 @@ DESCRIPTION
enable ACM status for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/enable.js)_

## `heroku certs:auto:refresh`

refresh ACM for an app
Expand All @@ -121,6 +131,8 @@ DESCRIPTION
refresh ACM for an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/auto/refresh.js)_

## `heroku certs:chain`

print an ordered & complete chain for a certificate
Expand All @@ -137,6 +149,8 @@ DESCRIPTION
print an ordered & complete chain for a certificate
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/chain.js)_

## `heroku certs:generate DOMAIN`

generate a key and a CSR or self-signed certificate
Expand Down Expand Up @@ -169,6 +183,8 @@ EXAMPLES
$ heroku certs:generate example.com
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/generate.js)_

## `heroku certs:info`

show certificate information for an SSL certificate
Expand All @@ -188,6 +204,8 @@ DESCRIPTION
show certificate information for an SSL certificate
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/info.js)_

## `heroku certs:key`

print the correct key for the given certificate
Expand All @@ -209,6 +227,8 @@ EXAMPLES
$ heroku certs:key example.com.crt example.com.key
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/key.js)_

## `heroku certs:remove`

remove an SSL certificate from an app
Expand All @@ -227,6 +247,8 @@ DESCRIPTION
remove an SSL certificate from an app
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/remove.js)_

## `heroku certs:update CRT KEY`

update an SSL certificate on an app
Expand All @@ -251,3 +273,5 @@ EXAMPLES
If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:
https://help.salesforce.com/s/articleView?id=000333504&type=1
```

_See code: [@heroku-cli/plugin-certs-v5](https://github.com/heroku/cli/blob/v8.2.0/packages/certs-v5/commands/certs/update.js)_
Loading

0 comments on commit 1875102

Please sign in to comment.