Compare commits

...

3 Commits

Author SHA1 Message Date
Megan Marsh ab8811dca8 Cut version 1.2.2 2018-03-26 14:04:16 -07:00
Megan Marsh 6816d835a5 cut v1.2.2 2018-03-26 13:57:48 -07:00
Megan Marsh e72c5c2626 finalized Changelog for v1.2.2 2018-03-26 13:57:00 -07:00
3 changed files with 14 additions and 8 deletions
+12 -6
View File
@@ -1,19 +1,25 @@
## (UNRELEASED)
## 1.2.2 (March 26, 2018)
### BUG FIXES:
* builder/amazon: Fix AWS credential defaulting [GH-6019]
* builder/LXC: make sleep timeout easily configurable [GH-6038]
* builder/virtualbox: Correctly send multi-byte scancodes when typing boot
command. [GH-5987]
* provisioner/powershell: Fix environment variable file escaping. [GH-5973]
* builder/virtualbox: Special boot-commands no longer overwrite previous
commands [GH-6002]
* builder/vmware: Default to disabling XHCI bus for USB on the vmware-iso
builder. [GH-5975]
* builder/vmware: Handle multiple devices per VMware network type [GH-5985]
* builder/amazon: Fix AWS credential defaulting [GH-6019]
* builder/virtualbox: Special boot-commands no longer overwrite previous commands [GH-6002]
* builder/vmware: Default to disabling XHCI bus for USB on the vmware-iso builder. [GH-5975]
* communicator/ssh: Handle errors uploading files more gracefully [GH-6033]
* provisioner/powershell: Fix environment variable file escaping. [GH-5973]
### IMPROVEMENTS:
* builder/amazon: Added new region `cn-northwest-1`. [GH-5960]
* builder/amazon: Users may now access the amazon-generated administrator
password [GH-5998]
* builder/azure: Add support concurrent deployments in the same resource group.
[GH-6005]
* builder/azure: Add support for building with additional disks. [GH-5944]
@@ -22,9 +28,9 @@
* builder/azure: Respect `-force` for managed image deletion. [GH-6003]
* builder/google: Add option to specify a service account, or to run without
one. [GH-5991] [GH-5928]
* builder/oracle-oci: Add new "use_private_ip" option. [GH-5893]
* post-processor/vagrant: Add LXC support. [GH-5980]
* provisioner/salt-masterless: Added Windows support. [GH-5702]
* builder/oracle-oci: Add new "use_private_ip" option. [GH-5893]
* provisioner/salt: Add windows support to salt provisioner [GH-6012] [GH-6012]
+1 -1
View File
@@ -14,7 +14,7 @@ const Version = "1.2.2"
// 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
// such as "dev" (in development), "beta", "rc1", etc.
const VersionPrerelease = "dev"
const VersionPrerelease = ""
func FormattedVersion() string {
var versionString bytes.Buffer
+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.2.1"
h.version = "1.2.2"
h.github_slug = "hashicorp/packer"
h.website_root = "website"
end