Skip to content

Commit f7276b1

Browse files
committed
Release 3.8.4.
1 parent 5e503bf commit f7276b1

10 files changed

Lines changed: 59 additions & 19 deletions

CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ Community General Release Notes
66

77
This changelog describes changes after version 2.0.0.
88

9+
v3.8.4
10+
======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix release.
16+
17+
Bugfixes
18+
--------
19+
20+
- Various modules and plugins - use vendored version of ``distutils.version`` instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.general/pull/3936).
21+
- alternatives - fix output parsing for alternatives groups (https://github.com/ansible-collections/community.general/pull/3976).
22+
- jail connection plugin - replace deprecated ``distutils.spawn.find_executable`` with Ansible's ``get_bin_path`` to find the executable (https://github.com/ansible-collections/community.general/pull/3934).
23+
- jira - fixed bug where module returns error related to dictionary key ``body`` (https://github.com/ansible-collections/community.general/issues/3419).
24+
- lxd connection plugin - replace deprecated ``distutils.spawn.find_executable`` with Ansible's ``get_bin_path`` to find the ``lxc`` executable (https://github.com/ansible-collections/community.general/pull/3934).
25+
- nrdp callback plugin - fix error ``string arguments without an encoding`` (https://github.com/ansible-collections/community.general/issues/3903).
26+
- passwordstore lookup plugin - replace deprecated ``distutils.util.strtobool`` with Ansible's ``convert_bool.boolean`` to interpret values for the ``create``, ``returnall``, ``overwrite``, 'backup``, and ``nosymbols`` options (https://github.com/ansible-collections/community.general/pull/3934).
27+
- say callback plugin - replace deprecated ``distutils.spawn.find_executable`` with Ansible's ``get_bin_path`` to find the ``say`` resp. ``espeak`` executables (https://github.com/ansible-collections/community.general/pull/3934).
28+
- scaleway_user_data - fix double-quote added where no double-quote is needed to user data in scaleway's server (``Content-type`` -> ``Content-Type``) (https://github.com/ansible-collections/community.general/pull/3940).
29+
- slack - add ``charset`` to HTTP headers to avoid Slack API warning (https://github.com/ansible-collections/community.general/issues/3932).
30+
- zone connection plugin - replace deprecated ``distutils.spawn.find_executable`` with Ansible's ``get_bin_path`` to find the executable (https://github.com/ansible-collections/community.general/pull/3934).
31+
932
v3.8.3
1033
======
1134

changelogs/changelog.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2030,3 +2030,39 @@ releases:
20302030
- 3874-proxmox-fix-onboot-param.yml
20312031
- 3896-nmcli_vlan_missing_options.yaml
20322032
release_date: '2021-12-14'
2033+
3.8.4:
2034+
changes:
2035+
bugfixes:
2036+
- Various modules and plugins - use vendored version of ``distutils.version``
2037+
instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.general/pull/3936).
2038+
- alternatives - fix output parsing for alternatives groups (https://github.com/ansible-collections/community.general/pull/3976).
2039+
- jail connection plugin - replace deprecated ``distutils.spawn.find_executable``
2040+
with Ansible's ``get_bin_path`` to find the executable (https://github.com/ansible-collections/community.general/pull/3934).
2041+
- jira - fixed bug where module returns error related to dictionary key ``body``
2042+
(https://github.com/ansible-collections/community.general/issues/3419).
2043+
- lxd connection plugin - replace deprecated ``distutils.spawn.find_executable``
2044+
with Ansible's ``get_bin_path`` to find the ``lxc`` executable (https://github.com/ansible-collections/community.general/pull/3934).
2045+
- nrdp callback plugin - fix error ``string arguments without an encoding``
2046+
(https://github.com/ansible-collections/community.general/issues/3903).
2047+
- passwordstore lookup plugin - replace deprecated ``distutils.util.strtobool``
2048+
with Ansible's ``convert_bool.boolean`` to interpret values for the ``create``,
2049+
``returnall``, ``overwrite``, 'backup``, and ``nosymbols`` options (https://github.com/ansible-collections/community.general/pull/3934).
2050+
- say callback plugin - replace deprecated ``distutils.spawn.find_executable``
2051+
with Ansible's ``get_bin_path`` to find the ``say`` resp. ``espeak`` executables
2052+
(https://github.com/ansible-collections/community.general/pull/3934).
2053+
- scaleway_user_data - fix double-quote added where no double-quote is needed
2054+
to user data in scaleway's server (``Content-type`` -> ``Content-Type``) (https://github.com/ansible-collections/community.general/pull/3940).
2055+
- slack - add ``charset`` to HTTP headers to avoid Slack API warning (https://github.com/ansible-collections/community.general/issues/3932).
2056+
- zone connection plugin - replace deprecated ``distutils.spawn.find_executable``
2057+
with Ansible's ``get_bin_path`` to find the executable (https://github.com/ansible-collections/community.general/pull/3934).
2058+
release_summary: Regular bugfix release.
2059+
fragments:
2060+
- 3.8.4.yml
2061+
- 3867-jira-fix-body.yaml
2062+
- 3909-nrdp_fix_string_args_without_encoding.yaml
2063+
- 3933-slack-charset-header.yaml
2064+
- 3934-distutils.yml
2065+
- 3936-distutils.version.yml
2066+
- 3940_fix_contenttype_scaleway_user_data.yml
2067+
- 3976-fix-alternatives-parsing.yml
2068+
release_date: '2022-01-11'

changelogs/fragments/3.8.4.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelogs/fragments/3867-jira-fix-body.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/3909-nrdp_fix_string_args_without_encoding.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/3933-slack-charset-header.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/3934-distutils.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

changelogs/fragments/3936-distutils.version.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/3940_fix_contenttype_scaleway_user_data.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/3976-fix-alternatives-parsing.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)