Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 1.1.3 (June 9, 2026)

### BUG FIXES:

* Fix security vulnerabilities by updating transitive dependencies (including `ulikunitz`) by @sanyaraj2424 in https://github.com/hashicorp/packer-plugin-docker/pull/233
* Fix authorization-related and dependency issues through module updates by @sanyaraj2424 in https://github.com/hashicorp/packer-plugin-docker/pull/228 and https://github.com/hashicorp/packer-plugin-docker/pull/229

### IMPROVEMENTS:

* Update `github.com/hashicorp/packer-plugin-sdk` dependency by @dependabot[bot] in https://github.com/hashicorp/packer-plugin-docker/pull/222 and https://github.com/hashicorp/packer-plugin-docker/pull/232
* Improve CI linting reliability by upgrading `golangci-lint`, migrating lint configuration, and reporting only new issues by @sanyaraj2424.
* Add automated backport workflow support by @devashish-patel in https://github.com/hashicorp/packer-plugin-docker/pull/221
* Update Docker builder documentation by @aslindhurai-suntrion in https://github.com/hashicorp/packer-plugin-docker/pull/218
* Update copyright and license headers for compliance by @hashicorp-copywrite[bot] in https://github.com/hashicorp/packer-plugin-docker/pull/223

### Other Changes

* Release preparation and version update changes for `1.1.3` by @sanyaraj2424
* Dev version preparation by @anshulSharma in https://github.com/hashicorp/packer-plugin-docker/pull/217

## 1.1.2 (July 31, 2025)

### IMPROVEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion version/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.3-dev
1.1.3
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version"

var (
Version = "1.1.3"
VersionPrerelease = "dev"
VersionPrerelease = ""
VersionMetadata = ""
PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
)
Loading