From 9544b5b6f21f62be60226a7479ff2c840f4260e2 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Mon, 4 Nov 2019 11:49:46 +0100 Subject: [PATCH 1/3] Update CHANGELOG.md for 1.4.5 release --- CHANGELOG.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea4b5b17f..aae67a9ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,16 @@ -## 1.4.5 (Upcoming) +## 1.5.0 (Upcoming) +## 1.4.5 (November 4, 2019) ### IMPROVEMENTS: +* added ucloud-import post-processsor to import custom image for UCloud UHost + instance [GH-8261] * builder/amazon: New option to specify IAM policy for a temporary instance profile [GH-8247] +* builder/amazon: improved validation around encrypt_boot and kms_key_id for a + better experience [GH-8288] * builder/azure-arm: Allow specification of polling duration [GH-8226] -* builder/azure-chroot: Add Azure chroot builder [GH-8185] +* builder/azure-chroot: Add Azure chroot builder [GH-8185] & refactored some + common code together after it [GH-8269] * builder/azure: Deploy NSG if list of IP addresses is provided in config [GH-8203] * builder/azure: Set correct user agent for Azure client set [GH-8259] @@ -20,11 +26,15 @@ * builder/tencent: Add retry on remote api call [GH-8250] * builder/vagrant: Pass through logs from vagrant in real time rather than buffering until command is complete [GH-8274] +* builder/vagrant: add insert_key option for toggling whether to add Vagrant's + insecure key [GH-8274] * communicator/winrm: Prevent busy loop while waiting for WinRM connection [GH-8213] * core: Add strftime function in templates [GH-8208] * core: Improve error message when comment is bad [GH-8267] -* Fix various dropped errors: [GH-8230] [GH-8265] [GH-8276] [GH-8281] +* post-processor/amazon-import: delete intermediary snapshots [GH-8307] +* Fix various dropped errors an removed unused code: [GH-8230] [GH-8265] + [GH-8276] [GH-8281] [GH-8309] [GH-8311] [GH-8304] [GH-8303] [GH-8293] ### BUG FIXES: * builder/amazon: Fix region copy for non-ebs amazon builders [GH-8212] From ae8ef321a6f52272c4fdd3cb40e87e392b3ad5e4 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Mon, 4 Nov 2019 11:50:31 +0100 Subject: [PATCH 2/3] Update version.go for 1.4.5 --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 9755bac10..7ad86d2ee 100644 --- a/version/version.go +++ b/version/version.go @@ -9,7 +9,7 @@ import ( var GitCommit string // The main version number that is being run at the moment. -const Version = "1.5.0" +const Version = "1.4.5" // 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 From b467027972fc5db080029e81395be73910c089c9 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Mon, 4 Nov 2019 11:50:52 +0100 Subject: [PATCH 3/3] Update config.rb for 1.4.5 --- website/config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/config.rb b/website/config.rb index bf8b3c4f3..04da1cad9 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ set :base_url, "https://www.packer.io/" activate :hashicorp do |h| h.name = "packer" - h.version = "1.4.4" + h.version = "1.4.5" h.github_slug = "hashicorp/packer" h.website_root = "website" end