mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Release 2.5.3.
This commit is contained in:
parent
930b64226c
commit
eac1dfdc78
24 changed files with 108 additions and 64 deletions
|
@ -6,6 +6,41 @@ Community General Release Notes
|
||||||
|
|
||||||
This changelog describes changes after version 1.0.0.
|
This changelog describes changes after version 1.0.0.
|
||||||
|
|
||||||
|
v2.5.3
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Regular bugfix release.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- consul_acl - update the hcl allowlist to include all supported options (https://github.com/ansible-collections/community.general/pull/2495).
|
||||||
|
- consul_kv lookup plugin - allow to set ``recurse``, ``index``, ``datacenter`` and ``token`` as keyword arguments (https://github.com/ansible-collections/community.general/issues/2124).
|
||||||
|
- 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).
|
||||||
|
- 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).
|
||||||
|
- 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).
|
||||||
|
- iptables_state - call ``async_status`` action plugin rather than its module (https://github.com/ansible-collections/community.general/issues/2700).
|
||||||
|
- iptables_state - fix a 'FutureWarning' in a regex and do some basic code clean up (https://github.com/ansible-collections/community.general/pull/2525).
|
||||||
|
- 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).
|
||||||
|
- iptables_state - fix initialization of iptables from null state when adressing more than one table (https://github.com/ansible-collections/community.general/issues/2523).
|
||||||
|
- java_cert - fix issue with incorrect alias used on PKCS#12 certificate import (https://github.com/ansible-collections/community.general/pull/2560).
|
||||||
|
- 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).
|
||||||
|
- json_query filter plugin - avoid 'unknown type' errors for more Ansible internal types (https://github.com/ansible-collections/community.general/pull/2607).
|
||||||
|
- module_helper module utils - ``CmdMixin`` must also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/pull/2731).
|
||||||
|
- 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).
|
||||||
|
- nmap inventory plugin - fix local variable error when cache is disabled (https://github.com/ansible-collections/community.general/issues/2512).
|
||||||
|
- ovir4 inventory script - improve configparser creation to avoid crashes for options without values (https://github.com/ansible-collections/community.general/issues/674).
|
||||||
|
- proxmox_kvm - fixed ``vmid`` return value when VM with ``name`` already exists (https://github.com/ansible-collections/community.general/issues/2648).
|
||||||
|
- redis cache - improved connection string parsing (https://github.com/ansible-collections/community.general/issues/497).
|
||||||
|
- rhsm_release - fix the issue that module considers 8, 7Client and 7Workstation as invalid releases (https://github.com/ansible-collections/community.general/pull/2571).
|
||||||
|
- ssh_config - reduce stormssh searches based on host (https://github.com/ansible-collections/community.general/pull/2568/).
|
||||||
|
- terraform - ensure the workspace is set back to its previous value when the apply fails (https://github.com/ansible-collections/community.general/pull/2634).
|
||||||
|
- xfconf - also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/issues/2715).
|
||||||
|
- zypper_repository - fix idempotency on adding repository with ``$releasever`` and ``$basearch`` variables (https://github.com/ansible-collections/community.general/issues/1985).
|
||||||
|
|
||||||
v2.5.2
|
v2.5.2
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -1882,3 +1882,76 @@ releases:
|
||||||
- 2454-detect_zfs_changed.yml
|
- 2454-detect_zfs_changed.yml
|
||||||
- ovirt-fixup.yml
|
- ovirt-fixup.yml
|
||||||
release_date: '2021-05-11'
|
release_date: '2021-05-11'
|
||||||
|
2.5.3:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- consul_acl - update the hcl allowlist to include all supported options (https://github.com/ansible-collections/community.general/pull/2495).
|
||||||
|
- consul_kv lookup plugin - allow to set ``recurse``, ``index``, ``datacenter``
|
||||||
|
and ``token`` as keyword arguments (https://github.com/ansible-collections/community.general/issues/2124).
|
||||||
|
- 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).
|
||||||
|
- 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).
|
||||||
|
- 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).
|
||||||
|
- iptables_state - call ``async_status`` action plugin rather than its module
|
||||||
|
(https://github.com/ansible-collections/community.general/issues/2700).
|
||||||
|
- iptables_state - fix a 'FutureWarning' in a regex and do some basic code clean
|
||||||
|
up (https://github.com/ansible-collections/community.general/pull/2525).
|
||||||
|
- 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).
|
||||||
|
- iptables_state - fix initialization of iptables from null state when adressing
|
||||||
|
more than one table (https://github.com/ansible-collections/community.general/issues/2523).
|
||||||
|
- java_cert - fix issue with incorrect alias used on PKCS#12 certificate import
|
||||||
|
(https://github.com/ansible-collections/community.general/pull/2560).
|
||||||
|
- 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).
|
||||||
|
- json_query filter plugin - avoid 'unknown type' errors for more Ansible internal
|
||||||
|
types (https://github.com/ansible-collections/community.general/pull/2607).
|
||||||
|
- module_helper module utils - ``CmdMixin`` must also use ``LC_ALL`` to enforce
|
||||||
|
locale choice (https://github.com/ansible-collections/community.general/pull/2731).
|
||||||
|
- 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).
|
||||||
|
- nmap inventory plugin - fix local variable error when cache is disabled (https://github.com/ansible-collections/community.general/issues/2512).
|
||||||
|
- ovir4 inventory script - improve configparser creation to avoid crashes for
|
||||||
|
options without values (https://github.com/ansible-collections/community.general/issues/674).
|
||||||
|
- proxmox_kvm - fixed ``vmid`` return value when VM with ``name`` already exists
|
||||||
|
(https://github.com/ansible-collections/community.general/issues/2648).
|
||||||
|
- redis cache - improved connection string parsing (https://github.com/ansible-collections/community.general/issues/497).
|
||||||
|
- rhsm_release - fix the issue that module considers 8, 7Client and 7Workstation
|
||||||
|
as invalid releases (https://github.com/ansible-collections/community.general/pull/2571).
|
||||||
|
- ssh_config - reduce stormssh searches based on host (https://github.com/ansible-collections/community.general/pull/2568/).
|
||||||
|
- terraform - ensure the workspace is set back to its previous value when the
|
||||||
|
apply fails (https://github.com/ansible-collections/community.general/pull/2634).
|
||||||
|
- xfconf - also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/issues/2715).
|
||||||
|
- zypper_repository - fix idempotency on adding repository with ``$releasever``
|
||||||
|
and ``$basearch`` variables (https://github.com/ansible-collections/community.general/issues/1985).
|
||||||
|
release_summary: Regular bugfix release.
|
||||||
|
fragments:
|
||||||
|
- 1085-consul-acl-hcl-whitelist-update.yml
|
||||||
|
- 2.5.3.yml
|
||||||
|
- 2126-consul_kv-pass-token.yml
|
||||||
|
- 2364-influxdb_user-first_user.yml
|
||||||
|
- 2461-ovirt4-fix-configparser.yml
|
||||||
|
- 2499-influxdb_user-fix-multiple-no-privileges.yml
|
||||||
|
- 2510-jenkins_plugin_use_post_method.yml
|
||||||
|
- 2518-nmap-fix-cache-disabled.yml
|
||||||
|
- 2525-iptables_state-fix-initialization-command.yml
|
||||||
|
- 2560-java_cert-pkcs12-alias-bugfix.yml
|
||||||
|
- 2568-ssh_config-reduce-stormssh-searches-based-on-host.yml
|
||||||
|
- 2571-rhsm_release-fix-release_matcher.yaml
|
||||||
|
- 2579-redis-cache-ipv6.yml
|
||||||
|
- 2590-netcup_dns-exception-no-message-attr.yml
|
||||||
|
- 2614-influxdb_user-fix-issue-introduced-in-PR#2499.yml
|
||||||
|
- 2634-terraform-switch-workspace.yml
|
||||||
|
- 2648-proxmox_kvm-fix-vmid-return-value.yml
|
||||||
|
- 2671-fix-broken-query-of-async_status-result.yml
|
||||||
|
- 2711-fix-iptables_state-2700-async_status-call.yml
|
||||||
|
- 2722-zypper_repository-fix_idempotency_on_adding_repo_with_releasever.yml
|
||||||
|
- 2731-mh-cmd-locale.yml
|
||||||
|
- json_query_more_types.yml
|
||||||
|
release_date: '2021-06-08'
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- consul_acl - update the hcl allowlist to include all supported options (https://github.com/ansible-collections/community.general/pull/2495).
|
|
|
@ -1 +0,0 @@
|
||||||
release_summary: Regular bugfix release.
|
|
|
@ -1,4 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- consul_kv lookup plugin - allow to set ``recurse``, ``index``, ``datacenter`` and ``token`` as keyword arguments
|
|
||||||
(https://github.com/ansible-collections/community.general/issues/2124).
|
|
|
@ -1,5 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- 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).
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- ovir4 inventory script - improve configparser creation to avoid crashes for options without values (https://github.com/ansible-collections/community.general/issues/674).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- 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).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- 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).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- nmap inventory plugin - fix local variable error when cache is disabled (https://github.com/ansible-collections/community.general/issues/2512).
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- "iptables_state - fix initialization of iptables from null state when adressing
|
|
||||||
more than one table (https://github.com/ansible-collections/community.general/issues/2523)."
|
|
||||||
- "iptables_state - fix a 'FutureWarning' in a regex and do some basic code clean up
|
|
||||||
(https://github.com/ansible-collections/community.general/pull/2525)."
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "java_cert - fix issue with incorrect alias used on PKCS#12 certificate import (https://github.com/ansible-collections/community.general/pull/2560)."
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- ssh_config - reduce stormssh searches based on host (https://github.com/ansible-collections/community.general/pull/2568/).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- rhsm_release - fix the issue that module considers 8, 7Client and 7Workstation as invalid releases (https://github.com/ansible-collections/community.general/pull/2571).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- redis cache - improved connection string parsing (https://github.com/ansible-collections/community.general/issues/497).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- 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).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- 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).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- terraform - ensure the workspace is set back to its previous value when the apply fails (https://github.com/ansible-collections/community.general/pull/2634).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- proxmox_kvm - fixed ``vmid`` return value when VM with ``name`` already exists (https://github.com/ansible-collections/community.general/issues/2648).
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- "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)."
|
|
|
@ -1,4 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- "iptables_state - call ``async_status`` action plugin rather than its module
|
|
||||||
(https://github.com/ansible-collections/community.general/issues/2700)."
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- zypper_repository - fix idempotency on adding repository with
|
|
||||||
``$releasever`` and ``$basearch`` variables
|
|
||||||
(https://github.com/ansible-collections/community.general/issues/1985).
|
|
|
@ -1,3 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- module_helper module utils - ``CmdMixin`` must also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/pull/2731).
|
|
||||||
- xfconf - also use ``LC_ALL`` to enforce locale choice (https://github.com/ansible-collections/community.general/issues/2715).
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- json_query filter plugin - avoid 'unknown type' errors for more Ansible internal types (https://github.com/ansible-collections/community.general/pull/2607).
|
|
Loading…
Reference in a new issue