From e8f47d5d49eb1c1a3467b3910d93bf253146a04b Mon Sep 17 00:00:00 2001 From: Brian Scholer <1260690+briantist@users.noreply.github.com> Date: Tue, 2 Jan 2024 17:58:16 -0500 Subject: [PATCH] Release/6.1.0 (#424) * set version * add release summary * release v6.1.0 --- CHANGELOG.rst | 13 +++++++++++++ changelogs/changelog.yaml | 12 ++++++++++++ changelogs/fragments/416-core-changes.yml | 7 ------- galaxy.yml | 2 +- 4 files changed, 26 insertions(+), 8 deletions(-) delete mode 100644 changelogs/fragments/416-core-changes.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 80a20f51d..bb12471af 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,19 @@ community.hashi_vault Release Notes .. contents:: Topics +v6.1.0 +====== + +Release Summary +--------------- + +This release addresses some breaking changes in core that were backported. + +Major Changes +------------- + +- requirements - the ``requests`` package which is required by ``hvac`` now has a more restrictive range for this collection in certain use cases due to breaking security changes in ``ansible-core`` that were backported (https://github.com/ansible-collections/community.hashi_vault/pull/416). + v6.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 4172a8088..722c71011 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -692,3 +692,15 @@ releases: - 403-core-vault-python.yml - 6.0.0.yml release_date: '2023-11-05' + 6.1.0: + changes: + major_changes: + - requirements - the ``requests`` package which is required by ``hvac`` now + has a more restrictive range for this collection in certain use cases due + to breaking security changes in ``ansible-core`` that were backported (https://github.com/ansible-collections/community.hashi_vault/pull/416). + release_summary: This release addresses some breaking changes in core that were + backported. + fragments: + - 416-core-changes.yml + - 6.1.0.yml + release_date: '2024-01-02' diff --git a/changelogs/fragments/416-core-changes.yml b/changelogs/fragments/416-core-changes.yml deleted file mode 100644 index 7df17a1d9..000000000 --- a/changelogs/fragments/416-core-changes.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -major_changes: - - requirements - the ``requests`` package which is required by ``hvac`` now has a more restrictive range for this collection in certain use cases due to breaking security changes in ``ansible-core`` that were backported (https://github.com/ansible-collections/community.hashi_vault/pull/416). - -trivial: - - We previously sometimes used options, especially in plugins, as a sort of internal information store for things that needed to be passed between methods, or we overwrote some options internally with values that did not match their documentation-defined type. A breaking change in core that validates and converts types to match config manager definitions has broken this usage. Code has been updated to avoid that, and/or change documented types (https://github.com/ansible-collections/community.hashi_vault/pull/416). - - The docker SDK version used in localenv setup has been properly constrained (https://github.com/ansible-collections/community.hashi_vault/pull/416/commits/905ac5da0778ddc236e346dd55578837a546090e). diff --git a/galaxy.yml b/galaxy.yml index 5aee16b82..1aa376008 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: community name: hashi_vault -version: 6.1.0-devel +version: 6.1.0 readme: README.md authors: - Julie Davila (@juliedavila)