Skip to content

Commit 34a4286

Browse files
Add porting guide for Ansible 10.4.0 (#1853) (#1855)
(cherry picked from commit 875f620) Co-authored-by: Mario Lenz <[email protected]>
1 parent e85be63 commit 34a4286

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

docs/docsite/rst/porting_guides/porting_guide_10.rst

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ Playbook
4343
assert:
4444
that: '"hi mom" is in untrusted_result.stdout'
4545
46+
* ``any_errors_fatal`` - when a task in a block with a ``rescue`` section
47+
fails on a host, the ``rescue`` section is executed on all hosts. This
48+
occurs because ``any_errors_fatal`` automatically fails all hosts.
49+
4650

4751
Command Line
4852
============
@@ -99,6 +103,68 @@ Networking
99103

100104
No notable changes
101105

106+
Porting Guide for v10.4.0
107+
=========================
108+
109+
Known Issues
110+
------------
111+
112+
dellemc.openmanage
113+
~~~~~~~~~~~~~~~~~~
114+
115+
- idrac_diagnostics - Issue(285322) - This module doesn't support export of diagnostics file to HTTP and HTTPS share via SOCKS proxy.
116+
- idrac_firmware - Issue(279282) - This module does not support firmware update using HTTP, HTTPS, and FTP shares with authentication on iDRAC8.
117+
- idrac_storage_volume - Issue(290766) - The module will report success instead of showing failure for new virtual creation on the BOSS-N1 controller if a virtual disk is already present on the same controller.
118+
- idrac_support_assist - Issue(308550) - This module fails when the NFS share path contains sub directory.
119+
- ome_diagnostics - Issue(279193) - Export of SupportAssist collection logs to the share location fails on OME version 4.0.0.
120+
- ome_smart_fabric_uplink - Issue(186024) - The module supported by OpenManage Enterprise Modular, however it does not allow the creation of multiple uplinks of the same name. If an uplink is created using the same name as an existing uplink, then the existing uplink is modified.
121+
122+
Breaking Changes
123+
----------------
124+
125+
community.mysql
126+
~~~~~~~~~~~~~~~
127+
128+
- collection - support of mysqlclient connector is deprecated - use PyMySQL connector instead! We will stop testing against it in collection version 4.0.0 and remove the related code in 5.0.0 (https://github.com/ansible-collections/community.mysql/issues/654).
129+
- mysql_info - The ``users_info`` filter returned variable ``plugin_auth_string`` contains the hashed password and it's misleading, it will be removed from community.mysql 4.0.0. Use the `plugin_hash_string` return value instead (https://github.com/ansible-collections/community.mysql/pull/629).
130+
- mysql_user - the ``user`` alias of the ``name`` argument has been deprecated and will be removed in collection version 5.0.0. Use the ``name`` argument instead.
131+
132+
Major Changes
133+
-------------
134+
135+
dellemc.openmanage
136+
~~~~~~~~~~~~~~~~~~
137+
138+
- idrac_secure_boot - This module allows to import the secure boot certificate.
139+
- idrac_support_assist - This module allows to run and export SupportAssist collection logs on iDRAC.
140+
141+
grafana.grafana
142+
~~~~~~~~~~~~~~~
143+
144+
- fix:mimir molecule should use ansible core 2.16 by @GVengelen in https://github.com/grafana/grafana-ansible-collection/pull/254
145+
146+
Deprecated Features
147+
-------------------
148+
149+
amazon.aws
150+
~~~~~~~~~~
151+
152+
- iam_role - support for creating and deleting IAM instance profiles using the ``create_instance_profile`` and ``delete_instance_profile`` options has been deprecated and will be removed in a release after 2026-05-01. To manage IAM instance profiles the ``amazon.aws.iam_instance_profile`` module can be used instead (https://github.com/ansible-collections/amazon.aws/pull/2221).
153+
154+
community.general
155+
~~~~~~~~~~~~~~~~~
156+
157+
- MH decorator cause_changes module utils - deprecate parameters ``on_success`` and ``on_failure`` (https://github.com/ansible-collections/community.general/pull/8791).
158+
- pipx - support for versions of the command line tool ``pipx`` older than ``1.7.0`` is deprecated and will be removed in community.general 11.0.0 (https://github.com/ansible-collections/community.general/pull/8793).
159+
- pipx_info - support for versions of the command line tool ``pipx`` older than ``1.7.0`` is deprecated and will be removed in community.general 11.0.0 (https://github.com/ansible-collections/community.general/pull/8793).
160+
161+
community.vmware
162+
~~~~~~~~~~~~~~~~
163+
164+
- vmware_cluster - the module has been deprecated and will be removed in community.vmware 6.0.0 (https://github.com/ansible-collections/community.vmware/pull/2143).
165+
- vmware_cluster_drs - the module has been deprecated and will be removed in community.vmware 6.0.0 (https://github.com/ansible-collections/community.vmware/pull/2136).
166+
- vmware_cluster_vcls - the module has been deprecated and will be removed in community.vmware 6.0.0 (https://github.com/ansible-collections/community.vmware/pull/2156).
167+
102168
Porting Guide for v10.3.0
103169
=========================
104170

0 commit comments

Comments
 (0)