Skip to content

Commit

Permalink
Merge branch 'main' into eb/update-10.0-alpha-12-6
Browse files Browse the repository at this point in the history
  • Loading branch information
eablack committed Dec 6, 2024
2 parents b44fcf8 + 1aaf605 commit 16618f5
Show file tree
Hide file tree
Showing 43 changed files with 284 additions and 368 deletions.
41 changes: 2 additions & 39 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [10.0.0-beta.0](https://github.com/heroku/cli/compare/v9.5.0...v10.0.0-beta.0) (2024-11-19)
## [9.5.1](https://github.com/heroku/cli/compare/v9.5.0...v9.5.1) (2024-12-05)


### Bug Fixes

* bug with telemetry:add ([#3094](https://github.com/heroku/cli/issues/3094)) ([df31ab2](https://github.com/heroku/cli/commit/df31ab2d729fa1f9908f5098a78482d8d37f0bc4))


### Features

* **cli:** Add Fir support to 'pipelines:diff' ([#3093](https://github.com/heroku/cli/issues/3093)) ([60b509d](https://github.com/heroku/cli/commit/60b509dc062733699e891debb14a0d7c6b8f8621))



# [10.0.0-alpha.2](https://github.com/heroku/cli/compare/v9.4.0...v10.0.0-alpha.2) (2024-11-13)


### Features

* add fir-specific error message for autoscale:enable ([#3069](https://github.com/heroku/cli/issues/3069)) ([19a222f](https://github.com/heroku/cli/commit/19a222fe88fc9a489f1f35a2f4060fb0fc513420))
* update plugin-ps-exec to latest beta ([#3087](https://github.com/heroku/cli/issues/3087)) ([6d4b2a4](https://github.com/heroku/cli/commit/6d4b2a4d29165fda015b527d2bf59069551e53cd))



# [10.0.0-alpha.1](https://github.com/heroku/cli/compare/v10.0.0-alpha.0...v10.0.0-alpha.1) (2024-11-06)



# [10.0.0-alpha.0](https://github.com/heroku/cli/compare/v9.3.2...v10.0.0-alpha.0) (2024-10-25)


### Features

* add basic flags, logic, and tests for telemetry:add ([adeb986](https://github.com/heroku/cli/commit/adeb98613886789a6b818e80f126da66ec43fbf8))
* add endpoint and transport flags to telemetry:add ([a32765d](https://github.com/heroku/cli/commit/a32765d5481aa0a2d15eb2ac6aa72a08381253e8))
* add generation column to spaces command ([#3029](https://github.com/heroku/cli/issues/3029)) ([79c17fa](https://github.com/heroku/cli/commit/79c17fa06fac52ac1f790e7851928233ff4ea937))
* add generation column to spaces renderInfo command ([bec18a8](https://github.com/heroku/cli/commit/bec18a811df89a36420b2a83e46d83f16e1e715e))
* Add telemetry index command to list telemetry drains ([#3031](https://github.com/heroku/cli/issues/3031)) ([e51affb](https://github.com/heroku/cli/commit/e51affbcca6ec6f5e7f628397f294126b0c4f03b))
* **cli:** Update node version to 20 ([#2989](https://github.com/heroku/cli/issues/2989)) ([fece1bc](https://github.com/heroku/cli/commit/fece1bc105d46f3b3969bd524f74854112b17b99))
* **cli:** Updates to `logs` command for Fir ([#3046](https://github.com/heroku/cli/issues/3046)) ([3f7d253](https://github.com/heroku/cli/commit/3f7d253ab525d79a12bf484fabcadc53e5b1fb29))
* separate calls for app and space drains and update tests ([2005912](https://github.com/heroku/cli/commit/2005912516d69e59d9469a7578f7ab5b55f44090))
* update spaces:info and spaces:wait to use fir API ([a087692](https://github.com/heroku/cli/commit/a087692894595522384773737f3a5d958e346ac5))
* **git:remote:** update example text to reflect staging app ([#3095](https://github.com/heroku/cli/issues/3095)) ([d4ce1ba](https://github.com/heroku/cli/commit/d4ce1ba422539a8a6a029eca4413700535327785))





# [10.0.0-alpha.2](https://github.com/heroku/cli/compare/v10.0.0-alpha.1...v10.0.0-alpha.2) (2024-11-12)
# [9.5.0](https://github.com/heroku/cli/compare/v9.4.0...v9.5.0) (2024-11-13)


Expand Down
8 changes: 4 additions & 4 deletions docs/access.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ DESCRIPTION
list who has access to an app
```

_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/access/index.ts)_
_See code: [src/commands/access/index.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/access/index.ts)_

## `heroku access:add EMAIL`

Expand All @@ -52,7 +52,7 @@ EXAMPLES
$ heroku access:add [email protected] --app APP --permissions deploy,manage,operate # permissions must be comma separated
```

_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/access/add.ts)_
_See code: [src/commands/access/add.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/access/add.ts)_

## `heroku access:remove`

Expand All @@ -73,7 +73,7 @@ EXAMPLES
$ heroku access:remove [email protected] --app APP
```

_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/access/remove.ts)_
_See code: [src/commands/access/remove.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/access/remove.ts)_

## `heroku access:update EMAIL`

Expand All @@ -95,4 +95,4 @@ DESCRIPTION
update existing collaborators on an team app
```

_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/access/update.ts)_
_See code: [src/commands/access/update.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/access/update.ts)_
26 changes: 13 additions & 13 deletions docs/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ EXAMPLES
$ heroku addons --app acme-inc-www
```

_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/index.ts)_
_See code: [src/commands/addons/index.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/index.ts)_

## `heroku addons:attach ADDON_NAME`

Expand All @@ -72,7 +72,7 @@ DESCRIPTION
attach an existing add-on resource to an app
```

_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/attach.ts)_
_See code: [src/commands/addons/attach.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/attach.ts)_

## `heroku addons:create SERVICE:PLAN`

Expand Down Expand Up @@ -107,7 +107,7 @@ EXAMPLES
$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE
```

_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/create.ts)_
_See code: [src/commands/addons/create.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/create.ts)_

## `heroku addons:destroy ADDONNAME`

Expand All @@ -134,7 +134,7 @@ EXAMPLES
addons:destroy [ADDON]... [flags]
```

_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/destroy.ts)_
_See code: [src/commands/addons/destroy.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/destroy.ts)_

## `heroku addons:detach ATTACHMENT_NAME`

Expand All @@ -155,7 +155,7 @@ DESCRIPTION
detach an existing add-on resource from an app
```

_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/detach.ts)_
_See code: [src/commands/addons/detach.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/detach.ts)_

## `heroku addons:docs ADDON`

Expand All @@ -177,7 +177,7 @@ DESCRIPTION
open an add-on's Dev Center documentation in your browser
```

_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/docs.ts)_
_See code: [src/commands/addons/docs.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/docs.ts)_

## `heroku addons:downgrade ADDON [PLAN]`

Expand Down Expand Up @@ -234,7 +234,7 @@ DESCRIPTION
show detailed add-on resource and attachment information
```

_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/info.ts)_
_See code: [src/commands/addons/info.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/info.ts)_

## `heroku addons:open ADDON`

Expand All @@ -256,7 +256,7 @@ DESCRIPTION
open an add-on's dashboard in your browser
```

_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/open.ts)_
_See code: [src/commands/addons/open.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/open.ts)_

## `heroku addons:plans SERVICE`

Expand All @@ -276,7 +276,7 @@ DESCRIPTION
list all available plans for an add-on service
```

_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/plans.ts)_
_See code: [src/commands/addons/plans.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/plans.ts)_

## `heroku addons:rename ADDON_NAME NEW_NAME`

Expand All @@ -294,7 +294,7 @@ DESCRIPTION
rename an add-on
```

_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/rename.ts)_
_See code: [src/commands/addons/rename.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/rename.ts)_

## `heroku addons:services`

Expand All @@ -311,7 +311,7 @@ DESCRIPTION
list all available add-on services
```

_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/services.ts)_
_See code: [src/commands/addons/services.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/services.ts)_

## `heroku addons:upgrade ADDON [PLAN]`

Expand Down Expand Up @@ -349,7 +349,7 @@ EXAMPLES
$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2
```

_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/upgrade.ts)_
_See code: [src/commands/addons/upgrade.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/upgrade.ts)_

## `heroku addons:wait [ADDON]`

Expand All @@ -371,4 +371,4 @@ DESCRIPTION
show provisioning status of the add-ons on the app
```

_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/addons/wait.ts)_
_See code: [src/commands/addons/wait.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/addons/wait.ts)_
34 changes: 17 additions & 17 deletions docs/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ EXAMPLES
$ heroku apps
```

_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/index.ts)_
_See code: [src/commands/apps/index.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/index.ts)_

## `heroku apps:create [APP]`

Expand Down Expand Up @@ -89,7 +89,7 @@ EXAMPLES
$ heroku apps:create --region eu
```

_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/create.ts)_
_See code: [src/commands/apps/create.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/create.ts)_

## `heroku apps:destroy`

Expand All @@ -108,7 +108,7 @@ DESCRIPTION
permanently destroy an app
```

_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/destroy.ts)_
_See code: [src/commands/apps/destroy.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/destroy.ts)_

## `heroku apps:errors`

Expand All @@ -130,7 +130,7 @@ DESCRIPTION
view app errors
```

_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/errors.ts)_
_See code: [src/commands/apps/errors.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/errors.ts)_

## `heroku apps:favorites`

Expand All @@ -147,7 +147,7 @@ DESCRIPTION
list favorited apps
```

_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/favorites/index.ts)_
_See code: [src/commands/apps/favorites/index.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/favorites/index.ts)_

## `heroku apps:favorites:add`

Expand All @@ -165,7 +165,7 @@ DESCRIPTION
favorites an app
```

_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/favorites/add.ts)_
_See code: [src/commands/apps/favorites/add.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/favorites/add.ts)_

## `heroku apps:favorites:remove`

Expand All @@ -183,7 +183,7 @@ DESCRIPTION
unfavorites an app
```

_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/favorites/remove.ts)_
_See code: [src/commands/apps/favorites/remove.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/favorites/remove.ts)_

## `heroku apps:info`

Expand All @@ -208,7 +208,7 @@ EXAMPLES
$ heroku apps:info --shell
```

_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/info.ts)_
_See code: [src/commands/apps/info.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/info.ts)_

## `heroku apps:join`

Expand All @@ -229,7 +229,7 @@ ALIASES
$ heroku join
```

_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/join.ts)_
_See code: [src/commands/apps/join.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/join.ts)_

## `heroku apps:leave`

Expand All @@ -253,7 +253,7 @@ EXAMPLES
$ heroku apps:leave -a APP
```

_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/leave.ts)_
_See code: [src/commands/apps/leave.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/leave.ts)_

## `heroku apps:lock`

Expand All @@ -274,7 +274,7 @@ ALIASES
$ heroku lock
```

_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/lock.ts)_
_See code: [src/commands/apps/lock.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/lock.ts)_

## `heroku apps:open [PATH]`

Expand All @@ -300,7 +300,7 @@ EXAMPLES
$ heroku open -a myapp /foo
```

_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/open.ts)_
_See code: [src/commands/apps/open.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/open.ts)_

## `heroku apps:rename NEWNAME`

Expand All @@ -324,7 +324,7 @@ EXAMPLES
$ heroku apps:rename --app oldname newname
```

_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/rename.ts)_
_See code: [src/commands/apps/rename.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/rename.ts)_

## `heroku apps:stacks`

Expand All @@ -342,7 +342,7 @@ DESCRIPTION
show the list of available stacks
```

_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/stacks/index.ts)_
_See code: [src/commands/apps/stacks/index.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/stacks/index.ts)_

## `heroku apps:stacks:set STACK`

Expand All @@ -369,7 +369,7 @@ EXAMPLES
Run git push heroku main to trigger a new build on myapp.
```

_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/stacks/set.ts)_
_See code: [src/commands/apps/stacks/set.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/stacks/set.ts)_

## `heroku apps:transfer RECIPIENT`

Expand Down Expand Up @@ -400,7 +400,7 @@ EXAMPLES
...
```

_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/transfer.ts)_
_See code: [src/commands/apps/transfer.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/transfer.ts)_

## `heroku apps:unlock`

Expand All @@ -421,4 +421,4 @@ ALIASES
$ heroku unlock
```

_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v10.0.0-beta.0/packages/cli/src/commands/apps/unlock.ts)_
_See code: [src/commands/apps/unlock.ts](https://github.com/heroku/cli/blob/v9.5.1/packages/cli/src/commands/apps/unlock.ts)_
Loading

0 comments on commit 16618f5

Please sign in to comment.