diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a6b3b5e2d0..6d176ab6af 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,33 @@ Community General Release Notes This changelog describes changes after version 5.0.0. +v6.6.1 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Minor Changes +------------- + +- dconf - if ``gi.repository.GLib`` is missing, try to respawn in a Python interpreter that has it (https://github.com/ansible-collections/community.general/pull/6491). + +Bugfixes +-------- + +- deps module utils - do not fail when dependency cannot be found (https://github.com/ansible-collections/community.general/pull/6479). +- nmcli - fix bond option ``xmit_hash_policy`` (https://github.com/ansible-collections/community.general/pull/6527). +- passwordstore lookup plugin - make compatible with ansible-core 2.16 (https://github.com/ansible-collections/community.general/pull/6447). +- portage - fix ``changed_use`` and ``newuse`` not triggering rebuilds (https://github.com/ansible-collections/community.general/issues/6008, https://github.com/ansible-collections/community.general/pull/6548). +- portage - update the logic for generating the emerge command arguments to ensure that ``withbdeps: false`` results in a passing an ``n`` argument with the ``--with-bdeps`` emerge flag (https://github.com/ansible-collections/community.general/issues/6451, https://github.com/ansible-collections/community.general/pull/6456). +- proxmox_tasks_info - remove ``api_user`` + ``api_password`` constraint from ``required_together`` as it causes to require ``api_password`` even when API token param is used (https://github.com/ansible-collections/community.general/issues/6201). +- puppet - handling ``noop`` parameter was not working at all, now it is has been fixed (https://github.com/ansible-collections/community.general/issues/6452, https://github.com/ansible-collections/community.general/issues/6458). +- terraform - fix broken ``warn()`` call (https://github.com/ansible-collections/community.general/pull/6497). +- xfs_quota - in case of a project quota, the call to ``xfs_quota`` did not initialize/reset the project (https://github.com/ansible-collections/community.general/issues/5143). +- zypper - added handling of zypper exitcode 102. Changed state is set correctly now and rc 102 is still preserved to be evaluated by the playbook (https://github.com/ansible-collections/community.general/pull/6534). + v6.6.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index d1ba1452e5..7b208dbf3f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1361,3 +1361,44 @@ releases: name: keycloak_clientscope_type namespace: '' release_date: '2023-04-24' + 6.6.1: + changes: + bugfixes: + - deps module utils - do not fail when dependency cannot be found (https://github.com/ansible-collections/community.general/pull/6479). + - nmcli - fix bond option ``xmit_hash_policy`` (https://github.com/ansible-collections/community.general/pull/6527). + - passwordstore lookup plugin - make compatible with ansible-core 2.16 (https://github.com/ansible-collections/community.general/pull/6447). + - portage - fix ``changed_use`` and ``newuse`` not triggering rebuilds (https://github.com/ansible-collections/community.general/issues/6008, + https://github.com/ansible-collections/community.general/pull/6548). + - 'portage - update the logic for generating the emerge command arguments to + ensure that ``withbdeps: false`` results in a passing an ``n`` argument with + the ``--with-bdeps`` emerge flag (https://github.com/ansible-collections/community.general/issues/6451, + https://github.com/ansible-collections/community.general/pull/6456).' + - proxmox_tasks_info - remove ``api_user`` + ``api_password`` constraint from + ``required_together`` as it causes to require ``api_password`` even when API + token param is used (https://github.com/ansible-collections/community.general/issues/6201). + - puppet - handling ``noop`` parameter was not working at all, now it is has + been fixed (https://github.com/ansible-collections/community.general/issues/6452, + https://github.com/ansible-collections/community.general/issues/6458). + - terraform - fix broken ``warn()`` call (https://github.com/ansible-collections/community.general/pull/6497). + - xfs_quota - in case of a project quota, the call to ``xfs_quota`` did not + initialize/reset the project (https://github.com/ansible-collections/community.general/issues/5143). + - zypper - added handling of zypper exitcode 102. Changed state is set correctly + now and rc 102 is still preserved to be evaluated by the playbook (https://github.com/ansible-collections/community.general/pull/6534). + minor_changes: + - dconf - if ``gi.repository.GLib`` is missing, try to respawn in a Python interpreter + that has it (https://github.com/ansible-collections/community.general/pull/6491). + release_summary: Regular bugfix release. + fragments: + - 5143-fix-xfs-quota-project-init.yml + - 6.6.1.yml + - 6456-fix-portage-withbdeps-false.yml + - 6458-puppet-noop.yml + - 6491-dconf-respawn.yml + - 6497-terraform-fix.yml + - 6527-nmcli-bond-fix-xmit_hash_policy.yml + - 6534-zypper-exitcode-102-handled.yaml + - 6548-portage-changed_use-newuse.yml + - 6554-proxmox-tasks-info-fix-required-password.yaml + - deps.yml + - passwordstore-lock.yml + release_date: '2023-05-22' diff --git a/changelogs/fragments/5143-fix-xfs-quota-project-init.yml b/changelogs/fragments/5143-fix-xfs-quota-project-init.yml deleted file mode 100644 index 6915cb14e3..0000000000 --- a/changelogs/fragments/5143-fix-xfs-quota-project-init.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - xfs_quota - in case of a project quota, the call to ``xfs_quota`` did not initialize/reset the project (https://github.com/ansible-collections/community.general/issues/5143). diff --git a/changelogs/fragments/6.6.1.yml b/changelogs/fragments/6.6.1.yml deleted file mode 100644 index 1b14bd80d1..0000000000 --- a/changelogs/fragments/6.6.1.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/6456-fix-portage-withbdeps-false.yml b/changelogs/fragments/6456-fix-portage-withbdeps-false.yml deleted file mode 100644 index 5227d3ff19..0000000000 --- a/changelogs/fragments/6456-fix-portage-withbdeps-false.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "portage - update the logic for generating the emerge command arguments to ensure that ``withbdeps: false`` results in a passing an ``n`` argument with the ``--with-bdeps`` emerge flag (https://github.com/ansible-collections/community.general/issues/6451, https://github.com/ansible-collections/community.general/pull/6456)." diff --git a/changelogs/fragments/6458-puppet-noop.yml b/changelogs/fragments/6458-puppet-noop.yml deleted file mode 100644 index 85e65aca40..0000000000 --- a/changelogs/fragments/6458-puppet-noop.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - puppet - handling ``noop`` parameter was not working at all, now it is has been fixed (https://github.com/ansible-collections/community.general/issues/6452, https://github.com/ansible-collections/community.general/issues/6458). diff --git a/changelogs/fragments/6491-dconf-respawn.yml b/changelogs/fragments/6491-dconf-respawn.yml deleted file mode 100644 index 54eec9fa1a..0000000000 --- a/changelogs/fragments/6491-dconf-respawn.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - dconf - if ``gi.repository.GLib`` is missing, try to respawn in a Python interpreter that has it (https://github.com/ansible-collections/community.general/pull/6491). diff --git a/changelogs/fragments/6497-terraform-fix.yml b/changelogs/fragments/6497-terraform-fix.yml deleted file mode 100644 index 8b5119722c..0000000000 --- a/changelogs/fragments/6497-terraform-fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "terraform - fix broken ``warn()`` call (https://github.com/ansible-collections/community.general/pull/6497)." diff --git a/changelogs/fragments/6527-nmcli-bond-fix-xmit_hash_policy.yml b/changelogs/fragments/6527-nmcli-bond-fix-xmit_hash_policy.yml deleted file mode 100644 index 5133920b73..0000000000 --- a/changelogs/fragments/6527-nmcli-bond-fix-xmit_hash_policy.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nmcli - fix bond option ``xmit_hash_policy`` (https://github.com/ansible-collections/community.general/pull/6527). diff --git a/changelogs/fragments/6534-zypper-exitcode-102-handled.yaml b/changelogs/fragments/6534-zypper-exitcode-102-handled.yaml deleted file mode 100644 index baed17cae5..0000000000 --- a/changelogs/fragments/6534-zypper-exitcode-102-handled.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zypper - added handling of zypper exitcode 102. Changed state is set correctly now and rc 102 is still preserved to be evaluated by the playbook (https://github.com/ansible-collections/community.general/pull/6534). \ No newline at end of file diff --git a/changelogs/fragments/6548-portage-changed_use-newuse.yml b/changelogs/fragments/6548-portage-changed_use-newuse.yml deleted file mode 100644 index 0d1ba55e09..0000000000 --- a/changelogs/fragments/6548-portage-changed_use-newuse.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - portage - fix ``changed_use`` and ``newuse`` not triggering rebuilds (https://github.com/ansible-collections/community.general/issues/6008, https://github.com/ansible-collections/community.general/pull/6548). diff --git a/changelogs/fragments/6554-proxmox-tasks-info-fix-required-password.yaml b/changelogs/fragments/6554-proxmox-tasks-info-fix-required-password.yaml deleted file mode 100644 index 6edfa475c1..0000000000 --- a/changelogs/fragments/6554-proxmox-tasks-info-fix-required-password.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - proxmox_tasks_info - remove ``api_user`` + ``api_password`` constraint from ``required_together`` as it causes to require ``api_password`` even when API token param is used (https://github.com/ansible-collections/community.general/issues/6201). diff --git a/changelogs/fragments/deps.yml b/changelogs/fragments/deps.yml deleted file mode 100644 index 2ad1b7e2c3..0000000000 --- a/changelogs/fragments/deps.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "deps module utils - do not fail when dependency cannot be found (https://github.com/ansible-collections/community.general/pull/6479)." diff --git a/changelogs/fragments/passwordstore-lock.yml b/changelogs/fragments/passwordstore-lock.yml deleted file mode 100644 index 0d1f3cc9c3..0000000000 --- a/changelogs/fragments/passwordstore-lock.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "passwordstore lookup plugin - make compatible with ansible-core 2.16 (https://github.com/ansible-collections/community.general/pull/6447)."