From e5cd11bc41093793c5beb6158f7e35fd425357a3 Mon Sep 17 00:00:00 2001 From: Brian Scholer <1260690+briantist@users.noreply.github.com> Date: Thu, 11 May 2023 14:03:01 +0900 Subject: [PATCH] Release/v5.0.0 (#376) * set version * add release summary * release v5.0.0 --- CHANGELOG.rst | 15 +++++++++++++++ changelogs/changelog.yaml | 19 +++++++++++++++++++ .../fragments/324-minimum-hvac-version.yml | 3 --- .../fragments/340-drop-core-211-212.yml | 3 --- .../fragments/356-duplicate-term-options.yml | 3 --- galaxy.yml | 2 +- 6 files changed, 35 insertions(+), 10 deletions(-) delete mode 100644 changelogs/fragments/324-minimum-hvac-version.yml delete mode 100644 changelogs/fragments/340-drop-core-211-212.yml delete mode 100644 changelogs/fragments/356-duplicate-term-options.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5223d4a97..619cdd27d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,21 @@ community.hashi_vault Release Notes .. contents:: Topics +v5.0.0 +====== + +Release Summary +--------------- + +This version makes some relatively minor but technically breaking changes. Support for ``ansible-core`` versions ``2.11`` and ``2.12`` have been dropped, and there is now a minimum supported version of ``hvac`` which will be updated over time. A warning in the ``hashi_vault`` lookup on duplicate option specifications in the term string has been changed to a fatal error. + +Breaking Changes / Porting Guide +-------------------------------- + +- Support for ``ansible-core`` 2.11 and 2.12 has been removed (https://github.com/ansible-collections/community.hashi_vault/issues/340). +- The minimum version of ``hvac`` for ``community.hashi_vault`` is now ``1.1.0`` (https://github.com/ansible-collections/community.hashi_vault/issues/324). +- hashi_vault lookup - duplicate option entries in the term string now raises an exception instead of a warning (https://github.com/ansible-collections/community.hashi_vault/issues/356). + v4.2.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index cd982ec0e..40e64c001 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -644,3 +644,22 @@ releases: fragments: - 4.2.1.yml release_date: '2023-04-27' + 5.0.0: + changes: + breaking_changes: + - Support for ``ansible-core`` 2.11 and 2.12 has been removed (https://github.com/ansible-collections/community.hashi_vault/issues/340). + - The minimum version of ``hvac`` for ``community.hashi_vault`` is now ``1.1.0`` + (https://github.com/ansible-collections/community.hashi_vault/issues/324). + - hashi_vault lookup - duplicate option entries in the term string now raises + an exception instead of a warning (https://github.com/ansible-collections/community.hashi_vault/issues/356). + release_summary: This version makes some relatively minor but technically breaking + changes. Support for ``ansible-core`` versions ``2.11`` and ``2.12`` have + been dropped, and there is now a minimum supported version of ``hvac`` which + will be updated over time. A warning in the ``hashi_vault`` lookup on duplicate + option specifications in the term string has been changed to a fatal error. + fragments: + - 324-minimum-hvac-version.yml + - 340-drop-core-211-212.yml + - 356-duplicate-term-options.yml + - 5.0.0.yml + release_date: '2023-05-11' diff --git a/changelogs/fragments/324-minimum-hvac-version.yml b/changelogs/fragments/324-minimum-hvac-version.yml deleted file mode 100644 index 86757bdaf..000000000 --- a/changelogs/fragments/324-minimum-hvac-version.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -breaking_changes: - - The minimum version of ``hvac`` for ``community.hashi_vault`` is now ``1.1.0`` (https://github.com/ansible-collections/community.hashi_vault/issues/324). diff --git a/changelogs/fragments/340-drop-core-211-212.yml b/changelogs/fragments/340-drop-core-211-212.yml deleted file mode 100644 index 8c7038b14..000000000 --- a/changelogs/fragments/340-drop-core-211-212.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -breaking_changes: - - Support for ``ansible-core`` 2.11 and 2.12 has been removed (https://github.com/ansible-collections/community.hashi_vault/issues/340). diff --git a/changelogs/fragments/356-duplicate-term-options.yml b/changelogs/fragments/356-duplicate-term-options.yml deleted file mode 100644 index b8bbf92f4..000000000 --- a/changelogs/fragments/356-duplicate-term-options.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -breaking_changes: - - hashi_vault lookup - duplicate option entries in the term string now raises an exception instead of a warning (https://github.com/ansible-collections/community.hashi_vault/issues/356). diff --git a/galaxy.yml b/galaxy.yml index 20bf1f6de..f580f7faf 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: community name: hashi_vault -version: 5.0.0-devel +version: 5.0.0 readme: README.md authors: - Julie Davila (@juliedavila)