Skip to content

Commit 666c07a

Browse files
committed
Release 9.5.7.
1 parent bcbd04a commit 666c07a

13 files changed

+186
-90
lines changed

CHANGELOG.md

Lines changed: 102 additions & 64 deletions
Large diffs are not rendered by default.

CHANGELOG.rst

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

77
This changelog describes changes after version 8.0.0.
88

9+
v9.5.7
10+
======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix release.
16+
17+
Minor Changes
18+
-------------
19+
20+
- apache2_module - added workaround for new PHP module name, from ``php7_module`` to ``php_module`` (https://github.com/ansible-collections/community.general/pull/9951).
21+
22+
Bugfixes
23+
--------
24+
25+
- dependent look plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833).
26+
- diy callback plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833).
27+
- github_deploy_key - check that key really exists on 422 to avoid masking other errors (https://github.com/ansible-collections/community.general/issues/6718, https://github.com/ansible-collections/community.general/pull/10011).
28+
- hashids and unicode_normalize filter plugins - avoid deprecated ``AnsibleFilterTypeError`` on ansible-core 2.19 (https://github.com/ansible-collections/community.general/pull/9992).
29+
- keycloak_authentication - fix authentification config duplication for Keycloak < 26.2.0 (https://github.com/ansible-collections/community.general/pull/9987).
30+
- keycloak_client - fix the idempotency regression by normalizing the Keycloak response for ``after_client`` (https://github.com/ansible-collections/community.general/issues/9905, https://github.com/ansible-collections/community.general/pull/9976).
31+
- proxmox inventory plugin - fix ``ansible_host`` staying empty for certain Proxmox nodes (https://github.com/ansible-collections/community.general/issues/5906, https://github.com/ansible-collections/community.general/pull/9952).
32+
- proxmox_disk - fail gracefully if ``storage`` is required but not provided by the user (https://github.com/ansible-collections/community.general/issues/9941, https://github.com/ansible-collections/community.general/pull/9963).
33+
- reveal_ansible_type filter plugin and ansible_type test plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833).
34+
- sysrc - no longer always reporting ``changed=true`` when ``state=absent``. This fixes the method ``exists()`` (https://github.com/ansible-collections/community.general/issues/10004, https://github.com/ansible-collections/community.general/pull/10005).
35+
- yaml callback plugin - use ansible-core internals to avoid breakage with Data Tagging (https://github.com/ansible-collections/community.general/pull/9833).
36+
37+
Known Issues
38+
------------
39+
40+
- reveal_ansible_type filter plugin and ansible_type test plugin - note that ansible-core's Data Tagging feature implements new aliases, such as ``_AnsibleTaggedStr`` for ``str``, ``_AnsibleTaggedInt`` for ``int``, and ``_AnsibleTaggedFloat`` for ``float`` (https://github.com/ansible-collections/community.general/pull/9833).
41+
942
v9.5.6
1043
======
1144

changelogs/changelog.yaml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,3 +1648,54 @@ releases:
16481648
- homebrew_cask.yml
16491649
- sudoers.yml
16501650
release_date: '2025-03-24'
1651+
9.5.7:
1652+
changes:
1653+
bugfixes:
1654+
- dependent look plugin - make compatible with ansible-core's Data Tagging
1655+
feature (https://github.com/ansible-collections/community.general/pull/9833).
1656+
- diy callback plugin - make compatible with ansible-core's Data Tagging feature
1657+
(https://github.com/ansible-collections/community.general/pull/9833).
1658+
- "github_deploy_key - check that key really exists on 422\_to avoid masking\
1659+
\ other errors (https://github.com/ansible-collections/community.general/issues/6718,\
1660+
\ https://github.com/ansible-collections/community.general/pull/10011)."
1661+
- hashids and unicode_normalize filter plugins - avoid deprecated ``AnsibleFilterTypeError``
1662+
on ansible-core 2.19 (https://github.com/ansible-collections/community.general/pull/9992).
1663+
- keycloak_authentication - fix authentification config duplication for Keycloak
1664+
< 26.2.0 (https://github.com/ansible-collections/community.general/pull/9987).
1665+
- keycloak_client - fix the idempotency regression by normalizing the Keycloak
1666+
response for ``after_client`` (https://github.com/ansible-collections/community.general/issues/9905,
1667+
https://github.com/ansible-collections/community.general/pull/9976).
1668+
- proxmox inventory plugin - fix ``ansible_host`` staying empty for certain
1669+
Proxmox nodes (https://github.com/ansible-collections/community.general/issues/5906,
1670+
https://github.com/ansible-collections/community.general/pull/9952).
1671+
- proxmox_disk - fail gracefully if ``storage`` is required but not provided
1672+
by the user (https://github.com/ansible-collections/community.general/issues/9941,
1673+
https://github.com/ansible-collections/community.general/pull/9963).
1674+
- reveal_ansible_type filter plugin and ansible_type test plugin - make compatible
1675+
with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833).
1676+
- sysrc - no longer always reporting ``changed=true`` when ``state=absent``.
1677+
This fixes the method ``exists()`` (https://github.com/ansible-collections/community.general/issues/10004,
1678+
https://github.com/ansible-collections/community.general/pull/10005).
1679+
- yaml callback plugin - use ansible-core internals to avoid breakage with
1680+
Data Tagging (https://github.com/ansible-collections/community.general/pull/9833).
1681+
known_issues:
1682+
- reveal_ansible_type filter plugin and ansible_type test plugin - note that
1683+
ansible-core's Data Tagging feature implements new aliases, such as ``_AnsibleTaggedStr``
1684+
for ``str``, ``_AnsibleTaggedInt`` for ``int``, and ``_AnsibleTaggedFloat``
1685+
for ``float`` (https://github.com/ansible-collections/community.general/pull/9833).
1686+
minor_changes:
1687+
- apache2_module - added workaround for new PHP module name, from ``php7_module``
1688+
to ``php_module`` (https://github.com/ansible-collections/community.general/pull/9951).
1689+
release_summary: Regular bugfix release.
1690+
fragments:
1691+
- 10005-fix-method-exists-in-sysrc.yml
1692+
- 10011-github_deploy_key-check-key-present.yml
1693+
- 9.5.7.yml
1694+
- 9833-data-tagging.yml
1695+
- 9951-mod-php-identifier.yml
1696+
- 9952-proxmox-inventory-plugin-improve-ansible_host.yml
1697+
- 9963-proxmox_disk-storage.yml
1698+
- 9976-keycloak_client-fix-idempotency-regression.yml
1699+
- 9987-keycloak-auth-flow-fix-config.yaml
1700+
- 9992-filtertypeerror.yml
1701+
release_date: '2025-04-21'

changelogs/fragments/10005-fix-method-exists-in-sysrc.yml

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

changelogs/fragments/10011-github_deploy_key-check-key-present.yml

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

changelogs/fragments/9.5.7.yml

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

changelogs/fragments/9833-data-tagging.yml

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

changelogs/fragments/9951-mod-php-identifier.yml

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

changelogs/fragments/9952-proxmox-inventory-plugin-improve-ansible_host.yml

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

changelogs/fragments/9963-proxmox_disk-storage.yml

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

0 commit comments

Comments
 (0)