You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docsite/rst/porting_guides/porting_guide_10.rst
+66Lines changed: 66 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,10 @@ Playbook
43
43
assert:
44
44
that: '"hi mom" is in untrusted_result.stdout'
45
45
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
+
46
50
47
51
Command Line
48
52
============
@@ -99,6 +103,68 @@ Networking
99
103
100
104
No notable changes
101
105
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).
- 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).
0 commit comments