From c9728c286966c800ddc9598c62ee093e47ad2dcc Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 26 Feb 2023 18:13:21 +0100 Subject: [PATCH] Release 5.8.6. --- CHANGELOG.rst | 26 ++++++++++++ changelogs/changelog.yaml | 41 +++++++++++++++++++ changelogs/fragments/5.8.6.yml | 1 - changelogs/fragments/5431-nmcli-wifi.yml | 4 -- .../5615-zypper-transactional-update.yml | 2 - changelogs/fragments/5933-linting.yml | 2 - .../5934-fix-keycloak-sanitize_cr.yml | 2 - ...zfs-allow-cannot-parse-unknown-uid-gid.yml | 2 - .../5972-cloudflare-dns-srv-record.yml | 3 -- .../fragments/5994-github-webhook-secret.yml | 2 - changelogs/fragments/6034-lxd-tls.yml | 2 - .../fragments/6048-nmcli-addres-order.yml | 2 - .../fragments/6074-loader_in_listify.yml.yml | 2 - .../fragments/remove-unneeded-imports.yml | 2 - 14 files changed, 67 insertions(+), 26 deletions(-) delete mode 100644 changelogs/fragments/5.8.6.yml delete mode 100644 changelogs/fragments/5431-nmcli-wifi.yml delete mode 100644 changelogs/fragments/5615-zypper-transactional-update.yml delete mode 100644 changelogs/fragments/5933-linting.yml delete mode 100644 changelogs/fragments/5934-fix-keycloak-sanitize_cr.yml delete mode 100644 changelogs/fragments/5943-zfs_delegate_admin-fix-zfs-allow-cannot-parse-unknown-uid-gid.yml delete mode 100644 changelogs/fragments/5972-cloudflare-dns-srv-record.yml delete mode 100644 changelogs/fragments/5994-github-webhook-secret.yml delete mode 100644 changelogs/fragments/6034-lxd-tls.yml delete mode 100644 changelogs/fragments/6048-nmcli-addres-order.yml delete mode 100644 changelogs/fragments/6074-loader_in_listify.yml.yml delete mode 100644 changelogs/fragments/remove-unneeded-imports.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7b8edbe34d..c8e706b7e6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,32 @@ Community General Release Notes This changelog describes changes after version 4.0.0. +v5.8.6 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- cartesian and flattened lookup plugins - adjust to parameter deprecation in ansible-core 2.14's ``listify_lookup_plugin_terms`` helper function (https://github.com/ansible-collections/community.general/pull/6074). +- cloudflare_dns - fixed the idempotency for SRV DNS records (https://github.com/ansible-collections/community.general/pull/5972). +- cloudflare_dns - fixed the possiblity of setting a root-level SRV DNS record (https://github.com/ansible-collections/community.general/pull/5972). +- github_webhook - fix always changed state when no secret is provided (https://github.com/ansible-collections/community.general/pull/5994). +- keycloak_client - fix accidental replacement of value for attribute ``saml.signing.private.key`` with ``no_log`` in wrong contexts (https://github.com/ansible-collections/community.general/pull/5934). +- lxd_* modules, lxd inventory plugin - fix TLS/SSL certificate validation problems by using the correct purpose when creating the TLS context (https://github.com/ansible-collections/community.general/issues/5616, https://github.com/ansible-collections/community.general/pull/6034). +- nmcli - fix change handling of values specified as an integer 0 (https://github.com/ansible-collections/community.general/pull/5431). +- nmcli - fix failure to handle WIFI settings when connection type not specified (https://github.com/ansible-collections/community.general/pull/5431). +- nmcli - fix improper detection of changes to ``wifi.wake-on-wlan`` (https://github.com/ansible-collections/community.general/pull/5431). +- nmcli - order is significant for lists of addresses (https://github.com/ansible-collections/community.general/pull/6048). +- terraform and timezone - slight refactoring to avoid linter reporting potentially undefined variables (https://github.com/ansible-collections/community.general/pull/5933). +- various plugins and modules - remove unnecessary imports (https://github.com/ansible-collections/community.general/pull/5940). +- zfs_delegate_admin - zfs allow output can now be parsed when uids/gids are not known to the host system (https://github.com/ansible-collections/community.general/pull/5943). +- zypper - make package managing work on readonly filesystem of openSUSE MicroOS (https://github.com/ansible-collections/community.general/pull/5615). + v5.8.5 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 434194424c..6a22862388 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1487,3 +1487,44 @@ releases: - 5888-update-key-title.yml - 5914-dig-dnskey.yml release_date: '2023-01-31' + 5.8.6: + changes: + bugfixes: + - cartesian and flattened lookup plugins - adjust to parameter deprecation in + ansible-core 2.14's ``listify_lookup_plugin_terms`` helper function (https://github.com/ansible-collections/community.general/pull/6074). + - cloudflare_dns - fixed the idempotency for SRV DNS records (https://github.com/ansible-collections/community.general/pull/5972). + - cloudflare_dns - fixed the possiblity of setting a root-level SRV DNS record + (https://github.com/ansible-collections/community.general/pull/5972). + - github_webhook - fix always changed state when no secret is provided (https://github.com/ansible-collections/community.general/pull/5994). + - keycloak_client - fix accidental replacement of value for attribute ``saml.signing.private.key`` + with ``no_log`` in wrong contexts (https://github.com/ansible-collections/community.general/pull/5934). + - lxd_* modules, lxd inventory plugin - fix TLS/SSL certificate validation problems + by using the correct purpose when creating the TLS context (https://github.com/ansible-collections/community.general/issues/5616, + https://github.com/ansible-collections/community.general/pull/6034). + - nmcli - fix change handling of values specified as an integer 0 (https://github.com/ansible-collections/community.general/pull/5431). + - nmcli - fix failure to handle WIFI settings when connection type not specified + (https://github.com/ansible-collections/community.general/pull/5431). + - nmcli - fix improper detection of changes to ``wifi.wake-on-wlan`` (https://github.com/ansible-collections/community.general/pull/5431). + - nmcli - order is significant for lists of addresses (https://github.com/ansible-collections/community.general/pull/6048). + - terraform and timezone - slight refactoring to avoid linter reporting potentially + undefined variables (https://github.com/ansible-collections/community.general/pull/5933). + - various plugins and modules - remove unnecessary imports (https://github.com/ansible-collections/community.general/pull/5940). + - zfs_delegate_admin - zfs allow output can now be parsed when uids/gids are + not known to the host system (https://github.com/ansible-collections/community.general/pull/5943). + - zypper - make package managing work on readonly filesystem of openSUSE MicroOS + (https://github.com/ansible-collections/community.general/pull/5615). + release_summary: Regular bugfix release. + fragments: + - 5.8.6.yml + - 5431-nmcli-wifi.yml + - 5615-zypper-transactional-update.yml + - 5933-linting.yml + - 5934-fix-keycloak-sanitize_cr.yml + - 5943-zfs_delegate_admin-fix-zfs-allow-cannot-parse-unknown-uid-gid.yml + - 5972-cloudflare-dns-srv-record.yml + - 5994-github-webhook-secret.yml + - 6034-lxd-tls.yml + - 6048-nmcli-addres-order.yml + - 6074-loader_in_listify.yml.yml + - remove-unneeded-imports.yml + release_date: '2023-02-26' diff --git a/changelogs/fragments/5.8.6.yml b/changelogs/fragments/5.8.6.yml deleted file mode 100644 index 1b14bd80d1..0000000000 --- a/changelogs/fragments/5.8.6.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/5431-nmcli-wifi.yml b/changelogs/fragments/5431-nmcli-wifi.yml deleted file mode 100644 index 0f6f4edde5..0000000000 --- a/changelogs/fragments/5431-nmcli-wifi.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - nmcli - fix failure to handle WIFI settings when connection type not specified (https://github.com/ansible-collections/community.general/pull/5431). - - nmcli - fix improper detection of changes to ``wifi.wake-on-wlan`` (https://github.com/ansible-collections/community.general/pull/5431). - - nmcli - fix change handling of values specified as an integer 0 (https://github.com/ansible-collections/community.general/pull/5431). diff --git a/changelogs/fragments/5615-zypper-transactional-update.yml b/changelogs/fragments/5615-zypper-transactional-update.yml deleted file mode 100644 index 5eb6bb8405..0000000000 --- a/changelogs/fragments/5615-zypper-transactional-update.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "zypper - make package managing work on readonly filesystem of openSUSE MicroOS (https://github.com/ansible-collections/community.general/pull/5615)." diff --git a/changelogs/fragments/5933-linting.yml b/changelogs/fragments/5933-linting.yml deleted file mode 100644 index d0c46542bf..0000000000 --- a/changelogs/fragments/5933-linting.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "terraform and timezone - slight refactoring to avoid linter reporting potentially undefined variables (https://github.com/ansible-collections/community.general/pull/5933)." diff --git a/changelogs/fragments/5934-fix-keycloak-sanitize_cr.yml b/changelogs/fragments/5934-fix-keycloak-sanitize_cr.yml deleted file mode 100644 index 1c3163023c..0000000000 --- a/changelogs/fragments/5934-fix-keycloak-sanitize_cr.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "keycloak_client - fix accidental replacement of value for attribute ``saml.signing.private.key`` with ``no_log`` in wrong contexts (https://github.com/ansible-collections/community.general/pull/5934)." \ No newline at end of file diff --git a/changelogs/fragments/5943-zfs_delegate_admin-fix-zfs-allow-cannot-parse-unknown-uid-gid.yml b/changelogs/fragments/5943-zfs_delegate_admin-fix-zfs-allow-cannot-parse-unknown-uid-gid.yml deleted file mode 100644 index f07ca8a9a5..0000000000 --- a/changelogs/fragments/5943-zfs_delegate_admin-fix-zfs-allow-cannot-parse-unknown-uid-gid.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zfs_delegate_admin - zfs allow output can now be parsed when uids/gids are not known to the host system (https://github.com/ansible-collections/community.general/pull/5943). diff --git a/changelogs/fragments/5972-cloudflare-dns-srv-record.yml b/changelogs/fragments/5972-cloudflare-dns-srv-record.yml deleted file mode 100644 index a331b49d23..0000000000 --- a/changelogs/fragments/5972-cloudflare-dns-srv-record.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - "cloudflare_dns - fixed the possiblity of setting a root-level SRV DNS record (https://github.com/ansible-collections/community.general/pull/5972)." - - "cloudflare_dns - fixed the idempotency for SRV DNS records (https://github.com/ansible-collections/community.general/pull/5972)." diff --git a/changelogs/fragments/5994-github-webhook-secret.yml b/changelogs/fragments/5994-github-webhook-secret.yml deleted file mode 100644 index 700703840c..0000000000 --- a/changelogs/fragments/5994-github-webhook-secret.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - github_webhook - fix always changed state when no secret is provided (https://github.com/ansible-collections/community.general/pull/5994). \ No newline at end of file diff --git a/changelogs/fragments/6034-lxd-tls.yml b/changelogs/fragments/6034-lxd-tls.yml deleted file mode 100644 index 975215f3e5..0000000000 --- a/changelogs/fragments/6034-lxd-tls.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "lxd_* modules, lxd inventory plugin - fix TLS/SSL certificate validation problems by using the correct purpose when creating the TLS context (https://github.com/ansible-collections/community.general/issues/5616, https://github.com/ansible-collections/community.general/pull/6034)." diff --git a/changelogs/fragments/6048-nmcli-addres-order.yml b/changelogs/fragments/6048-nmcli-addres-order.yml deleted file mode 100644 index 4de15cf084..0000000000 --- a/changelogs/fragments/6048-nmcli-addres-order.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nmcli - order is significant for lists of addresses (https://github.com/ansible-collections/community.general/pull/6048). diff --git a/changelogs/fragments/6074-loader_in_listify.yml.yml b/changelogs/fragments/6074-loader_in_listify.yml.yml deleted file mode 100644 index 9a0852a88e..0000000000 --- a/changelogs/fragments/6074-loader_in_listify.yml.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cartesian and flattened lookup plugins - adjust to parameter deprecation in ansible-core 2.14's ``listify_lookup_plugin_terms`` helper function (https://github.com/ansible-collections/community.general/pull/6074). diff --git a/changelogs/fragments/remove-unneeded-imports.yml b/changelogs/fragments/remove-unneeded-imports.yml deleted file mode 100644 index a5fed1d93e..0000000000 --- a/changelogs/fragments/remove-unneeded-imports.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "various plugins and modules - remove unnecessary imports (https://github.com/ansible-collections/community.general/pull/5940)."