From 92203378fdfd4e2da733182c5f0f64deb756e90d Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 5 Apr 2022 14:01:54 +0200 Subject: [PATCH] Release 3.8.6. --- CHANGELOG.rst | 17 ++++++++++++++ changelogs/changelog.yaml | 23 +++++++++++++++++++ changelogs/fragments/3.8.6.yml | 1 - .../4288-fix-4259-support-busybox-dd.yml | 5 ---- .../4349-proxmox-inventory-dict-facts.yml | 8 ------- ...21-zypper_package_version_handling_fix.yml | 2 -- ...if-incorrect-SDK-version-is-installed.yaml | 3 --- 7 files changed, 40 insertions(+), 19 deletions(-) delete mode 100644 changelogs/fragments/3.8.6.yml delete mode 100644 changelogs/fragments/4288-fix-4259-support-busybox-dd.yml delete mode 100644 changelogs/fragments/4349-proxmox-inventory-dict-facts.yml delete mode 100644 changelogs/fragments/4421-zypper_package_version_handling_fix.yml delete mode 100644 changelogs/fragments/4422-warn-user-if-incorrect-SDK-version-is-installed.yaml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aba4de8717..b84887f2d9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,23 @@ Community General Release Notes This changelog describes changes after version 2.0.0. +v3.8.6 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- dsv lookup plugin - raise an Ansible error if the wrong ``python-dsv-sdk`` version is installed (https://github.com/ansible-collections/community.general/pull/4422). +- filesize - add support for busybox dd implementation, that is used by default on Alpine linux (https://github.com/ansible-collections/community.general/pull/4288, https://github.com/ansible-collections/community.general/issues/4259). +- proxmox inventory plugin - always convert strings that follow the ``key=value[,key=value[...]]`` form into dictionaries (https://github.com/ansible-collections/community.general/pull/4349). +- proxmox inventory plugin - fixed the ``description`` field being ignored if it contained a comma (https://github.com/ansible-collections/community.general/issues/4348). +- zypper - fixed bug that caused zypper to always report [ok] and do nothing on ``state=present`` when all packages in ``name`` had a version specification (https://github.com/ansible-collections/community.general/issues/4371, https://github.com/ansible-collections/community.general/pull/4421). + v3.8.5 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 32fa07bacd..a7a626e5f3 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2117,3 +2117,26 @@ releases: - 4212-fixes-for-keycloak-user-federation.yml - 4219-passwordstore-locale-fix.yml release_date: '2022-02-22' + 3.8.6: + changes: + bugfixes: + - dsv lookup plugin - raise an Ansible error if the wrong ``python-dsv-sdk`` + version is installed (https://github.com/ansible-collections/community.general/pull/4422). + - filesize - add support for busybox dd implementation, that is used by default + on Alpine linux (https://github.com/ansible-collections/community.general/pull/4288, + https://github.com/ansible-collections/community.general/issues/4259). + - proxmox inventory plugin - always convert strings that follow the ``key=value[,key=value[...]]`` + form into dictionaries (https://github.com/ansible-collections/community.general/pull/4349). + - proxmox inventory plugin - fixed the ``description`` field being ignored if + it contained a comma (https://github.com/ansible-collections/community.general/issues/4348). + - zypper - fixed bug that caused zypper to always report [ok] and do nothing + on ``state=present`` when all packages in ``name`` had a version specification + (https://github.com/ansible-collections/community.general/issues/4371, https://github.com/ansible-collections/community.general/pull/4421). + release_summary: Regular bugfix release. + fragments: + - 3.8.6.yml + - 4288-fix-4259-support-busybox-dd.yml + - 4349-proxmox-inventory-dict-facts.yml + - 4421-zypper_package_version_handling_fix.yml + - 4422-warn-user-if-incorrect-SDK-version-is-installed.yaml + release_date: '2022-04-05' diff --git a/changelogs/fragments/3.8.6.yml b/changelogs/fragments/3.8.6.yml deleted file mode 100644 index 1b14bd80d1..0000000000 --- a/changelogs/fragments/3.8.6.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/4288-fix-4259-support-busybox-dd.yml b/changelogs/fragments/4288-fix-4259-support-busybox-dd.yml deleted file mode 100644 index c1d69d9466..0000000000 --- a/changelogs/fragments/4288-fix-4259-support-busybox-dd.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -bugfixes: - - filesize - add support for busybox dd implementation, that is used by default on Alpine linux - (https://github.com/ansible-collections/community.general/pull/4288, - https://github.com/ansible-collections/community.general/issues/4259). diff --git a/changelogs/fragments/4349-proxmox-inventory-dict-facts.yml b/changelogs/fragments/4349-proxmox-inventory-dict-facts.yml deleted file mode 100644 index fcf557c3ed..0000000000 --- a/changelogs/fragments/4349-proxmox-inventory-dict-facts.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -bugfixes: - - proxmox inventory plugin - fixed the ``description`` field being ignored if - it contained a comma - (https://github.com/ansible-collections/community.general/issues/4348). - - proxmox inventory plugin - always convert strings that follow the - ``key=value[,key=value[...]]`` form into dictionaries - (https://github.com/ansible-collections/community.general/pull/4349). diff --git a/changelogs/fragments/4421-zypper_package_version_handling_fix.yml b/changelogs/fragments/4421-zypper_package_version_handling_fix.yml deleted file mode 100644 index eacdf84beb..0000000000 --- a/changelogs/fragments/4421-zypper_package_version_handling_fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zypper - fixed bug that caused zypper to always report [ok] and do nothing on ``state=present`` when all packages in ``name`` had a version specification (https://github.com/ansible-collections/community.general/issues/4371, https://github.com/ansible-collections/community.general/pull/4421). diff --git a/changelogs/fragments/4422-warn-user-if-incorrect-SDK-version-is-installed.yaml b/changelogs/fragments/4422-warn-user-if-incorrect-SDK-version-is-installed.yaml deleted file mode 100644 index af03dae757..0000000000 --- a/changelogs/fragments/4422-warn-user-if-incorrect-SDK-version-is-installed.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - dsv lookup plugin - raise an Ansible error if the wrong ``python-dsv-sdk`` version is installed (https://github.com/ansible-collections/community.general/pull/4422). \ No newline at end of file