From 01134d4625b0c5eec9b255158116e9e018d51dba Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 4 Nov 2023 12:23:01 +0100 Subject: [PATCH] Release 6.6.7. --- CHANGELOG.rst | 24 ++++++++++++ changelogs/changelog.yaml | 38 +++++++++++++++++++ .../3787-pass-composer-working-dir.yml | 2 - changelogs/fragments/6.6.7.yml | 4 -- changelogs/fragments/7369-fix-lxc-options.yml | 3 -- ...fix-selective-callback-taskname-length.yml | 2 - .../7375-fix-github-deploy-key-pagination.yml | 3 -- ...edhat_subscription-dbus-consumer-type.yaml | 6 --- changelogs/fragments/7379-url.yml | 2 - 9 files changed, 62 insertions(+), 22 deletions(-) delete mode 100644 changelogs/fragments/3787-pass-composer-working-dir.yml delete mode 100644 changelogs/fragments/6.6.7.yml delete mode 100644 changelogs/fragments/7369-fix-lxc-options.yml delete mode 100644 changelogs/fragments/7374-fix-selective-callback-taskname-length.yml delete mode 100644 changelogs/fragments/7375-fix-github-deploy-key-pagination.yml delete mode 100644 changelogs/fragments/7378-redhat_subscription-dbus-consumer-type.yaml delete mode 100644 changelogs/fragments/7379-url.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f07bb862bd..782d43d244 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,30 @@ Community General Release Notes This changelog describes changes after version 5.0.0. +v6.6.7 +====== + +Release Summary +--------------- + +Bugfix release. + +From now on, community.general 6.x.y will only receive major bugfixes and security fixes anymore. + + +Bugfixes +-------- + +- composer - fix impossible to run ``working_dir`` dependent commands. The module was throwing an error when trying to run a ``working_dir`` dependent command, because it tried to get the command help without passing the ``working_dir`` (https://github.com/ansible-collections/community.general/issues/3787). +- github_deploy_key - fix pagination behaviour causing a crash when only a single page of deploy keys exist (https://github.com/ansible-collections/community.general/pull/7375). +- lxc connection plugin - properly evaluate options (https://github.com/ansible-collections/community.general/pull/7369). +- memset module utils - make compatible with ansible-core 2.17 (https://github.com/ansible-collections/community.general/pull/7379). +- redhat_subscription - use the right D-Bus options for the consumer type when + registering a RHEL system older than 9 or a RHEL 9 system older than 9.2 + and using ``consumer_type`` + (https://github.com/ansible-collections/community.general/pull/7378). +- selective callback plugin - fix length of task name lines in output always being 3 characters longer than desired (https://github.com/ansible-collections/community.general/pull/7374). + v6.6.6 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 633888a915..20b9a2d53f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1573,3 +1573,41 @@ releases: - 7301-fix-backend-config-string-encapsulation.yml - 7303-mail-incorrect-header-parsing.yml release_date: '2023-10-08' + 6.6.7: + changes: + bugfixes: + - composer - fix impossible to run ``working_dir`` dependent commands. The module + was throwing an error when trying to run a ``working_dir`` dependent command, + because it tried to get the command help without passing the ``working_dir`` + (https://github.com/ansible-collections/community.general/issues/3787). + - github_deploy_key - fix pagination behaviour causing a crash when only a single + page of deploy keys exist (https://github.com/ansible-collections/community.general/pull/7375). + - lxc connection plugin - properly evaluate options (https://github.com/ansible-collections/community.general/pull/7369). + - memset module utils - make compatible with ansible-core 2.17 (https://github.com/ansible-collections/community.general/pull/7379). + - 'redhat_subscription - use the right D-Bus options for the consumer type when + + registering a RHEL system older than 9 or a RHEL 9 system older than 9.2 + + and using ``consumer_type`` + + (https://github.com/ansible-collections/community.general/pull/7378). + + ' + - selective callback plugin - fix length of task name lines in output always + being 3 characters longer than desired (https://github.com/ansible-collections/community.general/pull/7374). + release_summary: 'Bugfix release. + + + From now on, community.general 6.x.y will only receive major bugfixes and + security fixes anymore. + + ' + fragments: + - 3787-pass-composer-working-dir.yml + - 6.6.7.yml + - 7369-fix-lxc-options.yml + - 7374-fix-selective-callback-taskname-length.yml + - 7375-fix-github-deploy-key-pagination.yml + - 7378-redhat_subscription-dbus-consumer-type.yaml + - 7379-url.yml + release_date: '2023-11-04' diff --git a/changelogs/fragments/3787-pass-composer-working-dir.yml b/changelogs/fragments/3787-pass-composer-working-dir.yml deleted file mode 100644 index 19687d7723..0000000000 --- a/changelogs/fragments/3787-pass-composer-working-dir.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - composer - fix impossible to run ``working_dir`` dependent commands. The module was throwing an error when trying to run a ``working_dir`` dependent command, because it tried to get the command help without passing the ``working_dir`` (https://github.com/ansible-collections/community.general/issues/3787). diff --git a/changelogs/fragments/6.6.7.yml b/changelogs/fragments/6.6.7.yml deleted file mode 100644 index 58065d645f..0000000000 --- a/changelogs/fragments/6.6.7.yml +++ /dev/null @@ -1,4 +0,0 @@ -release_summary: | - Bugfix release. - - From now on, community.general 6.x.y will only receive major bugfixes and security fixes anymore. diff --git a/changelogs/fragments/7369-fix-lxc-options.yml b/changelogs/fragments/7369-fix-lxc-options.yml deleted file mode 100644 index c909f34603..0000000000 --- a/changelogs/fragments/7369-fix-lxc-options.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - lxc connection plugin - properly evaluate options (https://github.com/ansible-collections/community.general/pull/7369). diff --git a/changelogs/fragments/7374-fix-selective-callback-taskname-length.yml b/changelogs/fragments/7374-fix-selective-callback-taskname-length.yml deleted file mode 100644 index 1c48f48e05..0000000000 --- a/changelogs/fragments/7374-fix-selective-callback-taskname-length.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "selective callback plugin - fix length of task name lines in output always being 3 characters longer than desired (https://github.com/ansible-collections/community.general/pull/7374)." diff --git a/changelogs/fragments/7375-fix-github-deploy-key-pagination.yml b/changelogs/fragments/7375-fix-github-deploy-key-pagination.yml deleted file mode 100644 index c95da981c6..0000000000 --- a/changelogs/fragments/7375-fix-github-deploy-key-pagination.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "github_deploy_key - fix pagination behaviour causing a crash when only a single page of deploy keys exist (https://github.com/ansible-collections/community.general/pull/7375)." \ No newline at end of file diff --git a/changelogs/fragments/7378-redhat_subscription-dbus-consumer-type.yaml b/changelogs/fragments/7378-redhat_subscription-dbus-consumer-type.yaml deleted file mode 100644 index c1ec80ae21..0000000000 --- a/changelogs/fragments/7378-redhat_subscription-dbus-consumer-type.yaml +++ /dev/null @@ -1,6 +0,0 @@ -bugfixes: - - | - redhat_subscription - use the right D-Bus options for the consumer type when - registering a RHEL system older than 9 or a RHEL 9 system older than 9.2 - and using ``consumer_type`` - (https://github.com/ansible-collections/community.general/pull/7378). diff --git a/changelogs/fragments/7379-url.yml b/changelogs/fragments/7379-url.yml deleted file mode 100644 index 818f14ed50..0000000000 --- a/changelogs/fragments/7379-url.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "memset module utils - make compatible with ansible-core 2.17 (https://github.com/ansible-collections/community.general/pull/7379)." \ No newline at end of file