Skip to content

Commit 055b7fe

Browse files
committed
Release 1.3.10.
1 parent 906fd97 commit 055b7fe

23 files changed

+147
-66
lines changed

CHANGELOG.rst

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,61 @@ Community General Release Notes
55
.. contents:: Topics
66

77

8+
v1.3.10
9+
=======
10+
11+
Release Summary
12+
---------------
13+
14+
Last regular bugfix release. There will only be new bugfix releases for security fixes and major bugfixes.
15+
16+
Minor Changes
17+
-------------
18+
19+
- atomic_container - using ``get_bin_path()`` before calling ``run_command()`` (https://github.com/ansible-collections/community.general/pull/2144).
20+
- atomic_host - using ``get_bin_path()`` before calling ``run_command()`` (https://github.com/ansible-collections/community.general/pull/2144).
21+
- atomic_image - using ``get_bin_path()`` before calling ``run_command()`` (https://github.com/ansible-collections/community.general/pull/2144).
22+
- beadm - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
23+
- bitbucket_pipeline_variable - removed unreachable code (https://github.com/ansible-collections/community.general/pull/2157).
24+
- hiera lookup - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
25+
- ipwcli_dns - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
26+
- known_hosts module utils - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
27+
- nictagadm - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
28+
- ovh_ip_failover - removed unreachable code (https://github.com/ansible-collections/community.general/pull/2157).
29+
- rhevm - removed unreachable code (https://github.com/ansible-collections/community.general/pull/2157).
30+
- smartos_image_info - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
31+
- svr4pkg - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
32+
- xattr - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
33+
- zfs_facts - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
34+
- zpool_facts - minor refactor converting multiple statements to a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
35+
36+
Security Fixes
37+
--------------
38+
39+
- java_keystore - pass secret to keytool through an environment variable to not expose it as a commandline argument (https://github.com/ansible-collections/community.general/issues/1668).
40+
41+
Bugfixes
42+
--------
43+
44+
- dimensiondata_network - bug when formatting message, instead of % a simple comma was used (https://github.com/ansible-collections/community.general/pull/2139).
45+
- funcd connection plugin - can now load (https://github.com/ansible-collections/community.general/pull/2235).
46+
- haproxy - fix a bug preventing haproxy from properly entering ``DRAIN`` mode (https://github.com/ansible-collections/community.general/issues/1913).
47+
- hiera lookup plugin - converts the return type of plugin to unicode string (https://github.com/ansible-collections/community.general/pull/2329).
48+
- ipa_user - allow ``sshpubkey`` to permit multiple word comments (https://github.com/ansible-collections/community.general/pull/2159).
49+
- java_keystore - improve error handling and return ``cmd`` as documented. Force ``LANG``, ``LC_ALL`` and ``LC_MESSAGES`` environment variables to ``C`` to rely on ``keytool`` output parsing. Fix pylint's ``unused-variable`` and ``no-else-return`` hints (https://github.com/ansible-collections/community.general/pull/2183).
50+
- java_keystore - use tempfile lib to create temporary files with randomized names, and remove the temporary PKCS#12 keystore as well as other materials (https://github.com/ansible-collections/community.general/issues/1667).
51+
- jenkins_plugin - fixes Python 2 compatibility issue (https://github.com/ansible-collections/community.general/pull/2340).
52+
- kibana_plugin - added missing parameter to ``remove_plugin`` when using ``state=present force=true``, and fix potential quoting errors when invoking ``kibana`` (https://github.com/ansible-collections/community.general/pull/2143).
53+
- module_helper module utils - fixed decorator ``cause_changes`` (https://github.com/ansible-collections/community.general/pull/2203).
54+
- nmap inventory plugin - fix cache and constructed group support (https://github.com/ansible-collections/community.general/issues/2242).
55+
- pkgutil - fixed calls to ``list.extend()`` (https://github.com/ansible-collections/community.general/pull/2161).
56+
- terraform - fix issue that cause the destroy to fail because from Terraform 0.15 on, the ``terraform destroy -force`` option is replaced with ``terraform destroy -auto-approve`` (https://github.com/ansible-collections/community.general/issues/2247).
57+
- terraform - fix issue that cause the execution fail because from Terraform 0.15 on, the ``-var`` and ``-var-file`` options are no longer available on ``terraform validate`` (https://github.com/ansible-collections/community.general/pull/2246).
58+
- terraform - remove uses of ``use_unsafe_shell=True`` (https://github.com/ansible-collections/community.general/pull/2246).
59+
- vmadm - correct type of list elements in ``resolvers`` parameter (https://github.com/ansible-collections/community.general/issues/2135).
60+
- xfconf - module was not honoring check mode when ``state`` was ``absent`` (https://github.com/ansible-collections/community.general/pull/2185).
61+
- zypper, zypper_repository - respect ``PATH`` environment variable when resolving zypper executable path (https://github.com/ansible-collections/community.general/pull/2094).
62+
863
v1.3.9
964
======
1065

changelogs/changelog.yaml

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,6 +1627,98 @@ releases:
16271627
- fix_parsing_array_values_in_osx_defaults.yml
16281628
- nios_host_record-fix-aliases-removal.yml
16291629
release_date: '2020-12-21'
1630+
1.3.10:
1631+
changes:
1632+
bugfixes:
1633+
- dimensiondata_network - bug when formatting message, instead of % a simple
1634+
comma was used (https://github.com/ansible-collections/community.general/pull/2139).
1635+
- funcd connection plugin - can now load (https://github.com/ansible-collections/community.general/pull/2235).
1636+
- haproxy - fix a bug preventing haproxy from properly entering ``DRAIN`` mode
1637+
(https://github.com/ansible-collections/community.general/issues/1913).
1638+
- hiera lookup plugin - converts the return type of plugin to unicode string
1639+
(https://github.com/ansible-collections/community.general/pull/2329).
1640+
- ipa_user - allow ``sshpubkey`` to permit multiple word comments (https://github.com/ansible-collections/community.general/pull/2159).
1641+
- java_keystore - improve error handling and return ``cmd`` as documented. Force
1642+
``LANG``, ``LC_ALL`` and ``LC_MESSAGES`` environment variables to ``C`` to
1643+
rely on ``keytool`` output parsing. Fix pylint's ``unused-variable`` and ``no-else-return``
1644+
hints (https://github.com/ansible-collections/community.general/pull/2183).
1645+
- java_keystore - use tempfile lib to create temporary files with randomized
1646+
names, and remove the temporary PKCS#12 keystore as well as other materials
1647+
(https://github.com/ansible-collections/community.general/issues/1667).
1648+
- jenkins_plugin - fixes Python 2 compatibility issue (https://github.com/ansible-collections/community.general/pull/2340).
1649+
- kibana_plugin - added missing parameter to ``remove_plugin`` when using ``state=present
1650+
force=true``, and fix potential quoting errors when invoking ``kibana`` (https://github.com/ansible-collections/community.general/pull/2143).
1651+
- module_helper module utils - fixed decorator ``cause_changes`` (https://github.com/ansible-collections/community.general/pull/2203).
1652+
- nmap inventory plugin - fix cache and constructed group support (https://github.com/ansible-collections/community.general/issues/2242).
1653+
- pkgutil - fixed calls to ``list.extend()`` (https://github.com/ansible-collections/community.general/pull/2161).
1654+
- terraform - fix issue that cause the destroy to fail because from Terraform
1655+
0.15 on, the ``terraform destroy -force`` option is replaced with ``terraform
1656+
destroy -auto-approve`` (https://github.com/ansible-collections/community.general/issues/2247).
1657+
- terraform - fix issue that cause the execution fail because from Terraform
1658+
0.15 on, the ``-var`` and ``-var-file`` options are no longer available on
1659+
``terraform validate`` (https://github.com/ansible-collections/community.general/pull/2246).
1660+
- terraform - remove uses of ``use_unsafe_shell=True`` (https://github.com/ansible-collections/community.general/pull/2246).
1661+
- vmadm - correct type of list elements in ``resolvers`` parameter (https://github.com/ansible-collections/community.general/issues/2135).
1662+
- xfconf - module was not honoring check mode when ``state`` was ``absent``
1663+
(https://github.com/ansible-collections/community.general/pull/2185).
1664+
- zypper, zypper_repository - respect ``PATH`` environment variable when resolving
1665+
zypper executable path (https://github.com/ansible-collections/community.general/pull/2094).
1666+
minor_changes:
1667+
- atomic_container - using ``get_bin_path()`` before calling ``run_command()``
1668+
(https://github.com/ansible-collections/community.general/pull/2144).
1669+
- atomic_host - using ``get_bin_path()`` before calling ``run_command()`` (https://github.com/ansible-collections/community.general/pull/2144).
1670+
- atomic_image - using ``get_bin_path()`` before calling ``run_command()`` (https://github.com/ansible-collections/community.general/pull/2144).
1671+
- beadm - minor refactor converting multiple statements to a single list literal
1672+
(https://github.com/ansible-collections/community.general/pull/2160).
1673+
- bitbucket_pipeline_variable - removed unreachable code (https://github.com/ansible-collections/community.general/pull/2157).
1674+
- hiera lookup - minor refactor converting multiple statements to a single list
1675+
literal (https://github.com/ansible-collections/community.general/pull/2160).
1676+
- ipwcli_dns - minor refactor converting multiple statements to a single list
1677+
literal (https://github.com/ansible-collections/community.general/pull/2160).
1678+
- known_hosts module utils - minor refactor converting multiple statements to
1679+
a single list literal (https://github.com/ansible-collections/community.general/pull/2160).
1680+
- nictagadm - minor refactor converting multiple statements to a single list
1681+
literal (https://github.com/ansible-collections/community.general/pull/2160).
1682+
- ovh_ip_failover - removed unreachable code (https://github.com/ansible-collections/community.general/pull/2157).
1683+
- rhevm - removed unreachable code (https://github.com/ansible-collections/community.general/pull/2157).
1684+
- smartos_image_info - minor refactor converting multiple statements to a single
1685+
list literal (https://github.com/ansible-collections/community.general/pull/2160).
1686+
- svr4pkg - minor refactor converting multiple statements to a single list literal
1687+
(https://github.com/ansible-collections/community.general/pull/2160).
1688+
- xattr - minor refactor converting multiple statements to a single list literal
1689+
(https://github.com/ansible-collections/community.general/pull/2160).
1690+
- zfs_facts - minor refactor converting multiple statements to a single list
1691+
literal (https://github.com/ansible-collections/community.general/pull/2160).
1692+
- zpool_facts - minor refactor converting multiple statements to a single list
1693+
literal (https://github.com/ansible-collections/community.general/pull/2160).
1694+
release_summary: Last regular bugfix release. There will only be new bugfix
1695+
releases for security fixes and major bugfixes.
1696+
security_fixes:
1697+
- java_keystore - pass secret to keytool through an environment variable to
1698+
not expose it as a commandline argument (https://github.com/ansible-collections/community.general/issues/1668).
1699+
fragments:
1700+
- 1.3.10.yml
1701+
- 1993-haproxy-fix-draining.yml
1702+
- 2094-bugfix-respect-PATH-env-variable-in-zypper-modules.yaml
1703+
- 2135-vmadm-resolvers-type-fix.yml
1704+
- 2139-dimensiondata_network-str-format.yml
1705+
- 2143-kibana_plugin-fixed-function-calls.yml
1706+
- 2144-atomic_get_bin_path.yml
1707+
- 2157-unreachable-code.yml
1708+
- 2159-ipa-user-sshpubkey-multi-word-comments.yaml
1709+
- 2160-list-literals.yml
1710+
- 2161-pkgutil-list-extend.yml
1711+
- 2163-java_keystore_1667_improve_temp_files_storage.yml
1712+
- 2177-java_keystore_1668_dont_expose_secrets_on_cmdline.yml
1713+
- 2183-java_keystore_improve_error_handling.yml
1714+
- 2185-xfconf-absent-check-mode.yml
1715+
- 2203-modhelper-cause-changes-deco.yml
1716+
- 2246-terraform.yaml
1717+
- 2282-nmap-fix-cache-support.yml
1718+
- 2329-hiera-lookup-plugin-return-type.yaml
1719+
- 2340-jenkins_plugin-py2.yml
1720+
- allow_funcd_to_load.yml
1721+
release_date: '2021-04-26'
16301722
1.3.2:
16311723
changes:
16321724
bugfixes:

changelogs/fragments/1.3.10.yml

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

changelogs/fragments/1993-haproxy-fix-draining.yml

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

changelogs/fragments/2094-bugfix-respect-PATH-env-variable-in-zypper-modules.yaml

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

changelogs/fragments/2135-vmadm-resolvers-type-fix.yml

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

changelogs/fragments/2139-dimensiondata_network-str-format.yml

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

changelogs/fragments/2143-kibana_plugin-fixed-function-calls.yml

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

changelogs/fragments/2144-atomic_get_bin_path.yml

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

changelogs/fragments/2157-unreachable-code.yml

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

0 commit comments

Comments
 (0)