mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Release 6.6.4
This commit is contained in:
parent
e463f94ce9
commit
5fd87a1811
12 changed files with 65 additions and 20 deletions
|
@ -6,6 +6,32 @@ Community General Release Notes
|
||||||
|
|
||||||
This changelog describes changes after version 5.0.0.
|
This changelog describes changes after version 5.0.0.
|
||||||
|
|
||||||
|
v6.6.4
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Regular bugfix release.
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- redfish_utils - use ``Controllers`` key in redfish data to obtain Storage controllers properties (https://github.com/ansible-collections/community.general/pull/7081).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- bitwarden lookup plugin - the plugin made assumptions about the structure of a Bitwarden JSON object which may have been broken by an update in the Bitwarden API. Remove assumptions, and allow queries for general fields such as ``notes`` (https://github.com/ansible-collections/community.general/pull/7061).
|
||||||
|
- cmd_runner module utils - when a parameter in ``argument_spec`` has no type, meaning it is implicitly a ``str``, ``CmdRunner`` would fail trying to find the ``type`` key in that dictionary (https://github.com/ansible-collections/community.general/pull/6968).
|
||||||
|
- ejabberd_user - module was failing to detect whether user was already created and/or password was changed (https://github.com/ansible-collections/community.general/pull/7033).
|
||||||
|
- ejabberd_user - provide meaningful error message when the ``ejabberdctl`` command is not found (https://github.com/ansible-collections/community.general/pull/7028, https://github.com/ansible-collections/community.general/issues/6949).
|
||||||
|
- oci_utils module utils - avoid direct type comparisons (https://github.com/ansible-collections/community.general/pull/7085).
|
||||||
|
- proxmox module utils - fix proxmoxer library version check (https://github.com/ansible-collections/community.general/issues/6974, https://github.com/ansible-collections/community.general/issues/6975, https://github.com/ansible-collections/community.general/pull/6980).
|
||||||
|
- proxmox_kvm - when ``name`` option is provided without ``vmid`` and VM with that name already exists then no new VM will be created (https://github.com/ansible-collections/community.general/issues/6911, https://github.com/ansible-collections/community.general/pull/6981).
|
||||||
|
- proxmox_user_info - avoid direct type comparisons (https://github.com/ansible-collections/community.general/pull/7085).
|
||||||
|
- rundeck - fix ``TypeError`` on 404 API response (https://github.com/ansible-collections/community.general/pull/6983).
|
||||||
|
|
||||||
v6.6.3
|
v6.6.3
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -1491,3 +1491,42 @@ releases:
|
||||||
- 6923-cobbler-inventory_unicode.yml
|
- 6923-cobbler-inventory_unicode.yml
|
||||||
- 6935-machinectl-become.yml
|
- 6935-machinectl-become.yml
|
||||||
release_date: '2023-07-16'
|
release_date: '2023-07-16'
|
||||||
|
6.6.4:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- bitwarden lookup plugin - the plugin made assumptions about the structure
|
||||||
|
of a Bitwarden JSON object which may have been broken by an update in the
|
||||||
|
Bitwarden API. Remove assumptions, and allow queries for general fields such
|
||||||
|
as ``notes`` (https://github.com/ansible-collections/community.general/pull/7061).
|
||||||
|
- cmd_runner module utils - when a parameter in ``argument_spec`` has no type,
|
||||||
|
meaning it is implicitly a ``str``, ``CmdRunner`` would fail trying to find
|
||||||
|
the ``type`` key in that dictionary (https://github.com/ansible-collections/community.general/pull/6968).
|
||||||
|
- ejabberd_user - module was failing to detect whether user was already created
|
||||||
|
and/or password was changed (https://github.com/ansible-collections/community.general/pull/7033).
|
||||||
|
- ejabberd_user - provide meaningful error message when the ``ejabberdctl``
|
||||||
|
command is not found (https://github.com/ansible-collections/community.general/pull/7028,
|
||||||
|
https://github.com/ansible-collections/community.general/issues/6949).
|
||||||
|
- oci_utils module utils - avoid direct type comparisons (https://github.com/ansible-collections/community.general/pull/7085).
|
||||||
|
- proxmox module utils - fix proxmoxer library version check (https://github.com/ansible-collections/community.general/issues/6974,
|
||||||
|
https://github.com/ansible-collections/community.general/issues/6975, https://github.com/ansible-collections/community.general/pull/6980).
|
||||||
|
- proxmox_kvm - when ``name`` option is provided without ``vmid`` and VM with
|
||||||
|
that name already exists then no new VM will be created (https://github.com/ansible-collections/community.general/issues/6911,
|
||||||
|
https://github.com/ansible-collections/community.general/pull/6981).
|
||||||
|
- proxmox_user_info - avoid direct type comparisons (https://github.com/ansible-collections/community.general/pull/7085).
|
||||||
|
- rundeck - fix ``TypeError`` on 404 API response (https://github.com/ansible-collections/community.general/pull/6983).
|
||||||
|
minor_changes:
|
||||||
|
- redfish_utils - use ``Controllers`` key in redfish data to obtain Storage
|
||||||
|
controllers properties (https://github.com/ansible-collections/community.general/pull/7081).
|
||||||
|
release_summary: Regular bugfix release.
|
||||||
|
fragments:
|
||||||
|
- 6.6.4.yml
|
||||||
|
- 6949-ejabberdctl-error.yml
|
||||||
|
- 6968-cmdrunner-implicit-type.yml
|
||||||
|
- 6980-proxmox-fix-token-auth.yml
|
||||||
|
- 6981-proxmox-fix-vm-creation-when-only-name-provided.yml
|
||||||
|
- 6983-rundeck-fix-typerrror-on-404-api-response.yml
|
||||||
|
- 7033-ejabberd-user-bugs.yml
|
||||||
|
- 7061-fix-bitwarden-get_field.yml
|
||||||
|
- 7081-redfish-utils-fix-for-storagecontrollers-deprecated-key.yaml
|
||||||
|
- 7085-sanity.yml
|
||||||
|
release_date: '2023-08-13'
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
release_summary: Regular bugfix release.
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- ejabberd_user - provide meaningful error message when the ``ejabberdctl`` command is not found (https://github.com/ansible-collections/community.general/pull/7028, https://github.com/ansible-collections/community.general/issues/6949).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- cmd_runner module utils - when a parameter in ``argument_spec`` has no type, meaning it is implicitly a ``str``, ``CmdRunner`` would fail trying to find the ``type`` key in that dictionary (https://github.com/ansible-collections/community.general/pull/6968).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- proxmox module utils - fix proxmoxer library version check (https://github.com/ansible-collections/community.general/issues/6974, https://github.com/ansible-collections/community.general/issues/6975, https://github.com/ansible-collections/community.general/pull/6980).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- proxmox_kvm - when ``name`` option is provided without ``vmid`` and VM with that name already exists then no new VM will be created (https://github.com/ansible-collections/community.general/issues/6911, https://github.com/ansible-collections/community.general/pull/6981).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- rundeck - fix ``TypeError`` on 404 API response (https://github.com/ansible-collections/community.general/pull/6983).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- ejabberd_user - module was failing to detect whether user was already created and/or password was changed (https://github.com/ansible-collections/community.general/pull/7033).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- bitwarden lookup plugin - the plugin made assumptions about the structure of a Bitwarden JSON object which may have been broken by an update in the Bitwarden API. Remove assumptions, and allow queries for general fields such as ``notes`` (https://github.com/ansible-collections/community.general/pull/7061).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- redfish_utils - use ``Controllers`` key in redfish data to obtain Storage controllers properties (https://github.com/ansible-collections/community.general/pull/7081).
|
|
|
@ -1,3 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "oci_utils module utils - avoid direct type comparisons (https://github.com/ansible-collections/community.general/pull/7085)."
|
|
||||||
- "proxmox_user_info - avoid direct type comparisons (https://github.com/ansible-collections/community.general/pull/7085)."
|
|
Loading…
Reference in a new issue