Skip to content

Commit 4082da2

Browse files
committed
Add the Ansible community 11.13.0 porting guide
1 parent 04d00a1 commit 4082da2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/docsite/rst/porting_guides/porting_guide_11.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,26 @@ Networking
9797

9898
No notable changes
9999

100+
Porting Guide for v11.13.0
101+
==========================
102+
103+
Known Issues
104+
------------
105+
106+
community.docker
107+
^^^^^^^^^^^^^^^^
108+
109+
- docker_container - when specifying IPv6 addresses for networks, Docker since version 29 no longer returns the orignal address used when adding a container to a network, but normalizes them. The module will try to normalize IP addresses for comparison, but it uses the ``ipaddress`` module from the Python 3 standard library for that. When using the module with Python 2, please install the `ipaddress backport for Python 2.x <https://pypi.org/project/ipaddress/>`__ (https://github.com/ansible-collections/community.docker/pull/1198).
110+
- docker_image, docker_image_export - idempotency for archiving images depends on whether the image IDs used by the image storage backend correspond to the IDs used in the tarball's ``manifest.json`` files. The new default backend in Docker 29 apparently uses image IDs that no longer correspond, whence idempotency no longer works (https://github.com/ansible-collections/community.docker/pull/1199).
111+
- docker_network - when specifying IPv6 addresses or networks, Docker since version 29 no longer returns the orignal address/network used when creating a network, but normalizes them. The module will try to normalize IP addresses for comparison, but it uses the ``ipaddress`` module from the Python 3 standard library for that. When using the module with Python 2, please install the `ipaddress backport for Python 2.x <https://pypi.org/project/ipaddress/>`__ (https://github.com/ansible-collections/community.docker/pull/1203).
112+
113+
Deprecated Features
114+
-------------------
115+
116+
- The ``junipernetworks.junos`` collection has been deprecated.
117+
It will be removed from Ansible 14 if no one starts maintaining it again before Ansible 14.
118+
See `Collections Removal Process for unmaintained collections <https://docs.ansible.com/projects/ansible/devel/community/collection_contributors/collection_package_removal.html#unmaintained-collections>`__ for more details (`https://forum.ansible.com/t/44869 <https://forum.ansible.com/t/44869>`__).
119+
100120
Porting Guide for v11.12.0
101121
==========================
102122

0 commit comments

Comments
 (0)