Skip to content

Commit 7b92d84

Browse files
committed
Release 10.7.1.
1 parent c8fe77c commit 7b92d84

14 files changed

+176
-94
lines changed

CHANGELOG.md

Lines changed: 101 additions & 66 deletions
Large diffs are not rendered by default.

CHANGELOG.rst

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

77
This changelog describes changes after version 9.0.0.
88

9+
v10.7.1
10+
=======
11+
12+
Release Summary
13+
---------------
14+
15+
Regular bugfix release.
16+
17+
Minor Changes
18+
-------------
19+
20+
- git_config - remove redundant ``required=False`` from ``argument_spec`` (https://github.com/ansible-collections/community.general/pull/10177).
21+
- proxmox_snap - correctly handle proxmox_snap timeout parameter (https://github.com/ansible-collections/community.proxmox/issues/73, https://github.com/ansible-collections/community.proxmox/issues/95, https://github.com/ansible-collections/community.general/pull/10176).
22+
23+
Deprecated Features
24+
-------------------
25+
26+
- yaml callback plugin - the YAML callback plugin was deprecated for removal in community.general 13.0.0. Since it needs to use ansible-core internals since ansible-core 2.19 that are changing a lot, we will remove this plugin already from community.general 12.0.0 to ease the maintenance burden (https://github.com/ansible-collections/community.general/pull/10213).
27+
28+
Bugfixes
29+
--------
30+
31+
- cobbler_system - update minimum version number to avoid wrong comparisons that happen in some cases using LooseVersion class which results in TypeError (https://github.com/ansible-collections/community.general/issues/8506, https://github.com/ansible-collections/community.general/pull/10145, https://github.com/ansible-collections/community.general/pull/10178).
32+
- gitlab_group_access_token, gitlab_project_access_token - fix handling of group and project access tokens for changes in GitLab 17.10 (https://github.com/ansible-collections/community.general/pull/10196).
33+
- keycloak - update more than 10 sub-groups (https://github.com/ansible-collections/community.general/issues/9690, https://github.com/ansible-collections/community.general/pull/9692).
34+
- yaml callback plugin - adjust to latest changes in ansible-core devel (https://github.com/ansible-collections/community.general/pull/10212).
35+
- yaml callback plugin - when using ansible-core 2.19.0b2 or newer, uses a new utility provided by ansible-core. This allows us to remove all hacks and vendored code that was part of the plugin for ansible-core versions with Data Tagging so far (https://github.com/ansible-collections/community.general/pull/10242).
36+
- zypper_repository - make compatible with Python 3.12+ (https://github.com/ansible-collections/community.general/issues/10222, https://github.com/ansible-collections/community.general/pull/10223).
37+
- zypper_repository - use ``metalink`` attribute to identify repositories without ``<url/>`` element (https://github.com/ansible-collections/community.general/issues/10224, https://github.com/ansible-collections/community.general/pull/10225).
38+
939
v10.7.0
1040
=======
1141

changelogs/changelog.yaml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1886,3 +1886,48 @@ releases:
18861886
name: to_prettytable
18871887
namespace: null
18881888
release_date: '2025-05-19'
1889+
10.7.1:
1890+
changes:
1891+
bugfixes:
1892+
- cobbler_system - update minimum version number to avoid wrong comparisons
1893+
that happen in some cases using LooseVersion class which results in TypeError
1894+
(https://github.com/ansible-collections/community.general/issues/8506, https://github.com/ansible-collections/community.general/pull/10145,
1895+
https://github.com/ansible-collections/community.general/pull/10178).
1896+
- gitlab_group_access_token, gitlab_project_access_token - fix handling of
1897+
group and project access tokens for changes in GitLab 17.10 (https://github.com/ansible-collections/community.general/pull/10196).
1898+
- keycloak - update more than 10 sub-groups (https://github.com/ansible-collections/community.general/issues/9690,
1899+
https://github.com/ansible-collections/community.general/pull/9692).
1900+
- yaml callback plugin - adjust to latest changes in ansible-core devel (https://github.com/ansible-collections/community.general/pull/10212).
1901+
- yaml callback plugin - when using ansible-core 2.19.0b2 or newer, uses a
1902+
new utility provided by ansible-core. This allows us to remove all hacks
1903+
and vendored code that was part of the plugin for ansible-core versions
1904+
with Data Tagging so far (https://github.com/ansible-collections/community.general/pull/10242).
1905+
- zypper_repository - make compatible with Python 3.12+ (https://github.com/ansible-collections/community.general/issues/10222,
1906+
https://github.com/ansible-collections/community.general/pull/10223).
1907+
- zypper_repository - use ``metalink`` attribute to identify repositories
1908+
without ``<url/>`` element (https://github.com/ansible-collections/community.general/issues/10224,
1909+
https://github.com/ansible-collections/community.general/pull/10225).
1910+
deprecated_features:
1911+
- yaml callback plugin - the YAML callback plugin was deprecated for removal
1912+
in community.general 13.0.0. Since it needs to use ansible-core internals
1913+
since ansible-core 2.19 that are changing a lot, we will remove this plugin
1914+
already from community.general 12.0.0 to ease the maintenance burden (https://github.com/ansible-collections/community.general/pull/10213).
1915+
minor_changes:
1916+
- git_config - remove redundant ``required=False`` from ``argument_spec``
1917+
(https://github.com/ansible-collections/community.general/pull/10177).
1918+
- proxmox_snap - correctly handle proxmox_snap timeout parameter (https://github.com/ansible-collections/community.proxmox/issues/73,
1919+
https://github.com/ansible-collections/community.proxmox/issues/95, https://github.com/ansible-collections/community.general/pull/10176).
1920+
release_summary: Regular bugfix release.
1921+
fragments:
1922+
- 10.7.1.yml
1923+
- 10176-fix-proxmox_snap_timeout.yml
1924+
- 10177-git-config-required.yml
1925+
- 10178-update-minimum-version-number-to-avoid-wrong-comparisons-cobbler-xmlrpc.yml
1926+
- 10196-fix-gitlab-access-tokens.yml
1927+
- 10212-yaml.yml
1928+
- 10213-yaml-deprecation.yml
1929+
- 10222-zypper_repository-readfp.yml
1930+
- 10224-zypper_repository-metalink.yml
1931+
- 10242-yaml.yml
1932+
- 9692-update-more-than-10-keycloak-sub-groups.yml
1933+
release_date: '2025-06-16'

changelogs/fragments/10.7.1.yml

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

changelogs/fragments/10176-fix-proxmox_snap_timeout.yml

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

changelogs/fragments/10177-git-config-required.yml

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

changelogs/fragments/10178-update-minimum-version-number-to-avoid-wrong-comparisons-cobbler-xmlrpc.yml

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

changelogs/fragments/10196-fix-gitlab-access-tokens.yml

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

changelogs/fragments/10212-yaml.yml

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

changelogs/fragments/10213-yaml-deprecation.yml

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

0 commit comments

Comments
 (0)