Skip to content

Commit eb4c012

Browse files
committed
Release 10.0.1.
1 parent 10561e6 commit eb4c012

7 files changed

+53
-11
lines changed

CHANGELOG.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,42 @@
22

33
**Topics**
44

5-
- <a href="#v10-0-0">v10\.0\.0</a>
5+
- <a href="#v10-0-1">v10\.0\.1</a>
66
- <a href="#release-summary">Release Summary</a>
7+
- <a href="#bugfixes">Bugfixes</a>
8+
- <a href="#v10-0-0">v10\.0\.0</a>
9+
- <a href="#release-summary-1">Release Summary</a>
710
- <a href="#minor-changes">Minor Changes</a>
811
- <a href="#breaking-changes--porting-guide">Breaking Changes / Porting Guide</a>
912
- <a href="#deprecated-features">Deprecated Features</a>
1013
- <a href="#removed-features-previously-deprecated">Removed Features \(previously deprecated\)</a>
11-
- <a href="#bugfixes">Bugfixes</a>
14+
- <a href="#bugfixes-1">Bugfixes</a>
1215
- <a href="#known-issues">Known Issues</a>
1316
- <a href="#new-plugins">New Plugins</a>
1417
- <a href="#filter">Filter</a>
1518
- <a href="#test">Test</a>
1619
- <a href="#new-modules">New Modules</a>
1720
This changelog describes changes after version 9\.0\.0\.
1821

22+
<a id="v10-0-1"></a>
23+
## v10\.0\.1
24+
25+
<a id="release-summary"></a>
26+
### Release Summary
27+
28+
Bugfix release for inclusion in Ansible 11\.0\.0rc1\.
29+
30+
<a id="bugfixes"></a>
31+
### Bugfixes
32+
33+
* 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](https\://github\.com/ansible\-collections/community\.general/pull/9077)\)\.
34+
* keycloak\_clientscope \- fix diff and <code>end\_state</code> 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](https\://github\.com/ansible\-collections/community\.general/pull/9082)\)\.
35+
* redfish\_utils module utils \- remove undocumented default applytime \([https\://github\.com/ansible\-collections/community\.general/pull/9114](https\://github\.com/ansible\-collections/community\.general/pull/9114)\)\.
36+
1937
<a id="v10-0-0"></a>
2038
## v10\.0\.0
2139

22-
<a id="release-summary"></a>
40+
<a id="release-summary-1"></a>
2341
### Release Summary
2442

2543
This is release 10\.0\.0 of <code>community\.general</code>\, released on 2024\-11\-04\.
@@ -254,7 +272,7 @@ This is release 10\.0\.0 of <code>community\.general</code>\, released on 2024\-
254272
* proxmox\_kvm \- removed the <code>proxmox\_default\_behavior</code> option\. Explicitly specify the old default values if you were using <code>proxmox\_default\_behavior\=compatibility</code>\, otherwise simply remove it \([https\://github\.com/ansible\-collections/community\.general/pull/8918](https\://github\.com/ansible\-collections/community\.general/pull/8918)\)\.
255273
* redhat\_subscriptions \- removed the <code>pool</code> option\. Use <code>pool\_ids</code> instead \([https\://github\.com/ansible\-collections/community\.general/pull/8918](https\://github\.com/ansible\-collections/community\.general/pull/8918)\)\.
256274

257-
<a id="bugfixes"></a>
275+
<a id="bugfixes-1"></a>
258276
### Bugfixes
259277

260278
* bitwarden lookup plugin \- fix <code>KeyError</code> in <code>search\_field</code> \([https\://github\.com/ansible\-collections/community\.general/issues/8549](https\://github\.com/ansible\-collections/community\.general/issues/8549)\, [https\://github\.com/ansible\-collections/community\.general/pull/8557](https\://github\.com/ansible\-collections/community\.general/pull/8557)\)\.

CHANGELOG.rst

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

77
This changelog describes changes after version 9.0.0.
88

9+
v10.0.1
10+
=======
11+
12+
Release Summary
13+
---------------
14+
15+
Bugfix release for inclusion in Ansible 11.0.0rc1.
16+
17+
Bugfixes
18+
--------
19+
20+
- 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).
21+
- 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).
22+
- redfish_utils module utils - remove undocumented default applytime (https://github.com/ansible-collections/community.general/pull/9114).
23+
924
v10.0.0
1025
=======
1126

changelogs/changelog.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,3 +742,19 @@ releases:
742742
name: ansible_type
743743
namespace: null
744744
release_date: '2024-11-04'
745+
10.0.1:
746+
changes:
747+
bugfixes:
748+
- keycloak_client - fix diff by removing code that turns the attributes dict
749+
which contains additional settings into a list (https://github.com/ansible-collections/community.general/pull/9077).
750+
- keycloak_clientscope - fix diff and ``end_state`` by removing the code that
751+
turns the attributes dict, which contains additional config items, into
752+
a list (https://github.com/ansible-collections/community.general/pull/9082).
753+
- redfish_utils module utils - remove undocumented default applytime (https://github.com/ansible-collections/community.general/pull/9114).
754+
release_summary: Bugfix release for inclusion in Ansible 11.0.0rc1.
755+
fragments:
756+
- 10.0.1.yml
757+
- 9077-keycloak_client-fix-attributes-dict-turned-into-list.yml
758+
- 9082-keycloak_clientscope-fix-attributes-dict-turned-into-list.yml
759+
- 9114-redfish-utils-update-remove-default-applytime.yml
760+
release_date: '2024-11-11'

changelogs/fragments/10.0.1.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/9114-redfish-utils-update-remove-default-applytime.yml

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

0 commit comments

Comments
 (0)