Skip to content

Commit eac1dfd

Browse files
committed
Release 2.5.3.
1 parent 930b642 commit eac1dfd

24 files changed

+108
-64
lines changed

CHANGELOG.rst

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

77
This changelog describes changes after version 1.0.0.
88

9+
v2.5.3
10+
======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix release.
16+
17+
Bugfixes
18+
--------
19+
20+
- consul_acl - update the hcl allowlist to include all supported options (https://github.com/ansible-collections/community.general/pull/2495).
21+
- consul_kv lookup plugin - allow to set ``recurse``, ``index``, ``datacenter`` and ``token`` as keyword arguments (https://github.com/ansible-collections/community.general/issues/2124).
22+
- influxdb_user - allow creation of admin users when InfluxDB authentication is enabled but no other user exists on the database. In this scenario, InfluxDB 1.x allows only ``CREATE USER`` queries and rejects any other query (https://github.com/ansible-collections/community.general/issues/2364).
23+
- influxdb_user - fix bug where an influxdb user has no privileges for 2 or more databases (https://github.com/ansible-collections/community.general/pull/2499).
24+
- influxdb_user - fix bug which removed current privileges instead of appending them to existing ones (https://github.com/ansible-collections/community.general/issues/2609, https://github.com/ansible-collections/community.general/pull/2614).
25+
- iptables_state - call ``async_status`` action plugin rather than its module (https://github.com/ansible-collections/community.general/issues/2700).
26+
- iptables_state - fix a 'FutureWarning' in a regex and do some basic code clean up (https://github.com/ansible-collections/community.general/pull/2525).
27+
- iptables_state - fix a broken query of ``async_status`` result with current ansible-core development version (https://github.com/ansible-collections/community.general/issues/2627, https://github.com/ansible-collections/community.general/pull/2671).
28+
- iptables_state - fix initialization of iptables from null state when adressing more than one table (https://github.com/ansible-collections/community.general/issues/2523).
29+
- java_cert - fix issue with incorrect alias used on PKCS#12 certificate import (https://github.com/ansible-collections/community.general/pull/2560).
30+
- jenkins_plugin - use POST method for sending request to jenkins API when ``state`` option is one of ``enabled``, ``disabled``, ``pinned``, ``unpinned``, or ``absent`` (https://github.com/ansible-collections/community.general/issues/2510).
31+
- json_query filter plugin - avoid 'unknown type' errors for more Ansible internal types (https://github.com/ansible-collections/community.general/pull/2607).
32+
- module_helper module utils - ``CmdMixin`` must also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/pull/2731).
33+
- netcup_dns - use ``str(ex)`` instead of unreliable ``ex.message`` in exception handling to fix ``AttributeError`` in error cases (https://github.com/ansible-collections/community.general/pull/2590).
34+
- nmap inventory plugin - fix local variable error when cache is disabled (https://github.com/ansible-collections/community.general/issues/2512).
35+
- ovir4 inventory script - improve configparser creation to avoid crashes for options without values (https://github.com/ansible-collections/community.general/issues/674).
36+
- proxmox_kvm - fixed ``vmid`` return value when VM with ``name`` already exists (https://github.com/ansible-collections/community.general/issues/2648).
37+
- redis cache - improved connection string parsing (https://github.com/ansible-collections/community.general/issues/497).
38+
- rhsm_release - fix the issue that module considers 8, 7Client and 7Workstation as invalid releases (https://github.com/ansible-collections/community.general/pull/2571).
39+
- ssh_config - reduce stormssh searches based on host (https://github.com/ansible-collections/community.general/pull/2568/).
40+
- terraform - ensure the workspace is set back to its previous value when the apply fails (https://github.com/ansible-collections/community.general/pull/2634).
41+
- xfconf - also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/issues/2715).
42+
- zypper_repository - fix idempotency on adding repository with ``$releasever`` and ``$basearch`` variables (https://github.com/ansible-collections/community.general/issues/1985).
43+
944
v2.5.2
1045
======
1146

changelogs/changelog.yaml

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1882,3 +1882,76 @@ releases:
18821882
- 2454-detect_zfs_changed.yml
18831883
- ovirt-fixup.yml
18841884
release_date: '2021-05-11'
1885+
2.5.3:
1886+
changes:
1887+
bugfixes:
1888+
- consul_acl - update the hcl allowlist to include all supported options (https://github.com/ansible-collections/community.general/pull/2495).
1889+
- consul_kv lookup plugin - allow to set ``recurse``, ``index``, ``datacenter``
1890+
and ``token`` as keyword arguments (https://github.com/ansible-collections/community.general/issues/2124).
1891+
- influxdb_user - allow creation of admin users when InfluxDB authentication
1892+
is enabled but no other user exists on the database. In this scenario, InfluxDB
1893+
1.x allows only ``CREATE USER`` queries and rejects any other query (https://github.com/ansible-collections/community.general/issues/2364).
1894+
- influxdb_user - fix bug where an influxdb user has no privileges for 2 or
1895+
more databases (https://github.com/ansible-collections/community.general/pull/2499).
1896+
- influxdb_user - fix bug which removed current privileges instead of appending
1897+
them to existing ones (https://github.com/ansible-collections/community.general/issues/2609,
1898+
https://github.com/ansible-collections/community.general/pull/2614).
1899+
- iptables_state - call ``async_status`` action plugin rather than its module
1900+
(https://github.com/ansible-collections/community.general/issues/2700).
1901+
- iptables_state - fix a 'FutureWarning' in a regex and do some basic code clean
1902+
up (https://github.com/ansible-collections/community.general/pull/2525).
1903+
- iptables_state - fix a broken query of ``async_status`` result with current
1904+
ansible-core development version (https://github.com/ansible-collections/community.general/issues/2627,
1905+
https://github.com/ansible-collections/community.general/pull/2671).
1906+
- iptables_state - fix initialization of iptables from null state when adressing
1907+
more than one table (https://github.com/ansible-collections/community.general/issues/2523).
1908+
- java_cert - fix issue with incorrect alias used on PKCS#12 certificate import
1909+
(https://github.com/ansible-collections/community.general/pull/2560).
1910+
- jenkins_plugin - use POST method for sending request to jenkins API when ``state``
1911+
option is one of ``enabled``, ``disabled``, ``pinned``, ``unpinned``, or ``absent``
1912+
(https://github.com/ansible-collections/community.general/issues/2510).
1913+
- json_query filter plugin - avoid 'unknown type' errors for more Ansible internal
1914+
types (https://github.com/ansible-collections/community.general/pull/2607).
1915+
- module_helper module utils - ``CmdMixin`` must also use ``LC_ALL`` to enforce
1916+
locale choice (https://github.com/ansible-collections/community.general/pull/2731).
1917+
- netcup_dns - use ``str(ex)`` instead of unreliable ``ex.message`` in exception
1918+
handling to fix ``AttributeError`` in error cases (https://github.com/ansible-collections/community.general/pull/2590).
1919+
- nmap inventory plugin - fix local variable error when cache is disabled (https://github.com/ansible-collections/community.general/issues/2512).
1920+
- ovir4 inventory script - improve configparser creation to avoid crashes for
1921+
options without values (https://github.com/ansible-collections/community.general/issues/674).
1922+
- proxmox_kvm - fixed ``vmid`` return value when VM with ``name`` already exists
1923+
(https://github.com/ansible-collections/community.general/issues/2648).
1924+
- redis cache - improved connection string parsing (https://github.com/ansible-collections/community.general/issues/497).
1925+
- rhsm_release - fix the issue that module considers 8, 7Client and 7Workstation
1926+
as invalid releases (https://github.com/ansible-collections/community.general/pull/2571).
1927+
- ssh_config - reduce stormssh searches based on host (https://github.com/ansible-collections/community.general/pull/2568/).
1928+
- terraform - ensure the workspace is set back to its previous value when the
1929+
apply fails (https://github.com/ansible-collections/community.general/pull/2634).
1930+
- xfconf - also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/issues/2715).
1931+
- zypper_repository - fix idempotency on adding repository with ``$releasever``
1932+
and ``$basearch`` variables (https://github.com/ansible-collections/community.general/issues/1985).
1933+
release_summary: Regular bugfix release.
1934+
fragments:
1935+
- 1085-consul-acl-hcl-whitelist-update.yml
1936+
- 2.5.3.yml
1937+
- 2126-consul_kv-pass-token.yml
1938+
- 2364-influxdb_user-first_user.yml
1939+
- 2461-ovirt4-fix-configparser.yml
1940+
- 2499-influxdb_user-fix-multiple-no-privileges.yml
1941+
- 2510-jenkins_plugin_use_post_method.yml
1942+
- 2518-nmap-fix-cache-disabled.yml
1943+
- 2525-iptables_state-fix-initialization-command.yml
1944+
- 2560-java_cert-pkcs12-alias-bugfix.yml
1945+
- 2568-ssh_config-reduce-stormssh-searches-based-on-host.yml
1946+
- 2571-rhsm_release-fix-release_matcher.yaml
1947+
- 2579-redis-cache-ipv6.yml
1948+
- 2590-netcup_dns-exception-no-message-attr.yml
1949+
- 2614-influxdb_user-fix-issue-introduced-in-PR#2499.yml
1950+
- 2634-terraform-switch-workspace.yml
1951+
- 2648-proxmox_kvm-fix-vmid-return-value.yml
1952+
- 2671-fix-broken-query-of-async_status-result.yml
1953+
- 2711-fix-iptables_state-2700-async_status-call.yml
1954+
- 2722-zypper_repository-fix_idempotency_on_adding_repo_with_releasever.yml
1955+
- 2731-mh-cmd-locale.yml
1956+
- json_query_more_types.yml
1957+
release_date: '2021-06-08'

changelogs/fragments/1085-consul-acl-hcl-whitelist-update.yml

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

changelogs/fragments/2.5.3.yml

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

changelogs/fragments/2126-consul_kv-pass-token.yml

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

changelogs/fragments/2364-influxdb_user-first_user.yml

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

changelogs/fragments/2461-ovirt4-fix-configparser.yml

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

changelogs/fragments/2499-influxdb_user-fix-multiple-no-privileges.yml

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

changelogs/fragments/2510-jenkins_plugin_use_post_method.yml

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

changelogs/fragments/2518-nmap-fix-cache-disabled.yml

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

0 commit comments

Comments
 (0)