Skip to content

Commit 06bce0d

Browse files
committed
Release 8.6.2.
1 parent 4bfb832 commit 06bce0d

13 files changed

+140
-62
lines changed

CHANGELOG.md

Lines changed: 72 additions & 41 deletions
Large diffs are not rendered by default.

CHANGELOG.rst

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

77
This changelog describes changes after version 7.0.0.
88

9+
v8.6.2
10+
======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix release.
16+
17+
Bugfixes
18+
--------
19+
20+
- git_config - fix behavior of ``state=absent`` if ``value`` is present (https://github.com/ansible-collections/community.general/issues/8436, https://github.com/ansible-collections/community.general/pull/8452).
21+
- homebrew - do not fail when brew prints warnings (https://github.com/ansible-collections/community.general/pull/8406, https://github.com/ansible-collections/community.general/issues/7044).
22+
- keycloak_client - fix TypeError when sanitizing the ``saml.signing.private.key`` attribute in the module's diff or state output. The ``sanitize_cr`` function expected a dict where in some cases a list might occur (https://github.com/ansible-collections/community.general/pull/8403).
23+
- keycloak_realm - add normalizations for ``attributes`` and ``protocol_mappers`` (https://github.com/ansible-collections/community.general/pull/8496).
24+
- launched - correctly report changed status in check mode (https://github.com/ansible-collections/community.general/pull/8406).
25+
- opennebula inventory plugin - fix invalid reference to IP when inventory runs against NICs with no IPv4 address (https://github.com/ansible-collections/community.general/pull/8489).
26+
- opentelemetry callback - do not save the JSON response when using the ``ansible.builtin.uri`` module (https://github.com/ansible-collections/community.general/pull/8430).
27+
- opentelemetry callback - do not save the content response when using the ``ansible.builtin.slurp`` module (https://github.com/ansible-collections/community.general/pull/8430).
28+
- paman - do not fail if an empty list of packages has been provided and there is nothing to do (https://github.com/ansible-collections/community.general/pull/8514).
29+
30+
Known Issues
31+
------------
32+
33+
- homectl - the module does not work under Python 3.13 or newer, since it relies on the removed ``crypt`` standard library module (https://github.com/ansible-collections/community.general/issues/4691, https://github.com/ansible-collections/community.general/pull/8497).
34+
- udm_user - the module does not work under Python 3.13 or newer, since it relies on the removed ``crypt`` standard library module (https://github.com/ansible-collections/community.general/issues/4690, https://github.com/ansible-collections/community.general/pull/8497).
35+
936
v8.6.1
1037
======
1138

changelogs/changelog.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1455,3 +1455,44 @@ releases:
14551455
- 8367-fix-close-span-if-no-logs.yaml
14561456
- 8373-honour-disable-logs.yaml
14571457
release_date: '2024-05-20'
1458+
8.6.2:
1459+
changes:
1460+
bugfixes:
1461+
- git_config - fix behavior of ``state=absent`` if ``value`` is present (https://github.com/ansible-collections/community.general/issues/8436,
1462+
https://github.com/ansible-collections/community.general/pull/8452).
1463+
- homebrew - do not fail when brew prints warnings (https://github.com/ansible-collections/community.general/pull/8406,
1464+
https://github.com/ansible-collections/community.general/issues/7044).
1465+
- keycloak_client - fix TypeError when sanitizing the ``saml.signing.private.key``
1466+
attribute in the module's diff or state output. The ``sanitize_cr`` function
1467+
expected a dict where in some cases a list might occur (https://github.com/ansible-collections/community.general/pull/8403).
1468+
- keycloak_realm - add normalizations for ``attributes`` and ``protocol_mappers``
1469+
(https://github.com/ansible-collections/community.general/pull/8496).
1470+
- launched - correctly report changed status in check mode (https://github.com/ansible-collections/community.general/pull/8406).
1471+
- opennebula inventory plugin - fix invalid reference to IP when inventory runs
1472+
against NICs with no IPv4 address (https://github.com/ansible-collections/community.general/pull/8489).
1473+
- opentelemetry callback - do not save the JSON response when using the ``ansible.builtin.uri``
1474+
module (https://github.com/ansible-collections/community.general/pull/8430).
1475+
- opentelemetry callback - do not save the content response when using the ``ansible.builtin.slurp``
1476+
module (https://github.com/ansible-collections/community.general/pull/8430).
1477+
- paman - do not fail if an empty list of packages has been provided and there
1478+
is nothing to do (https://github.com/ansible-collections/community.general/pull/8514).
1479+
known_issues:
1480+
- homectl - the module does not work under Python 3.13 or newer, since it relies
1481+
on the removed ``crypt`` standard library module (https://github.com/ansible-collections/community.general/issues/4691,
1482+
https://github.com/ansible-collections/community.general/pull/8497).
1483+
- udm_user - the module does not work under Python 3.13 or newer, since it relies
1484+
on the removed ``crypt`` standard library module (https://github.com/ansible-collections/community.general/issues/4690,
1485+
https://github.com/ansible-collections/community.general/pull/8497).
1486+
release_summary: Regular bugfix release.
1487+
fragments:
1488+
- 8.6.2.yml
1489+
- 8403-fix-typeerror-in-keycloak-client.yaml
1490+
- 8406-fix-homebrew-cask-warning.yaml
1491+
- 8430-fix-opentelemetry-when-using-logs-with-uri-or-slurp-tasks.yaml
1492+
- 8452-git_config-absent.yml
1493+
- 8476-launchd-check-mode-changed.yaml
1494+
- 8489-fix-opennebula-inventory-crash-when-nic-has-no-ip.yml
1495+
- 8496-keycloak_clientscope-add-normalizations.yaml
1496+
- 8497-crypt.yml
1497+
- 8514-pacman-empty.yml
1498+
release_date: '2024-06-17'

changelogs/fragments/8.6.2.yml

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

changelogs/fragments/8403-fix-typeerror-in-keycloak-client.yaml

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

changelogs/fragments/8406-fix-homebrew-cask-warning.yaml

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

changelogs/fragments/8430-fix-opentelemetry-when-using-logs-with-uri-or-slurp-tasks.yaml

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

changelogs/fragments/8452-git_config-absent.yml

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

changelogs/fragments/8476-launchd-check-mode-changed.yaml

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

changelogs/fragments/8489-fix-opennebula-inventory-crash-when-nic-has-no-ip.yml

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

0 commit comments

Comments
 (0)