Skip to content

Commit 0b9abdf

Browse files
committed
Release 11.2.0.
1 parent f077c1e commit 0b9abdf

35 files changed

+276
-100
lines changed

CHANGELOG.md

Lines changed: 106 additions & 31 deletions
Large diffs are not rendered by default.

CHANGELOG.rst

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

77
This changelog describes changes after version 10.0.0.
88

9+
v11.2.0
10+
=======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix and features release.
16+
17+
Minor Changes
18+
-------------
19+
20+
- apk - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/issues/10479, https://github.com/ansible-collections/community.general/pull/10520).
21+
- bzr - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10523).
22+
- capabilities - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10524).
23+
- composer - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10525).
24+
- django module utils - remove deprecated parameter ``_DjangoRunner`` call (https://github.com/ansible-collections/community.general/pull/10574).
25+
- easy_install - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10526).
26+
- imgadm - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10536).
27+
- jenkins_plugin - install dependencies for specific version (https://github.com/ansible-collections/community.general/issue/4995, https://github.com/ansible-collections/community.general/pull/10346).
28+
- keycloak_identity_provider – add support for ``fromUrl`` to automatically fetch OIDC endpoints from the well-known discovery URL, simplifying identity provider configuration (https://github.com/ansible-collections/community.general/pull/10527).
29+
- keycloak_realm - add support for ``brute_force_strategy`` and ``max_temporary_lockouts`` (https://github.com/ansible-collections/community.general/issues/10412, https://github.com/ansible-collections/community.general/pull/10415).
30+
- keycloak_realm - add support for client-related options and Oauth2 device (https://github.com/ansible-collections/community.general/pull/10538).
31+
- logstash_plugin - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/issues/10479, https://github.com/ansible-collections/community.general/pull/10520).
32+
- nagios - make parameter ``services`` a ``list`` instead of a ``str`` (https://github.com/ansible-collections/community.general/pull/10493).
33+
- open_iscsi - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10599).
34+
- pear - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10601).
35+
- portage - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10602).
36+
- riak - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10603).
37+
- scaleway_* modules, scaleway inventory plugin - update available zones and API URLs (https://github.com/ansible-collections/community.general/issues/10383, https://github.com/ansible-collections/community.general/pull/10424).
38+
- sensu_subscription - normalize quotes in the module output (https://github.com/ansible-collections/community.general/pull/10483).
39+
- solaris_zone - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10604).
40+
- swupd - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10605).
41+
- tasks_only callback plugin - add ``result_format`` and ``pretty_results`` options similarly to the default callback (https://github.com/ansible-collections/community.general/pull/10422).
42+
- timezone - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10612).
43+
- urpmi - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10606).
44+
- xbps - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10608).
45+
- xfs_quota - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10609).
46+
47+
Deprecated Features
48+
-------------------
49+
50+
- bearychat - module is deprecated and will be removed in community.general 12.0.0 (https://github.com/ansible-collections/community.general/issues/10514).
51+
- cpanm - deprecate ``mode=compatibility``, ``mode=new`` should be used instead (https://github.com/ansible-collections/community.general/pull/10434).
52+
- github_repo - deprecate ``force_defaults=true`` (https://github.com/ansible-collections/community.general/pull/10435).
53+
- rocketchat - the default value for ``is_pre740``, currently ``true``, is deprecated and will change to ``false`` in community.general 13.0.0 (https://github.com/ansible-collections/community.general/pull/10490).
54+
55+
Bugfixes
56+
--------
57+
58+
- jenkins_plugin - install latest compatible version instead of latest (https://github.com/ansible-collections/community.general/issues/854, https://github.com/ansible-collections/community.general/pull/10346).
59+
- jenkins_plugin - separate Jenkins and external URL credentials (https://github.com/ansible-collections/community.general/issues/4419, https://github.com/ansible-collections/community.general/pull/10346).
60+
- lvm_pv - properly detect SCSI or NVMe devices to rescan (https://github.com/ansible-collections/community.general/issues/10444, https://github.com/ansible-collections/community.general/pull/10596).
61+
62+
New Plugins
63+
-----------
64+
65+
Lookup
66+
~~~~~~
67+
68+
- community.general.binary_file - Read binary file and return it Base64 encoded.
69+
70+
New Modules
71+
-----------
72+
73+
- community.general.lvm_pv_move_data - Move data between LVM Physical Volumes (PVs).
74+
- community.general.pacemaker_info - Gather information about Pacemaker cluster.
75+
976
v11.1.2
1077
=======
1178

changelogs/changelog.yaml

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1474,3 +1474,106 @@ releases:
14741474
- 11.1.2.yml
14751475
- become-pipelining.yml
14761476
release_date: '2025-08-04'
1477+
11.2.0:
1478+
changes:
1479+
bugfixes:
1480+
- jenkins_plugin - install latest compatible version instead of latest (https://github.com/ansible-collections/community.general/issues/854,
1481+
https://github.com/ansible-collections/community.general/pull/10346).
1482+
- jenkins_plugin - separate Jenkins and external URL credentials (https://github.com/ansible-collections/community.general/issues/4419,
1483+
https://github.com/ansible-collections/community.general/pull/10346).
1484+
- lvm_pv - properly detect SCSI or NVMe devices to rescan (https://github.com/ansible-collections/community.general/issues/10444,
1485+
https://github.com/ansible-collections/community.general/pull/10596).
1486+
deprecated_features:
1487+
- bearychat - module is deprecated and will be removed in community.general
1488+
12.0.0 (https://github.com/ansible-collections/community.general/issues/10514).
1489+
- cpanm - deprecate ``mode=compatibility``, ``mode=new`` should be used instead
1490+
(https://github.com/ansible-collections/community.general/pull/10434).
1491+
- github_repo - deprecate ``force_defaults=true`` (https://github.com/ansible-collections/community.general/pull/10435).
1492+
- rocketchat - the default value for ``is_pre740``, currently ``true``, is
1493+
deprecated and will change to ``false`` in community.general 13.0.0 (https://github.com/ansible-collections/community.general/pull/10490).
1494+
minor_changes:
1495+
- apk - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/issues/10479,
1496+
https://github.com/ansible-collections/community.general/pull/10520).
1497+
- bzr - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10523).
1498+
- capabilities - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10524).
1499+
- composer - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10525).
1500+
- django module utils - remove deprecated parameter ``_DjangoRunner`` call
1501+
(https://github.com/ansible-collections/community.general/pull/10574).
1502+
- easy_install - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10526).
1503+
- imgadm - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10536).
1504+
- jenkins_plugin - install dependencies for specific version (https://github.com/ansible-collections/community.general/issue/4995,
1505+
https://github.com/ansible-collections/community.general/pull/10346).
1506+
- "keycloak_identity_provider \u2013 add support for ``fromUrl`` to automatically\
1507+
\ fetch OIDC endpoints from the well-known discovery URL, simplifying identity\
1508+
\ provider configuration (https://github.com/ansible-collections/community.general/pull/10527)."
1509+
- keycloak_realm - add support for ``brute_force_strategy`` and ``max_temporary_lockouts``
1510+
(https://github.com/ansible-collections/community.general/issues/10412,
1511+
https://github.com/ansible-collections/community.general/pull/10415).
1512+
- keycloak_realm - add support for client-related options and Oauth2 device
1513+
(https://github.com/ansible-collections/community.general/pull/10538).
1514+
- logstash_plugin - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/issues/10479,
1515+
https://github.com/ansible-collections/community.general/pull/10520).
1516+
- nagios - make parameter ``services`` a ``list`` instead of a ``str`` (https://github.com/ansible-collections/community.general/pull/10493).
1517+
- open_iscsi - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10599).
1518+
- pear - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10601).
1519+
- portage - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10602).
1520+
- riak - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10603).
1521+
- scaleway_* modules, scaleway inventory plugin - update available zones and
1522+
API URLs (https://github.com/ansible-collections/community.general/issues/10383,
1523+
https://github.com/ansible-collections/community.general/pull/10424).
1524+
- sensu_subscription - normalize quotes in the module output (https://github.com/ansible-collections/community.general/pull/10483).
1525+
- solaris_zone - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10604).
1526+
- swupd - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10605).
1527+
- tasks_only callback plugin - add ``result_format`` and ``pretty_results``
1528+
options similarly to the default callback (https://github.com/ansible-collections/community.general/pull/10422).
1529+
- timezone - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10612).
1530+
- urpmi - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10606).
1531+
- xbps - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10608).
1532+
- xfs_quota - using safer mechanism to run external command (https://github.com/ansible-collections/community.general/pull/10609).
1533+
release_summary: Regular bugfix and features release.
1534+
fragments:
1535+
- 10346-jenkins-plugins-fixes.yml
1536+
- 10415-keycloak-realm-brute-force-attributes.yml
1537+
- 10422-tasks_only-result_format.yml
1538+
- 10424-scaleway-update-zones.yml
1539+
- 10434-cpanm-deprecate-compat-mode.yml
1540+
- 10435-github-repo-deprecate-force-defaults.yml
1541+
- 10483-sensu-subscription-quotes.yml
1542+
- 10490-rocketchat.yml
1543+
- 10493-nagios-services.yml
1544+
- 10514-deprecate-bearychat.yml
1545+
- 10520-arg-runcommand-list.yml
1546+
- 10523-bzr-cmd-list.yml
1547+
- 10524-capabilities-cmd-list.yml
1548+
- 10525-composer-cmd-list.yml
1549+
- 10526-easy-install-cmd-list.yml
1550+
- 10527-keycloak-idp-well-known-url-support.yml
1551+
- 10536-imgadm-cmd-list.yml
1552+
- 10538-keycloak-realm-add-support-client-options.yml
1553+
- 10573-logstash-plugin-cmd-list.yml
1554+
- 10574-django-runner.yml
1555+
- 10599-open-iscsi-cmd-list.yml
1556+
- 10601-pear-cmd-list.yml
1557+
- 10602-portage-cmd-list.yml
1558+
- 10603-riak-cmd-list.yml
1559+
- 10604-solaris-zone-cmd-list.yml
1560+
- 10605-swupd-cmd-list.yml
1561+
- 10606-urpmi-cmd-list.yml
1562+
- 10608-xbps-cmd-list.yml
1563+
- 10609-xfs-quota-cmd-list.yml
1564+
- 10612-timezone-cmd-list.yml
1565+
- 11.2.0.yml
1566+
- lvm_pv.yml
1567+
modules:
1568+
- description: Move data between LVM Physical Volumes (PVs).
1569+
name: lvm_pv_move_data
1570+
namespace: ''
1571+
- description: Gather information about Pacemaker cluster.
1572+
name: pacemaker_info
1573+
namespace: ''
1574+
plugins:
1575+
lookup:
1576+
- description: Read binary file and return it Base64 encoded.
1577+
name: binary_file
1578+
namespace: null
1579+
release_date: '2025-08-11'

changelogs/fragments/10346-jenkins-plugins-fixes.yml

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

changelogs/fragments/10415-keycloak-realm-brute-force-attributes.yml

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

changelogs/fragments/10422-tasks_only-result_format.yml

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

changelogs/fragments/10424-scaleway-update-zones.yml

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

changelogs/fragments/10434-cpanm-deprecate-compat-mode.yml

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

changelogs/fragments/10435-github-repo-deprecate-force-defaults.yml

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

changelogs/fragments/10483-sensu-subscription-quotes.yml

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

0 commit comments

Comments
 (0)