Skip to content

Commit 49e620c

Browse files
committed
Release 11.4.0.
1 parent e82c2ad commit 49e620c

18 files changed

+164
-67
lines changed

CHANGELOG.md

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

CHANGELOG.rst

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

77
This changelog describes changes after version 10.0.0.
88

9+
v11.4.0
10+
=======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix and feature release.
16+
17+
Minor Changes
18+
-------------
19+
20+
- github_app_access_token lookup plugin - add support for GitHub Enterprise Server (https://github.com/ansible-collections/community.general/issues/10879, https://github.com/ansible-collections/community.general/pull/10880).
21+
- gitlab_group_variable - add ``description`` option (https://github.com/ansible-collections/community.general/pull/10812).
22+
- gitlab_instance_variable - add ``description`` option (https://github.com/ansible-collections/community.general/pull/10812).
23+
- gitlab_project_variable - add ``description`` option (https://github.com/ansible-collections/community.general/pull/10812, https://github.com/ansible-collections/community.general/issues/8584, https://github.com/ansible-collections/community.general/issues/10809).
24+
- keycloak_client - add idempotent support for ``optional_client_scopes`` and ``optional_client_scopes``, and ensure consistent change detection between check mode and live run (https://github.com/ansible-collections/community.general/issues/5495, https://github.com/ansible-collections/community.general/pull/10842).
25+
- pipx module_utils - use ``PIPX_USE_EMOJI`` to disable emojis in the output of ``pipx`` 1.8.0 (https://github.com/ansible-collections/community.general/pull/10874).
26+
27+
Bugfixes
28+
--------
29+
30+
- Avoid usage of deprecated ``ansible.module_utils.six`` in all code that does not have to support Python 2 (https://github.com/ansible-collections/community.general/pull/10873).
31+
- gem - fix soundness issue when uninstalling default gems on Ubuntu (https://github.com/ansible-collections/community.general/issues/10451, https://github.com/ansible-collections/community.general/pull/10689).
32+
- github_app_access_token lookup plugin - fix compatibility imports for using jwt (https://github.com/ansible-collections/community.general/issues/10807, https://github.com/ansible-collections/community.general/pull/10810).
33+
- github_deploy_key - fix bug during error handling if no body was present in the result (https://github.com/ansible-collections/community.general/issues/10853, https://github.com/ansible-collections/community.general/pull/10857).
34+
- homebrew - do not fail when cask or formula name has changed in homebrew repo (https://github.com/ansible-collections/community.general/issues/10804, https://github.com/ansible-collections/community.general/pull/10805).
35+
- keycloak_group - fixes an issue where module ignores realm when searching subgroups by name (https://github.com/ansible-collections/community.general/pull/10840).
36+
- keycloak_role - fixes an issue where the module incorrectly returns ``changed=true`` when using the alias ``clientId`` in composite roles (https://github.com/ansible-collections/community.general/pull/10829).
37+
- parted - variable is a list, not text (https://github.com/ansible-collections/community.general/pull/10823, https://github.com/ansible-collections/community.general/issues/10817).
38+
- rocketchat - fix message delivery in Rocket Chat >= 7.5.3 by forcing ``Content-Type`` header to ``application/json`` instead of the default ``application/x-www-form-urlencoded`` (https://github.com/ansible-collections/community.general/issues/10796, https://github.com/ansible-collections/community.general/pull/10796).
39+
- yaml cache plugin - make compatible with ansible-core 2.19 (https://github.com/ansible-collections/community.general/issues/10849, https://github.com/ansible-collections/community.general/issues/10852).
40+
941
v11.3.0
1042
=======
1143

changelogs/changelog.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1739,3 +1739,63 @@ releases:
17391739
name: to_yaml
17401740
namespace: null
17411741
release_date: '2025-09-08'
1742+
11.4.0:
1743+
changes:
1744+
bugfixes:
1745+
- Avoid usage of deprecated ``ansible.module_utils.six`` in all code that
1746+
does not have to support Python 2 (https://github.com/ansible-collections/community.general/pull/10873).
1747+
- gem - fix soundness issue when uninstalling default gems on Ubuntu (https://github.com/ansible-collections/community.general/issues/10451,
1748+
https://github.com/ansible-collections/community.general/pull/10689).
1749+
- github_app_access_token lookup plugin - fix compatibility imports for using
1750+
jwt (https://github.com/ansible-collections/community.general/issues/10807,
1751+
https://github.com/ansible-collections/community.general/pull/10810).
1752+
- github_deploy_key - fix bug during error handling if no body was present
1753+
in the result (https://github.com/ansible-collections/community.general/issues/10853,
1754+
https://github.com/ansible-collections/community.general/pull/10857).
1755+
- homebrew - do not fail when cask or formula name has changed in homebrew
1756+
repo (https://github.com/ansible-collections/community.general/issues/10804,
1757+
https://github.com/ansible-collections/community.general/pull/10805).
1758+
- keycloak_group - fixes an issue where module ignores realm when searching
1759+
subgroups by name (https://github.com/ansible-collections/community.general/pull/10840).
1760+
- keycloak_role - fixes an issue where the module incorrectly returns ``changed=true``
1761+
when using the alias ``clientId`` in composite roles (https://github.com/ansible-collections/community.general/pull/10829).
1762+
- parted - variable is a list, not text (https://github.com/ansible-collections/community.general/pull/10823,
1763+
https://github.com/ansible-collections/community.general/issues/10817).
1764+
- rocketchat - fix message delivery in Rocket Chat >= 7.5.3 by forcing ``Content-Type``
1765+
header to ``application/json`` instead of the default ``application/x-www-form-urlencoded``
1766+
(https://github.com/ansible-collections/community.general/issues/10796,
1767+
https://github.com/ansible-collections/community.general/pull/10796).
1768+
- yaml cache plugin - make compatible with ansible-core 2.19 (https://github.com/ansible-collections/community.general/issues/10849,
1769+
https://github.com/ansible-collections/community.general/issues/10852).
1770+
minor_changes:
1771+
- github_app_access_token lookup plugin - add support for GitHub Enterprise
1772+
Server (https://github.com/ansible-collections/community.general/issues/10879,
1773+
https://github.com/ansible-collections/community.general/pull/10880).
1774+
- gitlab_group_variable - add ``description`` option (https://github.com/ansible-collections/community.general/pull/10812).
1775+
- gitlab_instance_variable - add ``description`` option (https://github.com/ansible-collections/community.general/pull/10812).
1776+
- gitlab_project_variable - add ``description`` option (https://github.com/ansible-collections/community.general/pull/10812,
1777+
https://github.com/ansible-collections/community.general/issues/8584, https://github.com/ansible-collections/community.general/issues/10809).
1778+
- keycloak_client - add idempotent support for ``optional_client_scopes``
1779+
and ``optional_client_scopes``, and ensure consistent change detection between
1780+
check mode and live run (https://github.com/ansible-collections/community.general/issues/5495,
1781+
https://github.com/ansible-collections/community.general/pull/10842).
1782+
- pipx module_utils - use ``PIPX_USE_EMOJI`` to disable emojis in the output
1783+
of ``pipx`` 1.8.0 (https://github.com/ansible-collections/community.general/pull/10874).
1784+
release_summary: Regular bugfix and feature release.
1785+
fragments:
1786+
- 10689-gem-prevent-soundness-issue.yml
1787+
- 10796-rocketchat-force-content-type.yml
1788+
- 10805-homebrew-support-old-names.yml
1789+
- 10810-github_app_access_token-jwt.yml
1790+
- 10812-gitlab-variable-add-description.yml
1791+
- 10823-parted-fail-json-command.yml
1792+
- 10829-fix-keycloak-role-changed-status.yml
1793+
- 10840-fix-keycloak-subgroup-search-realm.yml
1794+
- 10842-keycloak-client-scope-support.yml
1795+
- 10852-yaml.yml
1796+
- 10857-github_deploy_key-err.yml
1797+
- 10873-six.yml
1798+
- 10874-pipx-180.yml
1799+
- 10880-github_app_access_token-lookup.yml
1800+
- 11.4.0.yml
1801+
release_date: '2025-10-06'

changelogs/fragments/10689-gem-prevent-soundness-issue.yml

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

changelogs/fragments/10796-rocketchat-force-content-type.yml

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

changelogs/fragments/10805-homebrew-support-old-names.yml

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

changelogs/fragments/10810-github_app_access_token-jwt.yml

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

changelogs/fragments/10812-gitlab-variable-add-description.yml

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

changelogs/fragments/10823-parted-fail-json-command.yml

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

changelogs/fragments/10829-fix-keycloak-role-changed-status.yml

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

0 commit comments

Comments
 (0)