Skip to content

Commit a284137

Browse files
committed
Release 3.4.6.
1 parent cdccf95 commit a284137

File tree

6 files changed

+50
-14
lines changed

6 files changed

+50
-14
lines changed

CHANGELOG.rst

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ Docker Community Collection Release Notes
55
.. contents:: Topics
66

77

8+
v3.4.6
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
Bugfix release with documentation warnings about using certain functionality when connecting to the Docker daemon with TCP TLS.
15+
16+
Bugfixes
17+
--------
18+
19+
- socket_handler module utils - make sure this fully works when Docker SDK for Python is not available (https://github.com/ansible-collections/community.docker/pull/620).
20+
- vendored Docker SDK for Python code - fix for errors on pipe close in Windows (https://github.com/ansible-collections/community.docker/pull/619).
21+
- vendored Docker SDK for Python code - respect timeouts on Windows named pipes (https://github.com/ansible-collections/community.docker/pull/619).
22+
- vendored Docker SDK for Python code - use ``poll()`` instead of ``select()`` except on Windows (https://github.com/ansible-collections/community.docker/pull/619).
23+
24+
Known Issues
25+
------------
26+
27+
- docker_api connection plugin - does **not work with TCP TLS sockets**! This is caused by the inability to send an ``close_notify`` TLS alert without closing the connection with Python's ``SSLSocket`` (https://github.com/ansible-collections/community.docker/issues/605, https://github.com/ansible-collections/community.docker/pull/621).
28+
- docker_container_exec - does **not work with TCP TLS sockets** when the ``stdin`` option is used! This is caused by the inability to send an ``close_notify`` TLS alert without closing the connection with Python's ``SSLSocket`` (https://github.com/ansible-collections/community.docker/issues/605, https://github.com/ansible-collections/community.docker/pull/621).
29+
830
v3.4.5
931
======
1032

changelogs/changelog.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -1175,3 +1175,31 @@ releases:
11751175
- 3.4.5.yml
11761176
- 613-requests.yml
11771177
release_date: '2023-05-05'
1178+
3.4.6:
1179+
changes:
1180+
bugfixes:
1181+
- socket_handler module utils - make sure this fully works when Docker SDK for
1182+
Python is not available (https://github.com/ansible-collections/community.docker/pull/620).
1183+
- vendored Docker SDK for Python code - fix for errors on pipe close in Windows
1184+
(https://github.com/ansible-collections/community.docker/pull/619).
1185+
- vendored Docker SDK for Python code - respect timeouts on Windows named pipes
1186+
(https://github.com/ansible-collections/community.docker/pull/619).
1187+
- vendored Docker SDK for Python code - use ``poll()`` instead of ``select()``
1188+
except on Windows (https://github.com/ansible-collections/community.docker/pull/619).
1189+
known_issues:
1190+
- docker_api connection plugin - does **not work with TCP TLS sockets**! This
1191+
is caused by the inability to send an ``close_notify`` TLS alert without closing
1192+
the connection with Python's ``SSLSocket`` (https://github.com/ansible-collections/community.docker/issues/605,
1193+
https://github.com/ansible-collections/community.docker/pull/621).
1194+
- docker_container_exec - does **not work with TCP TLS sockets** when the ``stdin``
1195+
option is used! This is caused by the inability to send an ``close_notify``
1196+
TLS alert without closing the connection with Python's ``SSLSocket`` (https://github.com/ansible-collections/community.docker/issues/605,
1197+
https://github.com/ansible-collections/community.docker/pull/621).
1198+
release_summary: Bugfix release with documentation warnings about using certain
1199+
functionality when connecting to the Docker daemon with TCP TLS.
1200+
fragments:
1201+
- 3.4.6.yml
1202+
- 620-bugfixes.yml
1203+
- docker-py.yml
1204+
- tls-tcp-warn.yml
1205+
release_date: '2023-05-20'

changelogs/fragments/3.4.6.yml

-1
This file was deleted.

changelogs/fragments/620-bugfixes.yml

-2
This file was deleted.

changelogs/fragments/docker-py.yml

-4
This file was deleted.

changelogs/fragments/tls-tcp-warn.yml

-7
This file was deleted.

0 commit comments

Comments
 (0)