Skip to content

Commit

Permalink
v8.1.8 (#2389)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwhitfield3 authored Jun 14, 2023
1 parent 4393059 commit 70bfdbb
Show file tree
Hide file tree
Showing 26 changed files with 138 additions and 66 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.

## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01)

**Note:** Version bump only for package heroku
Expand Down
4 changes: 2 additions & 2 deletions docs/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,9 @@ DESCRIPTION
EXAMPLES
$ heroku open -a myapp
# opens https://myapp-xxxxxxxxxxxx.herokuapp.com
# opens https://myapp.herokuapp.com
$ heroku open -a myapp /foo
# opens https://myapp-xxxxxxxxxxxx.herokuapp.com/foo
# opens https://myapp.herokuapp.com/foo
```

## `heroku apps:rename NEWNAME`
Expand Down
2 changes: 1 addition & 1 deletion docs/domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ DESCRIPTION
EXAMPLES
$ heroku domains
=== example Heroku Domain
example-xxxxxxxxxxxx.herokuapp.com
example.herokuapp.com
=== example Custom Domains
Domain Name DNS Record Type DNS Target
www.example.com CNAME www.example.herokudns.com
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.1.7",
"version": "8.1.8",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
8 changes: 8 additions & 0 deletions packages/apps-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.

## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01)

**Note:** Version bump only for package @heroku-cli/plugin-apps-v5
Expand Down
6 changes: 3 additions & 3 deletions packages/apps-v5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $ npm install -g @heroku-cli/plugin-apps-v5
$ heroku COMMAND
running command...
$ heroku (--version)
@heroku-cli/plugin-apps-v5/8.1.7 darwin-x64 node-v16.19.0
@heroku-cli/plugin-apps-v5/8.1.8 darwin-x64 node-v16.19.0
$ heroku --help [COMMAND]
USAGE
$ heroku COMMAND
Expand Down Expand Up @@ -273,9 +273,9 @@ DESCRIPTION
EXAMPLES
$ heroku open -a myapp
# opens https://myapp-xxxxxxxxxxxx.herokuapp.com
# opens https://myapp.herokuapp.com
$ heroku open -a myapp /foo
# opens https://myapp-xxxxxxxxxxxx.herokuapp.com/foo
# opens https://myapp.herokuapp.com/foo
```

## `heroku apps:rename NEWNAME`
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": "8.1.7",
"version": "8.1.8",
"author": "Jeff Dickey (@jdxcode)",
"bugs": "https://github.com/heroku/cli/issues",
"cli-engine": {
Expand Down
8 changes: 8 additions & 0 deletions packages/apps/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.

## [8.1.8](https://github.com/heroku/heroku-cli-plugin-apps/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.7](https://github.com/heroku/heroku-cli-plugin-apps/compare/v8.1.4...v8.1.7) (2023-06-01)

**Note:** Version bump only for package @heroku-cli/plugin-apps
Expand Down
18 changes: 9 additions & 9 deletions packages/apps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ npm install -g @heroku-cli/plugin-apps
$ heroku COMMAND
running command...
$ heroku (--version|-v)
@heroku-cli/plugin-apps/8.1.7 darwin-x64 node-v16.19.0
@heroku-cli/plugin-apps/8.1.8 darwin-x64 node-v16.19.0
$ heroku --help [COMMAND]
USAGE
$ heroku COMMAND
Expand Down Expand Up @@ -64,15 +64,15 @@ DESCRIPTION
EXAMPLES
$ heroku domains
=== example Heroku Domain
example-xxxxxxxxxxxx.herokuapp.com
example.herokuapp.com
=== example Custom Domains
Domain Name DNS Record Type DNS Target
www.example.com CNAME www.example.herokudns.com
$ heroku domains --filter 'Domain Name=www.example.com'
```

_See code: [src/commands/domains/index.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.7/src/commands/domains/index.ts)_
_See code: [src/commands/domains/index.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.8/src/commands/domains/index.ts)_

## `heroku domains:add HOSTNAME`

Expand All @@ -97,7 +97,7 @@ EXAMPLES
$ heroku domains:add www.example.com
```

_See code: [src/commands/domains/add.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.7/src/commands/domains/add.ts)_
_See code: [src/commands/domains/add.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.8/src/commands/domains/add.ts)_

## `heroku domains:clear`

Expand All @@ -119,7 +119,7 @@ EXAMPLES
$ heroku domains:clear
```

_See code: [src/commands/domains/clear.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.7/src/commands/domains/clear.ts)_
_See code: [src/commands/domains/clear.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.8/src/commands/domains/clear.ts)_

## `heroku domains:info HOSTNAME`

Expand All @@ -141,7 +141,7 @@ EXAMPLES
$ heroku domains:info www.example.com
```

_See code: [src/commands/domains/info.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.7/src/commands/domains/info.ts)_
_See code: [src/commands/domains/info.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.8/src/commands/domains/info.ts)_

## `heroku domains:remove HOSTNAME`

Expand All @@ -163,7 +163,7 @@ EXAMPLES
$ heroku domains:remove www.example.com
```

_See code: [src/commands/domains/remove.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.7/src/commands/domains/remove.ts)_
_See code: [src/commands/domains/remove.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.8/src/commands/domains/remove.ts)_

## `heroku domains:update [HOSTNAME]`

Expand All @@ -186,7 +186,7 @@ EXAMPLES
$ heroku domains:update www.example.com --cert mycert
```

_See code: [src/commands/domains/update.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.7/src/commands/domains/update.ts)_
_See code: [src/commands/domains/update.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.8/src/commands/domains/update.ts)_

## `heroku domains:wait [HOSTNAME]`

Expand All @@ -205,5 +205,5 @@ DESCRIPTION
wait for domain to be active for an app
```

_See code: [src/commands/domains/wait.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.7/src/commands/domains/wait.ts)_
_See code: [src/commands/domains/wait.ts](https://github.com/heroku/heroku-cli-plugin-apps/blob/v8.1.8/src/commands/domains/wait.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/apps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroku-cli/plugin-apps",
"version": "8.1.7",
"version": "8.1.8",
"author": "Brett @brettgoulder",
"bugs": "https://github.com/heroku/heroku-cli-plugin-apps/issues",
"dependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/ci-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.

## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01)

**Note:** Version bump only for package @heroku-cli/plugin-ci-v5
Expand Down
2 changes: 1 addition & 1 deletion packages/ci-v5/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-ci-v5",
"description": "Heroku CLI plugin for Heroku CI",
"version": "8.1.7",
"version": "8.1.8",
"author": "Andrew Appleton, Gudmundur Bjarni Olafsson, Max Beizer, Ransom Briggs",
"bugs": "https://github.com/heroku/cli/issues",
"cli-engine": {
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.

## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01)

**Note:** Version bump only for package heroku
Expand Down
14 changes: 7 additions & 7 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"name": "heroku",
"description": "CLI to interact with Heroku",
"version": "8.1.7",
"version": "8.1.8",
"author": "Jeff Dickey @jdxcode",
"bin": "./bin/run",
"bugs": "https://github.com/heroku/cli/issues",
"dependencies": {
"@heroku-cli/color": "1.1.14",
"@heroku-cli/command": "^9.0.2",
"@heroku-cli/plugin-addons-v5": "^8.1.7",
"@heroku-cli/plugin-apps": "^8.1.7",
"@heroku-cli/plugin-apps-v5": "^8.1.7",
"@heroku-cli/plugin-apps": "^8.1.8",
"@heroku-cli/plugin-apps-v5": "^8.1.8",
"@heroku-cli/plugin-auth": "^8.1.7",
"@heroku-cli/plugin-autocomplete": "^8.1.7",
"@heroku-cli/plugin-buildpacks": "^8.1.7",
"@heroku-cli/plugin-certs": "^8.1.7",
"@heroku-cli/plugin-certs-v5": "^8.1.7",
"@heroku-cli/plugin-ci": "^8.1.7",
"@heroku-cli/plugin-ci-v5": "^8.1.7",
"@heroku-cli/plugin-ci-v5": "^8.1.8",
"@heroku-cli/plugin-config": "^8.1.7",
"@heroku-cli/plugin-container-registry-v5": "^8.1.7",
"@heroku-cli/plugin-git": "^8.1.7",
"@heroku-cli/plugin-local": "^8.1.4",
"@heroku-cli/plugin-oauth-v5": "^8.1.4",
"@heroku-cli/plugin-git": "^8.1.8",
"@heroku-cli/plugin-local": "^8.1.8",
"@heroku-cli/plugin-oauth-v5": "^8.1.8",
"@heroku-cli/plugin-orgs-v5": "^8.1.4",
"@heroku-cli/plugin-pg-v5": "^8.1.7",
"@heroku-cli/plugin-pipelines": "^8.1.7",
Expand Down
8 changes: 8 additions & 0 deletions packages/git/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.

## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.7](https://github.com/heroku/cli/compare/v8.1.4...v8.1.7) (2023-06-01)

**Note:** Version bump only for package @heroku-cli/plugin-git
Expand Down
6 changes: 3 additions & 3 deletions packages/git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ npm install -g @heroku-cli/plugin-git
$ oclif-example COMMAND
running command...
$ oclif-example (--version|-v)
@heroku-cli/plugin-git/8.1.7 darwin-x64 node-v16.19.0
@heroku-cli/plugin-git/8.1.8 darwin-x64 node-v16.19.0
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
Expand Down Expand Up @@ -57,7 +57,7 @@ EXAMPLES
...
```

_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v8.1.7/packages/git/src/commands/git/clone.ts)_
_See code: [src/commands/git/clone.ts](https://github.com/heroku/cli/blob/v8.1.8/packages/git/src/commands/git/clone.ts)_

## `oclif-example git:remote`

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

_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v8.1.7/packages/git/src/commands/git/remote.ts)_
_See code: [src/commands/git/remote.ts](https://github.com/heroku/cli/blob/v8.1.8/packages/git/src/commands/git/remote.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/git/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-git",
"description": "Heroku CLI plugin to manage local git repos.",
"version": "8.1.7",
"version": "8.1.8",
"author": "Jeff Dickey (@jdxcode)",
"bugs": "https://github.com/heroku/cli/issues",
"dependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/local/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.

## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.4](https://github.com/heroku/cli/compare/v8.1.3...v8.1.4) (2023-05-24)

**Note:** Version bump only for package @heroku-cli/plugin-local
Expand Down
8 changes: 4 additions & 4 deletions packages/local/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $ npm install -g @heroku-cli/plugin-local
$ heroku COMMAND
running command...
$ heroku (--version|-v)
@heroku-cli/plugin-local/8.1.4 darwin-x64 node-v16.19.0
@heroku-cli/plugin-local/8.1.8 darwin-x64 node-v16.19.0
$ heroku --help [COMMAND]
USAGE
$ heroku COMMAND
Expand Down Expand Up @@ -62,7 +62,7 @@ EXAMPLES
$ heroku local web=1,worker=2
```

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

## `heroku local:run`

Expand All @@ -83,7 +83,7 @@ EXAMPLES
$ heroku local:run bin/migrate
```

_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v8.1.4/src/commands/local/run.ts)_
_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v8.1.8/src/commands/local/run.ts)_

## `heroku local:start [PROCESSNAME]`

Expand Down Expand Up @@ -124,5 +124,5 @@ DESCRIPTION
display node-foreman version
```

_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v8.1.4/src/commands/local/version.ts)_
_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v8.1.8/src/commands/local/version.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/local/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-local",
"description": "run heroku apps locally",
"version": "8.1.4",
"version": "8.1.8",
"author": "Chad Carbert @chadian",
"bugs": "https://github.com/heroku/cli/issues",
"dependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/oauth-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.

## [8.1.8](https://github.com/heroku/cli/compare/v8.1.7...v8.1.8) (2023-06-14)

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





## [8.1.4](https://github.com/heroku/cli/compare/v8.1.3...v8.1.4) (2023-05-24)

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

0 comments on commit 70bfdbb

Please sign in to comment.