Skip to content

Commit 4053630

Browse files
authored
Merge pull request #536 from hashicorp/cut-release-250
version: cut release 2.5.0
2 parents f4089a0 + af7c40a commit 4053630

3 files changed

Lines changed: 22 additions & 3 deletions

File tree

CHANGELOG.md

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

55
---
6+
## 2.5.0 (September 3, 2025)
7+
8+
## What's Changed
9+
### Breaking Changes
10+
* VHDs are no longer built using unmanaged disks, this change was made because of the following deprecation notice from Microsoft https://learn.microsoft.com/en-us/azure/virtual-machines/unmanaged-disks-deprecation. Users must now create the capture container in their storage account at the root of the container. The plugin no longer relies on Azure system created capture containers.
11+
### Exciting New Features
12+
* Added Support for multiple artifact, (i.e. VHD, SharedImageGallery and Managed Image) creation in the same build in [GH-522](https://github.com/hashicorp/packer-plugin-azure/pull/522)
13+
14+
### Bug Fixes
15+
* Move SIG Regex check to builder to fix validation failures in [GH-531](https://github.com/hashicorp/packer-plugin-azure/pull/531)
16+
* Fixed Release Artifact Schema file name in [GH-532](https://github.com/hashicorp/packer-plugin-azure/pull/532)
17+
* Fixed Unmanaged Disks in [GH-522](https://github.com/hashicorp/packer-plugin-azure/pull/522)
18+
* VHD Migrations Fixes - VHD Acceptance Tests, and Disk Revoke Access on Failures in [GH-534](https://github.com/hashicorp/packer-plugin-azure/pull/534)
19+
20+
### Other Changes
21+
* Packer Plugin SDK v0.6.1 => v0.6.2 and run make generate in [GH-525](https://github.com/hashicorp/packer-plugin-azure/pull/525)
22+
* Remove unused constant causing linter failure in [GH-533](https://github.com/hashicorp/packer-plugin-azure/pull/533)
23+
* Updated Module for Security Vulnerability in [GH-535](https://github.com/hashicorp/packer-plugin-azure/pull/535)
24+
625
## 2.4.0 (August 6, 2025)
726

827
## What's Changed

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.1-dev
1+
2.5.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.4.1"
12-
VersionPrerelease = "dev"
11+
Version = "2.5.0"
12+
VersionPrerelease = ""
1313
VersionMetadata = ""
1414
AzurePluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)
1515
)

0 commit comments

Comments
 (0)