Update CHANGELOG

* Add a few missing entries
* Fix minor typos
This commit is contained in:
Wilken Rivera 2023-05-04 19:24:05 -04:00
parent 88abc56781
commit 0eb65683d3

View file

@ -29,7 +29,6 @@
## 1.8.7 (May 4, 2023)
### NOTES:
* Vendored plugins within Packer have not been updated. Plugin releases occur on
a regular basis to address issues and feature requests. Users are encouraged
to use `packer init` for HCL2 templates or `packer plugins install` with
@ -42,7 +41,7 @@
required_plugins {
digitalocean = {
source = "github.com/digitalocean/digitalocean"
version = ">=1.0.8"
version = ">=1.1.1"
}
}
```
@ -86,8 +85,8 @@
```
required_plugins {
ucloud = {
source = "github.com/ucloud/ucloud"
version = ">=1.0.8"
source = "github.com/hashicorp/profitbricks"
version = ">=1.0.2"
}
}
```
@ -106,9 +105,10 @@
### IMPROVEMENTS
* cmd/console: Add config-type flag to command help.
[GH-12360](https://github.com/hashicorp/packer/pull/12360)
* core: Add enhanced support to Packer telemetry for HCL2.
[GH-12319](https://github.com/hashicorp/packer/pull/12319)
* Enhance zsh completion for the Packer command.
[GH-12356](https://github.com/hashicorp/packer/pull/12356),
[GH-12366](https://github.com/hashicorp/packer/pull/12366)
@ -124,8 +124,8 @@
* cmd/hcl2_upgrade: Fix crash when variables block is undefined in legacy JSON
templates. [GH-12257](https://github.com/hashicorp/packer/pull/12257)
* Fix regression introduced in 1.8.6, where configurations with custom builder
names, via the name attribute, but would display the name to STDOUT with
non-interpolated variable values.
names via the name attribute are outputted to STDOUT with uninterpolated
user variables for legacy JSON templates.
[GH-12290](https://github.com/hashicorp/packer/pull/12290)
## 1.8.6 (February 15, 2023)
@ -154,11 +154,11 @@ The following external plugins have been updated and pinned to address open
### IMPROVEMENTS:
* Bump bundled plugins to latest available version.
[GH-12271](https://github.com/hashicorp/packer/pull/12271)
[GH-12274](https://github.com/hashicorp/packer/pull/12274)
* bump github.com/hashicorp/hcp-sdk-go from 0.28.0 to 0.29.0
[GH-12163](https://github.com/hashicorp/packer/pull/12163)
* Bump github.com/hashicorp/hcp-sdk-go from 0.33.0 to 0.34.0
[GH-12262](https://github.com/hashicorp/packer/pull/12262)
[GH-12275](https://github.com/hashicorp/packer/pull/12275)
* core/hcl2: Packer will no longer warn on excluded post-processors when using
`-only/exlude` filters for running select builds.
[GH-12187](https://github.com/hashicorp/packer/pull/12187)
@ -175,6 +175,7 @@ The following external plugins have been updated and pinned to address open
* core: Linux packages now have vendor label and set the default label to
HashiCorp. This fix is implemented for any future releases, but will not be
updated for historical releases.
[GH-12252](https://github.com/hashicorp/packer/pull/12252)
* core/hcp: The bucket's description was not properly set in the bucket
object sent to HCP Packer leaving all newly created buckets with an empty
description. [GH-12235]