Put in dev mode

pull/11856/head
Wilken Rivera 4 years ago
parent c4823d1174
commit f752f8dd63

@ -1,9 +1,11 @@
## 1.8.3 (Upcoming)
## 1.8.2 (June 21, 2022) ## 1.8.2 (June 21, 2022)
### NOTES: ### NOTES:
* The Packer plugin SDK includes the latest version of the go-getter library, * The Packer plugin SDK includes the latest version of the go-getter library,
which has been updated to address the vulnerabilities listed in which has been updated to address the vulnerabilities listed in
[HCSEC-2022-13](https://discuss.hashicorp.com/t/hcsec-2022-13-multiple-vulnerabilities-in-go-getter-library/39930). [HCSEC-2022-13](https://discuss.hashicorp.com/t/hcsec-2022-13-multiple-vulnerabilities-in-go-getter-library/39930).
The updated SDK contains changes that can The updated SDK contains changes that can
be breaking for some plugins as the updated go-getter settings in the SDK be breaking for some plugins as the updated go-getter settings in the SDK
prevent reading/writing through symlinks and to sub-directories that prevent reading/writing through symlinks and to sub-directories that
@ -27,7 +29,7 @@
enabled builds using the `hcp_packer_image` data source for setting a enabled builds using the `hcp_packer_image` data source for setting a
builder's source image. builder's source image.
[GH-11832](https://github.com/hashicorp/packer/pull/11832) [GH-11832](https://github.com/hashicorp/packer/pull/11832)
### PLUGINS: ### PLUGINS:
External plugins have been pinned to the following versions. Please see their External plugins have been pinned to the following versions. Please see their

@ -14,11 +14,11 @@ var (
CgoEnabled bool CgoEnabled bool
// The main version number that is being run at the moment. // The main version number that is being run at the moment.
Version = "1.8.2" Version = "1.8.3"
// A pre-release marker for the version. If this is "" (empty string) // A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release // then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc. // such as "dev" (in development), "beta", "rc1", etc.
VersionPrerelease = "" VersionPrerelease = "dev"
VersionMetadata = "" VersionMetadata = ""
) )

Loading…
Cancel
Save