From 52dbbf16bc2430cfb7220ac1a1bee7b452dd74db Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Tue, 26 Mar 2024 14:17:32 -0400 Subject: [PATCH] CHANGELOG: add 1.11.0-alpha2 changes --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5da2a31231a..34c2b6c5d42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,6 +46,15 @@ version constraints. This work allows users to use binaries with versions reported as "x.y.z-dev" to be used with the Packer `required_plugins` block. [GH-12828](https://github.com/hashicorp/packer/pull/12828) +* core: Packer now supports local paths to plugins for the `packer plugins remove` + command. This addition makes it possible to pipe commands like + `packer plugins installed` with it for speedy cleanup of installed plugins. + [GH-12886](https://github.com/hashicorp/packer/pull/12886) +* core: Version metadata support for plugins. Plugins may now formally have metadata + in their versions, Packer supports it, and applies the semver recommendations on + them, i.e. they are ignored for comparison/sorting purposes, but allowed for + adding extra information about a plugin. + [GH-12888](https://github.com/hashicorp/packer/pull/12888) Given the specified version constraint only versions greater than or equal to 1.1.0 will be considered.