diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5f458f1ef5..850ab5e2dc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,23 @@ Community General Release Notes This changelog describes changes after version 3.0.0. +v4.8.4 +====== + +Release Summary +--------------- + +Regular bugfix release. + +Bugfixes +-------- + +- cmd_runner module utils - fix bug caused by using the ``command`` variable instead of ``self.command`` when looking for binary path (https://github.com/ansible-collections/community.general/pull/4903). +- dsv lookup plugin - do not ignore the ``tld`` parameter (https://github.com/ansible-collections/community.general/pull/4911). +- lxd connection plugin - fix incorrect ``inventory_hostname`` in ``remote_addr``. This is needed for compatibility with ansible-core 2.13 (https://github.com/ansible-collections/community.general/issues/4886). +- rax_clb_nodes - fix code to be compatible with Python 3 (https://github.com/ansible-collections/community.general/pull/4933). +- redfish_info - fix to ``GetChassisPower`` to correctly report power information when multiple chassis exist, but not all chassis report power information (https://github.com/ansible-collections/community.general/issues/4901). + v4.8.3 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 96ac782ff4..aeb52c57e7 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1856,3 +1856,24 @@ releases: - 4814-sudoers-file-permissions.yml - 4852-sudoers-state-absent.yml release_date: '2022-06-20' + 4.8.4: + changes: + bugfixes: + - cmd_runner module utils - fix bug caused by using the ``command`` variable + instead of ``self.command`` when looking for binary path (https://github.com/ansible-collections/community.general/pull/4903). + - dsv lookup plugin - do not ignore the ``tld`` parameter (https://github.com/ansible-collections/community.general/pull/4911). + - lxd connection plugin - fix incorrect ``inventory_hostname`` in ``remote_addr``. + This is needed for compatibility with ansible-core 2.13 (https://github.com/ansible-collections/community.general/issues/4886). + - rax_clb_nodes - fix code to be compatible with Python 3 (https://github.com/ansible-collections/community.general/pull/4933). + - redfish_info - fix to ``GetChassisPower`` to correctly report power information + when multiple chassis exist, but not all chassis report power information + (https://github.com/ansible-collections/community.general/issues/4901). + release_summary: Regular bugfix release. + fragments: + - 4.8.4.yml + - 4886-fix-lxd-inventory-hostname.yml + - 4901-fix-redfish-chassispower.yml + - 4903-cmdrunner-bugfix.yaml + - 4911-dsv-honor-tld-option.yml + - 4933-fix-rax-clb-nodes.yaml + release_date: '2022-07-12' diff --git a/changelogs/fragments/4.8.4.yml b/changelogs/fragments/4.8.4.yml deleted file mode 100644 index 1b14bd80d1..0000000000 --- a/changelogs/fragments/4.8.4.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix release. diff --git a/changelogs/fragments/4886-fix-lxd-inventory-hostname.yml b/changelogs/fragments/4886-fix-lxd-inventory-hostname.yml deleted file mode 100644 index c4faa085eb..0000000000 --- a/changelogs/fragments/4886-fix-lxd-inventory-hostname.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "lxd connection plugin - fix incorrect ``inventory_hostname`` in ``remote_addr``. This is needed for compatibility with ansible-core 2.13 (https://github.com/ansible-collections/community.general/issues/4886)." diff --git a/changelogs/fragments/4901-fix-redfish-chassispower.yml b/changelogs/fragments/4901-fix-redfish-chassispower.yml deleted file mode 100644 index 71a8b321eb..0000000000 --- a/changelogs/fragments/4901-fix-redfish-chassispower.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - redfish_info - fix to ``GetChassisPower`` to correctly report power information when multiple chassis exist, but not all chassis report power information (https://github.com/ansible-collections/community.general/issues/4901). diff --git a/changelogs/fragments/4903-cmdrunner-bugfix.yaml b/changelogs/fragments/4903-cmdrunner-bugfix.yaml deleted file mode 100644 index 6ed2ec9fa2..0000000000 --- a/changelogs/fragments/4903-cmdrunner-bugfix.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cmd_runner module utils - fix bug caused by using the ``command`` variable instead of ``self.command`` when looking for binary path (https://github.com/ansible-collections/community.general/pull/4903). diff --git a/changelogs/fragments/4911-dsv-honor-tld-option.yml b/changelogs/fragments/4911-dsv-honor-tld-option.yml deleted file mode 100644 index f4b8d7070e..0000000000 --- a/changelogs/fragments/4911-dsv-honor-tld-option.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - dsv lookup plugin - do not ignore the ``tld`` parameter (https://github.com/ansible-collections/community.general/pull/4911). \ No newline at end of file diff --git a/changelogs/fragments/4933-fix-rax-clb-nodes.yaml b/changelogs/fragments/4933-fix-rax-clb-nodes.yaml deleted file mode 100644 index 8d8c1f2e40..0000000000 --- a/changelogs/fragments/4933-fix-rax-clb-nodes.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - rax_clb_nodes - fix code to be compatible with Python 3 (https://github.com/ansible-collections/community.general/pull/4933).