Skip to content

Commit d8505bd

Browse files
committed
Release 9.5.2.
1 parent aa0df4d commit d8505bd

15 files changed

+142
-65
lines changed

CHANGELOG.md

Lines changed: 73 additions & 42 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 8.0.0.
88

9+
v9.5.2
10+
======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix release.
16+
17+
Minor Changes
18+
-------------
19+
20+
- proxmox inventory plugin - fix urllib3 ``InsecureRequestWarnings`` not being suppressed when a token is used (https://github.com/ansible-collections/community.general/pull/9099).
21+
22+
Bugfixes
23+
--------
24+
25+
- dnf_config_manager - fix hanging when prompting to import GPG keys (https://github.com/ansible-collections/community.general/pull/9124, https://github.com/ansible-collections/community.general/issues/8830).
26+
- dnf_config_manager - forces locale to ``C`` before module starts. If the locale was set to non-English, the output of the ``dnf config-manager`` could not be parsed (https://github.com/ansible-collections/community.general/pull/9157, https://github.com/ansible-collections/community.general/issues/9046).
27+
- flatpak - force the locale language to ``C`` when running the flatpak command (https://github.com/ansible-collections/community.general/pull/9187, https://github.com/ansible-collections/community.general/issues/8883).
28+
- github_key - in check mode, a faulty call to ```datetime.strftime(...)``` was being made which generated an exception (https://github.com/ansible-collections/community.general/issues/9185).
29+
- homebrew_cask - allow ``+`` symbol in Homebrew cask name validation regex (https://github.com/ansible-collections/community.general/pull/9128).
30+
- keycloak_client - fix diff by removing code that turns the attributes dict which contains additional settings into a list (https://github.com/ansible-collections/community.general/pull/9077).
31+
- keycloak_clientscope - fix diff and ``end_state`` by removing the code that turns the attributes dict, which contains additional config items, into a list (https://github.com/ansible-collections/community.general/pull/9082).
32+
- keycloak_clientscope_type - sort the default and optional clientscope lists to improve the diff (https://github.com/ansible-collections/community.general/pull/9202).
33+
- redfish_utils module utils - remove undocumented default applytime (https://github.com/ansible-collections/community.general/pull/9114).
34+
- slack - fail if Slack API response is not OK with error message (https://github.com/ansible-collections/community.general/pull/9198).
35+
936
v9.5.1
1037
======
1138

changelogs/changelog.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1467,3 +1467,45 @@ releases:
14671467
- 9084-collection_version-importlib.yml
14681468
- 9092-keycloak-clientscope-type-fix-check-mode.yml
14691469
release_date: '2024-11-03'
1470+
9.5.2:
1471+
changes:
1472+
bugfixes:
1473+
- dnf_config_manager - fix hanging when prompting to import GPG keys (https://github.com/ansible-collections/community.general/pull/9124,
1474+
https://github.com/ansible-collections/community.general/issues/8830).
1475+
- dnf_config_manager - forces locale to ``C`` before module starts. If the
1476+
locale was set to non-English, the output of the ``dnf config-manager``
1477+
could not be parsed (https://github.com/ansible-collections/community.general/pull/9157,
1478+
https://github.com/ansible-collections/community.general/issues/9046).
1479+
- flatpak - force the locale language to ``C`` when running the flatpak command
1480+
(https://github.com/ansible-collections/community.general/pull/9187, https://github.com/ansible-collections/community.general/issues/8883).
1481+
- github_key - in check mode, a faulty call to ```datetime.strftime(...)```
1482+
was being made which generated an exception (https://github.com/ansible-collections/community.general/issues/9185).
1483+
- homebrew_cask - allow ``+`` symbol in Homebrew cask name validation regex
1484+
(https://github.com/ansible-collections/community.general/pull/9128).
1485+
- keycloak_client - fix diff by removing code that turns the attributes dict
1486+
which contains additional settings into a list (https://github.com/ansible-collections/community.general/pull/9077).
1487+
- keycloak_clientscope - fix diff and ``end_state`` by removing the code that
1488+
turns the attributes dict, which contains additional config items, into
1489+
a list (https://github.com/ansible-collections/community.general/pull/9082).
1490+
- keycloak_clientscope_type - sort the default and optional clientscope lists
1491+
to improve the diff (https://github.com/ansible-collections/community.general/pull/9202).
1492+
- redfish_utils module utils - remove undocumented default applytime (https://github.com/ansible-collections/community.general/pull/9114).
1493+
- slack - fail if Slack API response is not OK with error message (https://github.com/ansible-collections/community.general/pull/9198).
1494+
minor_changes:
1495+
- proxmox inventory plugin - fix urllib3 ``InsecureRequestWarnings`` not being
1496+
suppressed when a token is used (https://github.com/ansible-collections/community.general/pull/9099).
1497+
release_summary: Regular bugfix release.
1498+
fragments:
1499+
- 9.5.2.yml
1500+
- 9077-keycloak_client-fix-attributes-dict-turned-into-list.yml
1501+
- 9082-keycloak_clientscope-fix-attributes-dict-turned-into-list.yml
1502+
- 9099-proxmox-fix-insecure.yml
1503+
- 9114-redfish-utils-update-remove-default-applytime.yml
1504+
- 9124-dnf_config_manager.yml
1505+
- 9128-homebrew_cask-name-regex-fix.yml
1506+
- 9157-fix-dnf_config_manager-locale.yml
1507+
- 9186-fix-broken-check-mode-in-github-key.yml
1508+
- 9187-flatpak-lang.yml
1509+
- 9198-fail-if-slack-api-response-is-not-ok-with-error-message.yml
1510+
- 9202-keycloak_clientscope_type-sort-lists.yml
1511+
release_date: '2024-12-02'

changelogs/fragments/9.5.2.yml

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

changelogs/fragments/9077-keycloak_client-fix-attributes-dict-turned-into-list.yml

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

changelogs/fragments/9082-keycloak_clientscope-fix-attributes-dict-turned-into-list.yml

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

changelogs/fragments/9099-proxmox-fix-insecure.yml

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

changelogs/fragments/9114-redfish-utils-update-remove-default-applytime.yml

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

changelogs/fragments/9124-dnf_config_manager.yml

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

changelogs/fragments/9128-homebrew_cask-name-regex-fix.yml

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

0 commit comments

Comments
 (0)