From a3c711491a7ab1bd211913a2cf1ea9d3a2cecf87 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 19 Jun 2023 19:29:50 +0200 Subject: [PATCH] Release 6.6.2. --- CHANGELOG.rst | 17 ++++++++++++++ changelogs/changelog.yaml | 22 +++++++++++++++++++ changelogs/fragments/6.6.2.yml | 1 - ...r-by-username-in-keycloak-module-utils.yml | 2 -- changelogs/fragments/6662-csv-bom.yml | 2 -- ...-is-struct-included-bug-in-keycloak-py.yml | 2 -- ...-gitlab_group-filtered-for-none-values.yml | 2 -- ...ile-use-inactive-options-when-possible.yml | 3 --- 8 files changed, 39 insertions(+), 12 deletions(-) delete mode 100644 changelogs/fragments/6.6.2.yml delete mode 100644 changelogs/fragments/6568-fix-get-user-by-username-in-keycloak-module-utils.yml delete mode 100644 changelogs/fragments/6662-csv-bom.yml delete mode 100644 changelogs/fragments/6688-is-struct-included-bug-in-keycloak-py.yml delete mode 100644 changelogs/fragments/6712-gitlab_group-filtered-for-none-values.yml delete mode 100644 changelogs/fragments/ini_file-use-inactive-options-when-possible.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6d176ab6af..9ddf616c39 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,23 @@ Community General Release Notes This changelog describes changes after version 5.0.0. +v6.6.2 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- csv module utils - detects and remove unicode BOM markers from incoming CSV content (https://github.com/ansible-collections/community.general/pull/6662). +- gitlab_group - the module passed parameters to the API call even when not set. The module is now filtering out ``None`` values to remediate this (https://github.com/ansible-collections/community.general/pull/6712). +- ini_file - fix a bug where the inactive options were not used when possible (https://github.com/ansible-collections/community.general/pull/6575). +- keycloak module utils - fix ``is_struct_included`` handling of lists of lists/dictionaries (https://github.com/ansible-collections/community.general/pull/6688). +- keycloak module utils - the function ``get_user_by_username`` now return the user representation or ``None`` as stated in the documentation (https://github.com/ansible-collections/community.general/pull/6758). + v6.6.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 7b208dbf3f..3b6438f625 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1402,3 +1402,25 @@ releases: - deps.yml - passwordstore-lock.yml release_date: '2023-05-22' + 6.6.2: + changes: + bugfixes: + - csv module utils - detects and remove unicode BOM markers from incoming CSV + content (https://github.com/ansible-collections/community.general/pull/6662). + - gitlab_group - the module passed parameters to the API call even when not + set. The module is now filtering out ``None`` values to remediate this (https://github.com/ansible-collections/community.general/pull/6712). + - ini_file - fix a bug where the inactive options were not used when possible + (https://github.com/ansible-collections/community.general/pull/6575). + - keycloak module utils - fix ``is_struct_included`` handling of lists of lists/dictionaries + (https://github.com/ansible-collections/community.general/pull/6688). + - keycloak module utils - the function ``get_user_by_username`` now return the + user representation or ``None`` as stated in the documentation (https://github.com/ansible-collections/community.general/pull/6758). + release_summary: Regular bugfix release. + fragments: + - 6.6.2.yml + - 6568-fix-get-user-by-username-in-keycloak-module-utils.yml + - 6662-csv-bom.yml + - 6688-is-struct-included-bug-in-keycloak-py.yml + - 6712-gitlab_group-filtered-for-none-values.yml + - ini_file-use-inactive-options-when-possible.yml + release_date: '2023-06-19' diff --git a/changelogs/fragments/6.6.2.yml b/changelogs/fragments/6.6.2.yml deleted file mode 100644 index 3c57f0388e..0000000000 --- a/changelogs/fragments/6.6.2.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. \ No newline at end of file diff --git a/changelogs/fragments/6568-fix-get-user-by-username-in-keycloak-module-utils.yml b/changelogs/fragments/6568-fix-get-user-by-username-in-keycloak-module-utils.yml deleted file mode 100644 index 4983c507c5..0000000000 --- a/changelogs/fragments/6568-fix-get-user-by-username-in-keycloak-module-utils.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - keycloak module utils - the function ``get_user_by_username`` now return the user representation or ``None`` as stated in the documentation (https://github.com/ansible-collections/community.general/pull/6758). diff --git a/changelogs/fragments/6662-csv-bom.yml b/changelogs/fragments/6662-csv-bom.yml deleted file mode 100644 index e9c617219c..0000000000 --- a/changelogs/fragments/6662-csv-bom.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - csv module utils - detects and remove unicode BOM markers from incoming CSV content (https://github.com/ansible-collections/community.general/pull/6662). diff --git a/changelogs/fragments/6688-is-struct-included-bug-in-keycloak-py.yml b/changelogs/fragments/6688-is-struct-included-bug-in-keycloak-py.yml deleted file mode 100644 index 92546d8eca..0000000000 --- a/changelogs/fragments/6688-is-struct-included-bug-in-keycloak-py.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - keycloak module utils - fix ``is_struct_included`` handling of lists of lists/dictionaries (https://github.com/ansible-collections/community.general/pull/6688). \ No newline at end of file diff --git a/changelogs/fragments/6712-gitlab_group-filtered-for-none-values.yml b/changelogs/fragments/6712-gitlab_group-filtered-for-none-values.yml deleted file mode 100644 index 53c02d4588..0000000000 --- a/changelogs/fragments/6712-gitlab_group-filtered-for-none-values.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - gitlab_group - the module passed parameters to the API call even when not set. The module is now filtering out ``None`` values to remediate this (https://github.com/ansible-collections/community.general/pull/6712). diff --git a/changelogs/fragments/ini_file-use-inactive-options-when-possible.yml b/changelogs/fragments/ini_file-use-inactive-options-when-possible.yml deleted file mode 100644 index 32b45bbeda..0000000000 --- a/changelogs/fragments/ini_file-use-inactive-options-when-possible.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ini_file - fix a bug where the inactive options were not used when possible (https://github.com/ansible-collections/community.general/pull/6575).