Skip to content

Commit d74627d

Browse files
Merge pull request #671 from hashicorp/hari/release-1.8.1
Amazon Plugin Release Version 1.8.1
2 parents df54d85 + 919711d commit d74627d

5 files changed

Lines changed: 15 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22

33
Please refer to [releases](https://github.com/hashicorp/packer-plugin-amazon/releases) for the latest CHANGELOG information.
44
---
5-
## x.x.x (Unreleased)
5+
## 1.8.1 (May 25, 2026)
66

77
## 🐛 Bug Fixes
8-
- **Fix ShouldRetry callbacks not receiving error from retry framework** – by @tjouni
9-
Several `ShouldRetry` callbacks had unnamed function parameters, causing them to
10-
reference the outer scope's error variable instead of the error passed by the retry
11-
framework. This prevented retries from working for transient AWS API errors such as
12-
`InvalidAMIID.NotFound`, `InvalidSnapshot.NotFound`, and `InvalidInstanceID.NotFound`.
8+
- **Fix ShouldRetry callbacks not receiving error from retry framework** – Several `ShouldRetry` callbacks had unnamed parameters, causing retries to fail for transient AWS API errors such as `InvalidAMIID.NotFound` and `InvalidSnapshot.NotFound`. ([#662](https://github.com/hashicorp/packer-plugin-amazon/pull/662))
9+
- **Fix instance profile propagation handling** – Improved IAM instance profile propagation to avoid race conditions during instance launch. ([#639](https://github.com/hashicorp/packer-plugin-amazon/pull/639))
10+
- **Fix IPv6 support** – Corrected IPv6 handling in `run_config`, SSH config, and security group steps to properly support IPv6-only configurations. ([#647](https://github.com/hashicorp/packer-plugin-amazon/pull/647))
11+
12+
## 📦 Dependencies
13+
- Bump `github.com/hashicorp/packer-plugin-sdk` from **0.6.5 → 0.6.8**
14+
- Bump `github.com/go-jose/go-jose/v4` to **v4.1.4**
15+
- Bump `golang.org/x/crypto` from **v0.43.0 → v0.52.0** – security fixes (OSV: GO-2026-5005 et al.)
16+
- Bump `golang.org/x/net` from **v0.46.0 → v0.55.0** – security fixes (OSV: GO-2026-4918 et al.)
1317

1418
---
1519
## 1.8.0 (November 19, 2025)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/hashicorp/go-cleanhttp v0.5.2
2020
github.com/hashicorp/go-multierror v1.1.1
2121
github.com/hashicorp/hcl/v2 v2.24.0
22-
github.com/hashicorp/packer-plugin-sdk v0.6.8
22+
github.com/hashicorp/packer-plugin-sdk v0.6.9
2323
github.com/hashicorp/vault/api v1.16.0
2424
github.com/mitchellh/mapstructure v1.5.0
2525
github.com/stretchr/testify v1.11.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO
275275
github.com/hashicorp/mdns v1.0.4/go.mod h1:mtBihi+LeNXGtG8L9dX59gAEa12BDtBQSp4v/YAJqrc=
276276
github.com/hashicorp/memberlist v0.5.0 h1:EtYPN8DpAURiapus508I4n9CzHs2W+8NZGbmmR/prTM=
277277
github.com/hashicorp/memberlist v0.5.0/go.mod h1:yvyXLpo0QaGE59Y7hDTsTzDD25JYBZ4mHgHUZ8lrOI0=
278-
github.com/hashicorp/packer-plugin-sdk v0.6.8 h1:uBINKQOqcxb9ERgWm16Rdbcxj91Iyq2g1RVCuUsEN7I=
279-
github.com/hashicorp/packer-plugin-sdk v0.6.8/go.mod h1:TvwlqryoWOljacuCtF5SKOg3Kz2sgydRVJzqY/S3PkY=
278+
github.com/hashicorp/packer-plugin-sdk v0.6.9 h1:gHF+2XNwzVyQ4khQRSaSSWKZ6deGTjm+ZaccwiBe1dU=
279+
github.com/hashicorp/packer-plugin-sdk v0.6.9/go.mod h1:TvwlqryoWOljacuCtF5SKOg3Kz2sgydRVJzqY/S3PkY=
280280
github.com/hashicorp/serf v0.10.1 h1:Z1H2J60yRKvfDYAOZLd2MU0ND4AH/WDz7xYHDWQsIPY=
281281
github.com/hashicorp/serf v0.10.1/go.mod h1:yL2t6BqATOLGc5HF7qbFkTfXoPIY0WZdWHfEvMqbG+4=
282282
github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0=

version/VERSION

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

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.8.1"
10-
VersionPrerelease = "dev"
10+
VersionPrerelease = ""
1111
VersionMetadata = ""
1212
PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
1313
)

0 commit comments

Comments
 (0)