Compare commits

...

7 Commits

Author SHA1 Message Date
Wilken Rivera 19692786af builder/azure/arm: Update domain for self-signed certs 2020-03-29 07:22:32 -04:00
Wilken Rivera e3309f3e91 Merge pull request #8958 from hashicorp/revert_old_docs
remove docs about windows symlinks which are now inaccurage
2020-03-26 20:48:49 -04:00
Megan Marsh 65b64d04d0 remove docs about windows symlinks which are now inaccurage 2020-03-26 15:51:51 -07:00
Megan Marsh 409503f80f update to v1.5.6-dev 2020-03-25 16:04:05 -07:00
Megan Marsh 499eacd3d9 cut version 1.5.5 2020-03-25 16:02:40 -07:00
Megan Marsh d6b70c1bf8 update changelog 2020-03-25 16:02:40 -07:00
Wilken Rivera 4f8fb363e0 update changelog 2020-03-25 16:45:48 -04:00
6 changed files with 7 additions and 14 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
## 1.5.5 (Upcoming)
## 1.5.5 (March 25,2020)
### IMPROVEMENTS:
* builder/azure: Add support for configurable KeyVault SKU [GH-8879]
@@ -52,6 +52,8 @@
[GH-8828]
* builder/vsphere-clone: Fix issue preventing the cloning of VMs with the same
name in different folders [GH-8938]
* builder/vsphere-iso: Fix issue preventing the creation of VMs with the same
name in different folders [GH-8938]
* builder/vsphere: Fix network object interface panic. [GH-8753]
* core/hcl2: Fix crash when an unset variable is used [GH-8837]
* core/hcl2: Fix logic for parsing literal value variables [GH-8834]
+2 -2
View File
@@ -463,8 +463,8 @@ func (c *Config) createCertificate() (string, error) {
err = fmt.Errorf("Failed to Generate Private Key: %s", err)
return "", err
}
host := fmt.Sprintf("%s.cloudapp.net", c.tmpComputeName)
normalizedLocation := strings.ToLower(strings.ReplaceAll(c.Location, " ", ""))
host := fmt.Sprintf("%s.%s.cloudapp.azure.com", c.tmpComputeName, normalizedLocation)
notBefore := time.Now()
notAfter := notBefore.Add(24 * time.Hour)
-5
View File
@@ -25,11 +25,6 @@ import (
// * HTTP
// * Amazon S3
//
//
// \~> On Windows, using a symlink to refer to local files is currently
// unsupported. Packer will always copy a local iso into the Packer cache
// directory.
//
// Examples:
// go-getter can guess the checksum type based on `iso_checksum` len.
//
+1 -1
View File
@@ -9,7 +9,7 @@ import (
var GitCommit string
// The main version number that is being run at the moment.
const Version = "1.5.5"
const Version = "1.5.6"
// 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
+1 -1
View File
@@ -2,7 +2,7 @@ set :base_url, "https://www.packer.io/"
activate :hashicorp do |h|
h.name = "packer"
h.version = "1.5.4"
h.version = "1.5.5"
h.github_slug = "hashicorp/packer"
h.website_root = "website"
end
@@ -12,10 +12,6 @@ go-getter supports the following protocols:
* HTTP
* Amazon S3
\~> On Windows, using a symlink to refer to local files is currently
unsupported. Packer will always copy a local iso into the Packer cache
directory.
Examples:
go-getter can guess the checksum type based on `iso_checksum` len.