Skip to content

Commit

Permalink
Release 3.11.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Jul 9, 2024
1 parent 4b7e74b commit 65d8dc8
Show file tree
Hide file tree
Showing 9 changed files with 226 additions and 174 deletions.
340 changes: 180 additions & 160 deletions CHANGELOG.md

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ Docker Community Collection Release Notes

.. contents:: Topics

v3.11.0
=======

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).

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).

v3.10.4
=======

Expand Down
29 changes: 29 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 0 additions & 2 deletions changelogs/fragments/895-docker-cli.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/902-loose-version.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/916-compose-v2-parse.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/921-docker_container-healthy.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/922-docker_container-wait-fix.yml

This file was deleted.

0 comments on commit 65d8dc8

Please sign in to comment.