From ba9ec71dba3b3773a994e034c9323b3f15b30f72 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 16 May 2022 12:33:05 +0200 Subject: [PATCH] Release 4.8.1. --- CHANGELOG.rst | 19 ++++++++++++++ changelogs/changelog.yaml | 26 +++++++++++++++++++ changelogs/fragments/4.8.1.yml | 1 - .../fragments/4065-onepassword-config.yml | 2 -- .../4590-consul-fix-service-checks.yaml | 2 -- .../fragments/4621-terraform-py2-compat.yml | 2 -- ...23-opentelemetry_bug_fix_include_tasks.yml | 2 -- ...-opentelemetry_bug_fix_hardcoded_value.yml | 2 -- .../4647-gconftool2-command-arg.yaml | 2 -- changelogs/fragments/psf-license.yml | 2 -- 10 files changed, 45 insertions(+), 15 deletions(-) delete mode 100644 changelogs/fragments/4.8.1.yml delete mode 100644 changelogs/fragments/4065-onepassword-config.yml delete mode 100644 changelogs/fragments/4590-consul-fix-service-checks.yaml delete mode 100644 changelogs/fragments/4621-terraform-py2-compat.yml delete mode 100644 changelogs/fragments/4623-opentelemetry_bug_fix_include_tasks.yml delete mode 100644 changelogs/fragments/4624-opentelemetry_bug_fix_hardcoded_value.yml delete mode 100644 changelogs/fragments/4647-gconftool2-command-arg.yaml delete mode 100644 changelogs/fragments/psf-license.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3b37ef46ad..bd95fb092b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,25 @@ Community General Release Notes This changelog describes changes after version 3.0.0. +v4.8.1 +====== + +Release Summary +--------------- + +Regular bugfix release. From now on, only bugfix release will be made of the community.general 4.x.y release stream. + +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). +- gconftool2 - properly escape values when passing them to ``gconftool-2`` (https://github.com/ansible-collections/community.general/pull/4647). +- onepassword - search all valid configuration locations and use the first found (https://github.com/ansible-collections/community.general/pull/4640). +- opentelemetry callback plugin - fix task message attribute that is reported failed regardless of the task result (https://github.com/ansible-collections/community.general/pull/4624). +- opentelemetry callback plugin - fix warning for the include_tasks (https://github.com/ansible-collections/community.general/pull/4623). +- terraform - fix list initialization to support both Python 2 and Python 3 (https://github.com/ansible-collections/community.general/issues/4531). + v4.8.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 83af7d42d7..17023eba80 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1782,3 +1782,29 @@ releases: name: lxd_project namespace: cloud.lxd release_date: '2022-04-26' + 4.8.1: + 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). + - gconftool2 - properly escape values when passing them to ``gconftool-2`` (https://github.com/ansible-collections/community.general/pull/4647). + - onepassword - search all valid configuration locations and use the first found + (https://github.com/ansible-collections/community.general/pull/4640). + - opentelemetry callback plugin - fix task message attribute that is reported + failed regardless of the task result (https://github.com/ansible-collections/community.general/pull/4624). + - opentelemetry callback plugin - fix warning for the include_tasks (https://github.com/ansible-collections/community.general/pull/4623). + - terraform - fix list initialization to support both Python 2 and Python 3 + (https://github.com/ansible-collections/community.general/issues/4531). + release_summary: Regular bugfix release. From now on, only bugfix release will + be made of the community.general 4.x.y release stream. + fragments: + - 4.8.1.yml + - 4065-onepassword-config.yml + - 4590-consul-fix-service-checks.yaml + - 4621-terraform-py2-compat.yml + - 4623-opentelemetry_bug_fix_include_tasks.yml + - 4624-opentelemetry_bug_fix_hardcoded_value.yml + - 4647-gconftool2-command-arg.yaml + - psf-license.yml + release_date: '2022-05-16' diff --git a/changelogs/fragments/4.8.1.yml b/changelogs/fragments/4.8.1.yml deleted file mode 100644 index 06f38c793a..0000000000 --- a/changelogs/fragments/4.8.1.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. From now on, only bugfix release will be made of the community.general 4.x.y release stream. 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/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/4624-opentelemetry_bug_fix_hardcoded_value.yml b/changelogs/fragments/4624-opentelemetry_bug_fix_hardcoded_value.yml deleted file mode 100644 index 53d241eca8..0000000000 --- a/changelogs/fragments/4624-opentelemetry_bug_fix_hardcoded_value.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - opentelemetry callback plugin - fix task message attribute that is reported failed regardless of the task result (https://github.com/ansible-collections/community.general/pull/4624). 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``.