Release 9.2.0 commit (#8640)

This commit is contained in:
Andrew Klychkov 2024-07-15 08:11:49 +02:00 committed by GitHub
commit 4c24a12462
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 174 additions and 54 deletions

View file

@ -914,3 +914,61 @@ releases:
name: replace_keys
namespace: null
release_date: '2024-06-17'
9.2.0:
changes:
bugfixes:
- bitwarden lookup plugin - fix ``KeyError`` in ``search_field`` (https://github.com/ansible-collections/community.general/issues/8549,
https://github.com/ansible-collections/community.general/pull/8557).
- keycloak_clientscope - remove IDs from clientscope and its protocol mappers
on comparison for changed check (https://github.com/ansible-collections/community.general/pull/8545).
- nsupdate - fix 'index out of range' error when changing NS records by falling
back to authority section of the response (https://github.com/ansible-collections/community.general/issues/8612,
https://github.com/ansible-collections/community.general/pull/8614).
- proxmox - fix idempotency on creation of mount volumes using Proxmox' special
``<storage>:<size>`` syntax (https://github.com/ansible-collections/community.general/issues/8407,
https://github.com/ansible-collections/community.general/pull/8542).
- redfish_utils module utils - do not fail when language is not exactly "en"
(https://github.com/ansible-collections/community.general/pull/8613).
minor_changes:
- CmdRunner module utils - the parameter ``force_lang`` now supports the special
value ``auto`` which will automatically try and determine the best parsable
locale in the system (https://github.com/ansible-collections/community.general/pull/8517).
- proxmox - add ``disk_volume`` and ``mount_volumes`` keys for better readability
(https://github.com/ansible-collections/community.general/pull/8542).
- proxmox - translate the old ``disk`` and ``mounts`` keys to the new handling
internally (https://github.com/ansible-collections/community.general/pull/8542).
- proxmox_template - small refactor in logic for determining whether a template
exists or not (https://github.com/ansible-collections/community.general/pull/8516).
- redfish_* modules - adds ``ciphers`` option for custom cipher selection
(https://github.com/ansible-collections/community.general/pull/8533).
- sudosu become plugin - added an option (``alt_method``) to enhance compatibility
with more versions of ``su`` (https://github.com/ansible-collections/community.general/pull/8214).
- virtualbox inventory plugin - expose a new parameter ``enable_advanced_group_parsing``
to change how the VirtualBox dynamic inventory parses VM groups (https://github.com/ansible-collections/community.general/issues/8508,
https://github.com/ansible-collections/community.general/pull/8510).
- wdc_redfish_command - minor change to handle upgrade file for Redfish WD
platforms (https://github.com/ansible-collections/community.general/pull/8444).
release_summary: Regular bugfix and feature release.
fragments:
- 8214-sudosu-not-working-on-some-BSD-machines.yml
- 8444-fix-redfish-gen2-upgrade.yaml
- 8508-virtualbox-inventory.yml
- 8516-proxmox-template-refactor.yml
- 8517-cmd-runner-lang-auto.yml
- 8533-add-ciphers-option.yml
- 8542-fix-proxmox-volume-handling.yml
- 8545-keycloak-clientscope-remove-id-on-compare.yml
- 8557-fix-bug-with-bitwarden.yml
- 8613-redfish_utils-language.yaml
- 8614-nsupdate-index-out-of-range.yml
- 9.2.0.yml
plugins:
filter:
- description: Return input type.
name: reveal_ansible_type
namespace: null
test:
- description: Validate input type.
name: ansible_type
namespace: null
release_date: '2024-07-15'

View file

@ -1,2 +0,0 @@
minor_changes:
- sudosu become plugin - added an option (``alt_method``) to enhance compatibility with more versions of ``su`` (https://github.com/ansible-collections/community.general/pull/8214).

View file

@ -1,2 +0,0 @@
minor_changes:
- wdc_redfish_command - minor change to handle upgrade file for Redfish WD platforms (https://github.com/ansible-collections/community.general/pull/8444).

View file

@ -1,3 +0,0 @@
minor_changes:
- >-
virtualbox inventory plugin - expose a new parameter ``enable_advanced_group_parsing`` to change how the VirtualBox dynamic inventory parses VM groups (https://github.com/ansible-collections/community.general/issues/8508, https://github.com/ansible-collections/community.general/pull/8510).

View file

@ -1,2 +0,0 @@
minor_changes:
- proxmox_template - small refactor in logic for determining whether a template exists or not (https://github.com/ansible-collections/community.general/pull/8516).

View file

@ -1,2 +0,0 @@
minor_changes:
- CmdRunner module utils - the parameter ``force_lang`` now supports the special value ``auto`` which will automatically try and determine the best parsable locale in the system (https://github.com/ansible-collections/community.general/pull/8517).

View file

@ -1,4 +0,0 @@
---
minor_changes:
- redfish_* modules - adds ``ciphers`` option for custom cipher selection (https://github.com/ansible-collections/community.general/pull/8533).
...

View file

@ -1,5 +0,0 @@
bugfixes:
- proxmox - fix idempotency on creation of mount volumes using Proxmox' special ``<storage>:<size>`` syntax (https://github.com/ansible-collections/community.general/issues/8407, https://github.com/ansible-collections/community.general/pull/8542).
minor_changes:
- proxmox - add ``disk_volume`` and ``mount_volumes`` keys for better readability (https://github.com/ansible-collections/community.general/pull/8542).
- proxmox - translate the old ``disk`` and ``mounts`` keys to the new handling internally (https://github.com/ansible-collections/community.general/pull/8542).

View file

@ -1,2 +0,0 @@
bugfixes:
- keycloak_clientscope - remove IDs from clientscope and its protocol mappers on comparison for changed check (https://github.com/ansible-collections/community.general/pull/8545).

View file

@ -1,2 +0,0 @@
bugfixes:
- "bitwarden lookup plugin - fix ``KeyError`` in ``search_field`` (https://github.com/ansible-collections/community.general/issues/8549, https://github.com/ansible-collections/community.general/pull/8557)."

View file

@ -1,2 +0,0 @@
bugfixes:
- redfish_utils module utils - do not fail when language is not exactly "en" (https://github.com/ansible-collections/community.general/pull/8613).

View file

@ -1,2 +0,0 @@
bugfixes:
- "nsupdate - fix 'index out of range' error when changing NS records by falling back to authority section of the response (https://github.com/ansible-collections/community.general/issues/8612, https://github.com/ansible-collections/community.general/pull/8614)."

View file

@ -1 +0,0 @@
release_summary: Regular bugfix and feature release.