Skip to content

Commit 5d7b2c8

Browse files
authored
Merge pull request #615 from hashicorp/karthik/prepare_1.5.0
version cut: release 1.5.0
2 parents 8102bf3 + dec475b commit 5d7b2c8

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,37 @@
33
Please refer to [releases](https://github.com/hashicorp/packer-plugin-amazon/releases) for the latest CHANGELOG information.
44

55
---
6-
## 1.5.0 (Upcoming)
6+
## 1.5.0 (September 22, 2025)
77

8+
## ✨ Features
9+
- **IPv6 Support** – by @siriusfreak ([#544](https://github.com/hashicorp/packer-plugin-amazon/pull/544))
10+
Adds support for IPv6-only configurations, expanding networking compatibility.
11+
- **Upgrade AMI Import Post-Processor to AWS SDK v2** – by @kp2099 ([#573](https://github.com/hashicorp/packer-plugin-amazon/pull/573))
12+
Modernizes the AMI import post-processor by migrating to AWS SDK v2.
13+
14+
---
15+
16+
## 🐛 Bug Fixes
17+
- **Remove `KmsKeyId` from device details in AMI creation** – by @drrk ([#589](https://github.com/hashicorp/packer-plugin-amazon/pull/589))
18+
Eliminates the unnecessary `KmsKeyId` field in `step_create_ami` to prevent misconfigurations.
19+
20+
- **Fix `UserAgentProducts` handling** – by @kp2099 ([#600](https://github.com/hashicorp/packer-plugin-amazon/pull/600))
21+
Corrects construction of `UserAgentProducts` when building AWS requests.
22+
23+
- **Acceptance test fix: `EbsCopyRegionEncryptedBootWithDeprecation`** – by @kp2099 ([#609](https://github.com/hashicorp/packer-plugin-amazon/pull/609))
24+
Ensures stable and accurate results in the EBS encrypted boot with deprecation acceptance test.
25+
26+
---
27+
28+
## 🛠 Improvements
29+
- **Acceptance Test Notifications** – by @kp2099 ([#613](https://github.com/hashicorp/packer-plugin-amazon/pull/613))
30+
Adds notifications for failed acceptance tests to improve visibility.
31+
32+
---
33+
34+
## 📦 Dependencies
35+
- **Bump `github.com/hashicorp/packer-plugin-sdk`** from **0.6.2 → 0.6.3** – by @dependabot ([#601](https://github.com/hashicorp/packer-plugin-amazon/pull/601))
36+
- **Bump `github.com/ulikunitz/xz`** from **0.5.10 → 0.5.15** – by @kp2099 ([#607](https://github.com/hashicorp/packer-plugin-amazon/pull/607))
837

938
## 1.4.0 (August 27, 2025)
1039
### AWS SDK V2 UPGRADES:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
1919
packer {
2020
required_plugins {
2121
amazon = {
22-
version = ">= 1.3.8"
22+
version = ">= 1.5.0"
2323
source = "github.com/hashicorp/amazon"
2424
}
2525
}

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0-dev
1+
1.5.0

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version"
77

88
var (
99
Version = "1.5.0"
10-
VersionPrerelease = "dev"
10+
VersionPrerelease = ""
1111
VersionMetadata = ""
1212
PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
1313
)

0 commit comments

Comments
 (0)