From fb7797702a3abc4ab0608a720e2d6caa3c8a5f1e Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 27 Mar 2023 21:36:59 +0200 Subject: [PATCH] Release 5.8.7. --- CHANGELOG.rst | 21 ++++++++++++ changelogs/changelog.yaml | 33 +++++++++++++++++++ .../3216-nmcli-bridge-idempotency-fix.yml | 2 -- ...4387-nmcli-mtu-for-vlan-connection-fix.yml | 2 -- changelogs/fragments/5.8.7.yml | 1 - ...106-nmcli-ipv4-mayfail-idempotency-fix.yml | 2 -- .../6111-influxdb_user-check-mode.yaml | 2 -- .../6114-memset-add-url-error-handling.yml | 2 -- ...-plugin-fix-default-inventory_hostname.yml | 2 -- ...-interfaces_file-for-no-leading-spaces.yml | 2 -- .../6180-replace-deprecated-badzipfile.yml | 2 -- .../6227-xen-orchestra-check-response-id.yml | 2 -- 12 files changed, 54 insertions(+), 19 deletions(-) delete mode 100644 changelogs/fragments/3216-nmcli-bridge-idempotency-fix.yml delete mode 100644 changelogs/fragments/4387-nmcli-mtu-for-vlan-connection-fix.yml delete mode 100644 changelogs/fragments/5.8.7.yml delete mode 100644 changelogs/fragments/6106-nmcli-ipv4-mayfail-idempotency-fix.yml delete mode 100644 changelogs/fragments/6111-influxdb_user-check-mode.yaml delete mode 100644 changelogs/fragments/6114-memset-add-url-error-handling.yml delete mode 100644 changelogs/fragments/6118-jail-plugin-fix-default-inventory_hostname.yml delete mode 100644 changelogs/fragments/6131-fix-interfaces_file-for-no-leading-spaces.yml delete mode 100644 changelogs/fragments/6180-replace-deprecated-badzipfile.yml delete mode 100644 changelogs/fragments/6227-xen-orchestra-check-response-id.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c8e706b7e6..b0139d0d62 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,27 @@ Community General Release Notes This changelog describes changes after version 4.0.0. +v5.8.7 +====== + +Release Summary +--------------- + +Bugfix release. + +Bugfixes +-------- + +- archive - avoid deprecated exception class on Python 3 (https://github.com/ansible-collections/community.general/pull/6180). +- influxdb_user - fix running in check mode when the user does not exist yet (https://github.com/ansible-collections/community.general/pull/6111). +- interfaces_file - fix reading options in lines not starting with a space (https://github.com/ansible-collections/community.general/issues/6120). +- jail connection plugin - add ``inventory_hostname`` to vars under ``remote_addr``. This is needed for compatibility with ansible-core 2.13 (https://github.com/ansible-collections/community.general/pull/6118). +- memset - fix memset urlerror handling (https://github.com/ansible-collections/community.general/pull/6114). +- nmcli - fixed idempotency issue for bridge connections. Module forced default value of ``bridge.priority`` to nmcli if not set; if ``bridge.stp`` is disabled nmcli ignores it and keep default (https://github.com/ansible-collections/community.general/issues/3216, https://github.com/ansible-collections/community.general/issues/4683). +- nmcli - fixed idempotency issue when module params is set to ``may_fail4=false`` and ``method4=disabled``; in this case nmcli ignores change and keeps their own default value ``yes`` (https://github.com/ansible-collections/community.general/pull/6106). +- nmcli - implemented changing mtu value on vlan interfaces (https://github.com/ansible-collections/community.general/issues/4387). +- xenorchestra inventory plugin - fix failure to receive objects from server due to not checking the id of the response (https://github.com/ansible-collections/community.general/pull/6227). + v5.8.6 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 6a22862388..7b92332c01 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1528,3 +1528,36 @@ releases: - 6074-loader_in_listify.yml.yml - remove-unneeded-imports.yml release_date: '2023-02-26' + 5.8.7: + changes: + bugfixes: + - archive - avoid deprecated exception class on Python 3 (https://github.com/ansible-collections/community.general/pull/6180). + - influxdb_user - fix running in check mode when the user does not exist yet + (https://github.com/ansible-collections/community.general/pull/6111). + - interfaces_file - fix reading options in lines not starting with a space (https://github.com/ansible-collections/community.general/issues/6120). + - jail connection plugin - add ``inventory_hostname`` to vars under ``remote_addr``. + This is needed for compatibility with ansible-core 2.13 (https://github.com/ansible-collections/community.general/pull/6118). + - memset - fix memset urlerror handling (https://github.com/ansible-collections/community.general/pull/6114). + - nmcli - fixed idempotency issue for bridge connections. Module forced default + value of ``bridge.priority`` to nmcli if not set; if ``bridge.stp`` is disabled + nmcli ignores it and keep default (https://github.com/ansible-collections/community.general/issues/3216, + https://github.com/ansible-collections/community.general/issues/4683). + - nmcli - fixed idempotency issue when module params is set to ``may_fail4=false`` + and ``method4=disabled``; in this case nmcli ignores change and keeps their + own default value ``yes`` (https://github.com/ansible-collections/community.general/pull/6106). + - nmcli - implemented changing mtu value on vlan interfaces (https://github.com/ansible-collections/community.general/issues/4387). + - xenorchestra inventory plugin - fix failure to receive objects from server + due to not checking the id of the response (https://github.com/ansible-collections/community.general/pull/6227). + release_summary: Bugfix release. + fragments: + - 3216-nmcli-bridge-idempotency-fix.yml + - 4387-nmcli-mtu-for-vlan-connection-fix.yml + - 5.8.7.yml + - 6106-nmcli-ipv4-mayfail-idempotency-fix.yml + - 6111-influxdb_user-check-mode.yaml + - 6114-memset-add-url-error-handling.yml + - 6118-jail-plugin-fix-default-inventory_hostname.yml + - 6131-fix-interfaces_file-for-no-leading-spaces.yml + - 6180-replace-deprecated-badzipfile.yml + - 6227-xen-orchestra-check-response-id.yml + release_date: '2023-03-27' diff --git a/changelogs/fragments/3216-nmcli-bridge-idempotency-fix.yml b/changelogs/fragments/3216-nmcli-bridge-idempotency-fix.yml deleted file mode 100644 index 130800b6da..0000000000 --- a/changelogs/fragments/3216-nmcli-bridge-idempotency-fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nmcli - fixed idempotency issue for bridge connections. Module forced default value of ``bridge.priority`` to nmcli if not set; if ``bridge.stp`` is disabled nmcli ignores it and keep default (https://github.com/ansible-collections/community.general/issues/3216, https://github.com/ansible-collections/community.general/issues/4683). diff --git a/changelogs/fragments/4387-nmcli-mtu-for-vlan-connection-fix.yml b/changelogs/fragments/4387-nmcli-mtu-for-vlan-connection-fix.yml deleted file mode 100644 index e867135b2a..0000000000 --- a/changelogs/fragments/4387-nmcli-mtu-for-vlan-connection-fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nmcli - implemented changing mtu value on vlan interfaces (https://github.com/ansible-collections/community.general/issues/4387). diff --git a/changelogs/fragments/5.8.7.yml b/changelogs/fragments/5.8.7.yml deleted file mode 100644 index 8ce9aa961c..0000000000 --- a/changelogs/fragments/5.8.7.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Bugfix release. diff --git a/changelogs/fragments/6106-nmcli-ipv4-mayfail-idempotency-fix.yml b/changelogs/fragments/6106-nmcli-ipv4-mayfail-idempotency-fix.yml deleted file mode 100644 index a444176155..0000000000 --- a/changelogs/fragments/6106-nmcli-ipv4-mayfail-idempotency-fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nmcli - fixed idempotency issue when module params is set to ``may_fail4=false`` and ``method4=disabled``; in this case nmcli ignores change and keeps their own default value ``yes`` (https://github.com/ansible-collections/community.general/pull/6106). diff --git a/changelogs/fragments/6111-influxdb_user-check-mode.yaml b/changelogs/fragments/6111-influxdb_user-check-mode.yaml deleted file mode 100644 index 4789c2ba76..0000000000 --- a/changelogs/fragments/6111-influxdb_user-check-mode.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - influxdb_user - fix running in check mode when the user does not exist yet (https://github.com/ansible-collections/community.general/pull/6111). diff --git a/changelogs/fragments/6114-memset-add-url-error-handling.yml b/changelogs/fragments/6114-memset-add-url-error-handling.yml deleted file mode 100644 index 25dd869d19..0000000000 --- a/changelogs/fragments/6114-memset-add-url-error-handling.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "memset - fix memset urlerror handling (https://github.com/ansible-collections/community.general/pull/6114)." diff --git a/changelogs/fragments/6118-jail-plugin-fix-default-inventory_hostname.yml b/changelogs/fragments/6118-jail-plugin-fix-default-inventory_hostname.yml deleted file mode 100644 index ac2cb5cf43..0000000000 --- a/changelogs/fragments/6118-jail-plugin-fix-default-inventory_hostname.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "jail connection plugin - add ``inventory_hostname`` to vars under ``remote_addr``. This is needed for compatibility with ansible-core 2.13 (https://github.com/ansible-collections/community.general/pull/6118)." diff --git a/changelogs/fragments/6131-fix-interfaces_file-for-no-leading-spaces.yml b/changelogs/fragments/6131-fix-interfaces_file-for-no-leading-spaces.yml deleted file mode 100644 index c975d4e624..0000000000 --- a/changelogs/fragments/6131-fix-interfaces_file-for-no-leading-spaces.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - interfaces_file - fix reading options in lines not starting with a space (https://github.com/ansible-collections/community.general/issues/6120). diff --git a/changelogs/fragments/6180-replace-deprecated-badzipfile.yml b/changelogs/fragments/6180-replace-deprecated-badzipfile.yml deleted file mode 100644 index 7e0916a8d9..0000000000 --- a/changelogs/fragments/6180-replace-deprecated-badzipfile.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "archive - avoid deprecated exception class on Python 3 (https://github.com/ansible-collections/community.general/pull/6180)." diff --git a/changelogs/fragments/6227-xen-orchestra-check-response-id.yml b/changelogs/fragments/6227-xen-orchestra-check-response-id.yml deleted file mode 100644 index 972caa7d60..0000000000 --- a/changelogs/fragments/6227-xen-orchestra-check-response-id.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - xenorchestra inventory plugin - fix failure to receive objects from server due to not checking the id of the response (https://github.com/ansible-collections/community.general/pull/6227).