Skip to content

Commit 1d5079f

Browse files
authored
version: prepare v2.6.0 (#600)
1 parent fefa83b commit 1d5079f

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
Please refer to [releases](https://github.com/hashicorp/packer-plugin-azure/releases) for the latest CHANGELOG information.
44

55
---
6+
## 2.6.0 (March 23, 2026)
7+
8+
## What's Changed
9+
### Exciting New Features
10+
* Add built-in LVM support to the `azure-chroot` builder, including the optional `lvm_root_device` override [GH-583](https://github.com/hashicorp/packer-plugin-azure/pull/583)
11+
* Support sourcing Azure Compute Gallery images across subscriptions and preserve host availability zones for `azure-chroot` disks [GH-582](https://github.com/hashicorp/packer-plugin-azure/pull/582)
12+
* Add `accelerated_networking` and `sas_token_duration` options to the `azure-arm` builder [GH-580](https://github.com/hashicorp/packer-plugin-azure/pull/580)
13+
* Add `disk_controller_type` support to the `azure-arm` builder [GH-592](https://github.com/hashicorp/packer-plugin-azure/pull/592)
14+
* Add `StandardSSD_LRS` support for `managed_image_storage_account_type` [GH-596](https://github.com/hashicorp/packer-plugin-azure/pull/596)
15+
16+
### Bug Fixes
17+
* Allow `skip_create_image` without requiring capture destinations in the ARM and chroot builders [GH-579](https://github.com/hashicorp/packer-plugin-azure/pull/579)
18+
* Relax resource group validation and VHD copy duration handling to avoid false failures [GH-567](https://github.com/hashicorp/packer-plugin-azure/pull/567)
19+
20+
### Other Changes
21+
* Update dependencies to latest compatible versions [GH-599](https://github.com/hashicorp/packer-plugin-azure/pull/599)
22+
* Bump `github.com/hashicorp/packer-plugin-sdk` from `0.6.4` to `0.6.6` [GH-570](https://github.com/hashicorp/packer-plugin-azure/pull/570), [GH-597](https://github.com/hashicorp/packer-plugin-azure/pull/597)
23+
* Upgrade CI dependencies and release automation actions [GH-586](https://github.com/hashicorp/packer-plugin-azure/pull/586), [GH-587](https://github.com/hashicorp/packer-plugin-azure/pull/587), [GH-589](https://github.com/hashicorp/packer-plugin-azure/pull/589), [GH-590](https://github.com/hashicorp/packer-plugin-azure/pull/590), [GH-595](https://github.com/hashicorp/packer-plugin-azure/pull/595), [GH-598](https://github.com/hashicorp/packer-plugin-azure/pull/598)
24+
* Prevent credential persistence in CI checkouts [GH-593](https://github.com/hashicorp/packer-plugin-azure/pull/593)
25+
* Update `golangci-lint` to v2 [GH-594](https://github.com/hashicorp/packer-plugin-azure/pull/594)
26+
* Improve Dependabot support for GitHub Actions updates [GH-569](https://github.com/hashicorp/packer-plugin-azure/pull/569)
27+
28+
**Full Changelog**: https://github.com/hashicorp/packer-plugin-azure/compare/v2.5.2...v2.6.0
29+
630
## 2.5.2 (February 4, 2026)
731

832
## What's Changed

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
azure = {
22-
version = ">= 2.5.2"
22+
version = ">= 2.6.0"
2323
source = "github.com/hashicorp/azure"
2424
}
2525
}

version/VERSION

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

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
)
99

1010
var (
11-
Version = "2.5.3"
12-
VersionPrerelease = "dev"
11+
Version = "2.6.0"
12+
VersionPrerelease = ""
1313
VersionMetadata = ""
1414
AzurePluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
1515
)

0 commit comments

Comments
 (0)