Release 3.11.0.

This commit is contained in:
Felix Fontein
2024-07-09 22:13:38 +02:00
parent 4b7e74b75e
commit 65d8dc8908
9 changed files with 226 additions and 174 deletions
+29
View File
@@ -1112,6 +1112,35 @@ releases:
- 881-docker-compose-v1-api-version.yml
- 886-compose-v2-req.yml
release_date: '2024-06-16'
3.11.0:
changes:
bugfixes:
- docker_compose_v2* modules - fix parsing of skipped pull messages for Docker
Compose 2.28.x (https://github.com/ansible-collections/community.docker/issues/911,
https://github.com/ansible-collections/community.docker/pull/916).
- docker_compose_v2*, docker_stack*, docker_image_build modules - using ``cli_context``
no longer leads to an invalid parameter combination being passed to the corresponding
Docker CLI tool, unless ``docker_host`` is also provided. Combining ``cli_context``
and ``docker_host`` is no longer allowed (https://github.com/ansible-collections/community.docker/issues/892,
https://github.com/ansible-collections/community.docker/pull/895).
- docker_container - fix possible infinite loop if ``removal_wait_timeout``
is set (https://github.com/ansible-collections/community.docker/pull/922).
- vendored Docker SDK for Python - use ``LooseVersion`` instead of ``StrictVersion``
to compare urllib3 versions. This is needed for development versions (https://github.com/ansible-collections/community.docker/pull/902).
minor_changes:
- docker_container - add support for ``device_cgroup_rules`` (https://github.com/ansible-collections/community.docker/pull/910).
- docker_container - the new ``state=healthy`` allows to wait for a container
to become healthy on startup. The ``healthy_wait_timeout`` option allows to
configure the maximum time to wait for this to happen (https://github.com/ansible-collections/community.docker/issues/890,
https://github.com/ansible-collections/community.docker/pull/921).
fragments:
- 895-docker-cli.yml
- 902-loose-version.yml
- 910-docker_container-device_cgroup_rules.yml
- 916-compose-v2-parse.yml
- 921-docker_container-healthy.yml
- 922-docker_container-wait-fix.yml
release_date: '2024-07-09'
3.2.0:
changes:
deprecated_features:
-2
View File
@@ -1,2 +0,0 @@
bugfixes:
- "docker_compose_v2*, docker_stack*, docker_image_build modules - using ``cli_context`` no longer leads to an invalid parameter combination being passed to the corresponding Docker CLI tool, unless ``docker_host`` is also provided. Combining ``cli_context`` and ``docker_host`` is no longer allowed (https://github.com/ansible-collections/community.docker/issues/892, https://github.com/ansible-collections/community.docker/pull/895)."
@@ -1,2 +0,0 @@
bugfixes:
- "vendored Docker SDK for Python - use ``LooseVersion`` instead of ``StrictVersion`` to compare urllib3 versions. This is needed for development versions (https://github.com/ansible-collections/community.docker/pull/902)."
@@ -1,2 +0,0 @@
minor_changes:
- "docker_container - add support for ``device_cgroup_rules`` (https://github.com/ansible-collections/community.docker/pull/910)."
@@ -1,2 +0,0 @@
bugfixes:
- "docker_compose_v2* modules - fix parsing of skipped pull messages for Docker Compose 2.28.x (https://github.com/ansible-collections/community.docker/issues/911, https://github.com/ansible-collections/community.docker/pull/916)."
@@ -1,4 +0,0 @@
minor_changes:
- "docker_container - the new ``state=healthy`` allows to wait for a container to become healthy on startup.
The ``healthy_wait_timeout`` option allows to configure the maximum time to wait for this to happen
(https://github.com/ansible-collections/community.docker/issues/890, https://github.com/ansible-collections/community.docker/pull/921)."
@@ -1,2 +0,0 @@
bugfixes:
- "docker_container - fix possible infinite loop if ``removal_wait_timeout`` is set (https://github.com/ansible-collections/community.docker/pull/922)."