diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b84887f2d9..050f6566d9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,33 @@ Community General Release Notes This changelog describes changes after version 2.0.0. +v3.8.7 +====== + +Release Summary +--------------- + +Regular maintenance release. + +Major Changes +------------- + +- The community.general 3.x.y release stream will from now on only receive major bugfixes and security fixes. There will be no more regular bugfix releases, or regular bugfixes backported to the ``stable-3`` branch. + +Bugfixes +-------- + +- Include ``PSF-license.txt`` file for ``plugins/module_utils/_version.py``. +- consul - fixed bug where class ``ConsulService`` was overwriting the field ``checks``, preventing the addition of checks to a service (https://github.com/ansible-collections/community.general/pull/4590). +- dnsmadeeasy - fix failure on deleting DNS entries when API response does not contain monitor value (https://github.com/ansible-collections/community.general/issues/3620). +- gconftool2 - properly escape values when passing them to ``gconftool-2`` (https://github.com/ansible-collections/community.general/pull/4647). +- keycloak - fix parameters types for ``defaultDefaultClientScopes`` and ``defaultOptionalClientScopes`` from list of dictionaries to list of strings (https://github.com/ansible-collections/community.general/pull/4526). +- onepassword - search all valid configuration locations and use the first found (https://github.com/ansible-collections/community.general/pull/4640). +- opentelemetry callback plugin - fix warning for the include_tasks (https://github.com/ansible-collections/community.general/pull/4623). +- pritunl - fixed bug where pritunl plugin api add unneeded data in ``auth_string`` parameter (https://github.com/ansible-collections/community.general/issues/4527). +- terraform - fix list initialization to support both Python 2 and Python 3 (https://github.com/ansible-collections/community.general/issues/4531). +- xbps - fix error message that is reported when installing packages fails (https://github.com/ansible-collections/community.general/pull/4438). + v3.8.6 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index a7a626e5f3..43968b79c8 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -2140,3 +2140,40 @@ releases: - 4421-zypper_package_version_handling_fix.yml - 4422-warn-user-if-incorrect-SDK-version-is-installed.yaml release_date: '2022-04-05' + 3.8.7: + changes: + bugfixes: + - Include ``PSF-license.txt`` file for ``plugins/module_utils/_version.py``. + - consul - fixed bug where class ``ConsulService`` was overwriting the field + ``checks``, preventing the addition of checks to a service (https://github.com/ansible-collections/community.general/pull/4590). + - dnsmadeeasy - fix failure on deleting DNS entries when API response does not + contain monitor value (https://github.com/ansible-collections/community.general/issues/3620). + - gconftool2 - properly escape values when passing them to ``gconftool-2`` (https://github.com/ansible-collections/community.general/pull/4647). + - keycloak - fix parameters types for ``defaultDefaultClientScopes`` and ``defaultOptionalClientScopes`` + from list of dictionaries to list of strings (https://github.com/ansible-collections/community.general/pull/4526). + - onepassword - search all valid configuration locations and use the first found + (https://github.com/ansible-collections/community.general/pull/4640). + - opentelemetry callback plugin - fix warning for the include_tasks (https://github.com/ansible-collections/community.general/pull/4623). + - pritunl - fixed bug where pritunl plugin api add unneeded data in ``auth_string`` + parameter (https://github.com/ansible-collections/community.general/issues/4527). + - terraform - fix list initialization to support both Python 2 and Python 3 + (https://github.com/ansible-collections/community.general/issues/4531). + - xbps - fix error message that is reported when installing packages fails (https://github.com/ansible-collections/community.general/pull/4438). + major_changes: + - The community.general 3.x.y release stream will from now on only receive major + bugfixes and security fixes. There will be no more regular bugfix releases, + or regular bugfixes backported to the ``stable-3`` branch. + release_summary: Regular maintenance release. + fragments: + - 3.8.7.yml + - 4065-onepassword-config.yml + - 4438-fix-error-message.yaml + - 4459-only-get-monitor-if-it-is-not-null-api-response.yaml + - 4526-keycloak-realm-types.yaml + - 4530-fix-unauthorized-pritunl-request.yaml + - 4590-consul-fix-service-checks.yaml + - 4621-terraform-py2-compat.yml + - 4623-opentelemetry_bug_fix_include_tasks.yml + - 4647-gconftool2-command-arg.yaml + - psf-license.yml + release_date: '2022-05-16' diff --git a/changelogs/fragments/3.8.7.yml b/changelogs/fragments/3.8.7.yml deleted file mode 100644 index aa018a90cc..0000000000 --- a/changelogs/fragments/3.8.7.yml +++ /dev/null @@ -1,3 +0,0 @@ -release_summary: Regular maintenance release. -major_changes: - - The community.general 3.x.y release stream will from now on only receive major bugfixes and security fixes. There will be no more regular bugfix releases, or regular bugfixes backported to the ``stable-3`` branch. diff --git a/changelogs/fragments/4065-onepassword-config.yml b/changelogs/fragments/4065-onepassword-config.yml deleted file mode 100644 index 9d58a0e57f..0000000000 --- a/changelogs/fragments/4065-onepassword-config.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - onepassword - search all valid configuration locations and use the first found (https://github.com/ansible-collections/community.general/pull/4640). diff --git a/changelogs/fragments/4438-fix-error-message.yaml b/changelogs/fragments/4438-fix-error-message.yaml deleted file mode 100644 index 67c7050218..0000000000 --- a/changelogs/fragments/4438-fix-error-message.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - xbps - fix error message that is reported when installing packages fails (https://github.com/ansible-collections/community.general/pull/4438). diff --git a/changelogs/fragments/4459-only-get-monitor-if-it-is-not-null-api-response.yaml b/changelogs/fragments/4459-only-get-monitor-if-it-is-not-null-api-response.yaml deleted file mode 100644 index 88d0f401ea..0000000000 --- a/changelogs/fragments/4459-only-get-monitor-if-it-is-not-null-api-response.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - dnsmadeeasy - fix failure on deleting DNS entries when API response does not contain monitor value (https://github.com/ansible-collections/community.general/issues/3620). \ No newline at end of file diff --git a/changelogs/fragments/4526-keycloak-realm-types.yaml b/changelogs/fragments/4526-keycloak-realm-types.yaml deleted file mode 100644 index ff1699d7f8..0000000000 --- a/changelogs/fragments/4526-keycloak-realm-types.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - keycloak - fix parameters types for ``defaultDefaultClientScopes`` and ``defaultOptionalClientScopes`` from list of dictionaries to list of strings (https://github.com/ansible-collections/community.general/pull/4526). diff --git a/changelogs/fragments/4530-fix-unauthorized-pritunl-request.yaml b/changelogs/fragments/4530-fix-unauthorized-pritunl-request.yaml deleted file mode 100644 index 6b5bbd716d..0000000000 --- a/changelogs/fragments/4530-fix-unauthorized-pritunl-request.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - pritunl - fixed bug where pritunl plugin api add unneeded data in ``auth_string`` parameter (https://github.com/ansible-collections/community.general/issues/4527). diff --git a/changelogs/fragments/4590-consul-fix-service-checks.yaml b/changelogs/fragments/4590-consul-fix-service-checks.yaml deleted file mode 100644 index 42a5562a0e..0000000000 --- a/changelogs/fragments/4590-consul-fix-service-checks.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - consul - fixed bug where class ``ConsulService`` was overwriting the field ``checks``, preventing the addition of checks to a service (https://github.com/ansible-collections/community.general/pull/4590). diff --git a/changelogs/fragments/4621-terraform-py2-compat.yml b/changelogs/fragments/4621-terraform-py2-compat.yml deleted file mode 100644 index 4bceafba6c..0000000000 --- a/changelogs/fragments/4621-terraform-py2-compat.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - terraform - fix list initialization to support both Python 2 and Python 3 (https://github.com/ansible-collections/community.general/issues/4531). diff --git a/changelogs/fragments/4623-opentelemetry_bug_fix_include_tasks.yml b/changelogs/fragments/4623-opentelemetry_bug_fix_include_tasks.yml deleted file mode 100644 index a18ba62ef5..0000000000 --- a/changelogs/fragments/4623-opentelemetry_bug_fix_include_tasks.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - opentelemetry callback plugin - fix warning for the include_tasks (https://github.com/ansible-collections/community.general/pull/4623). diff --git a/changelogs/fragments/4647-gconftool2-command-arg.yaml b/changelogs/fragments/4647-gconftool2-command-arg.yaml deleted file mode 100644 index 12913a0b90..0000000000 --- a/changelogs/fragments/4647-gconftool2-command-arg.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - gconftool2 - properly escape values when passing them to ``gconftool-2`` (https://github.com/ansible-collections/community.general/pull/4647). diff --git a/changelogs/fragments/psf-license.yml b/changelogs/fragments/psf-license.yml deleted file mode 100644 index f8fbc0bdd8..0000000000 --- a/changelogs/fragments/psf-license.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Include ``PSF-license.txt`` file for ``plugins/module_utils/_version.py``.