Release 3.13.4.

This commit is contained in:
Felix Fontein 2024-12-16 20:41:54 +01:00
parent 3409ad216c
commit b7edd43b5b
7 changed files with 357 additions and 304 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,25 @@ Docker Community Collection Release Notes
.. contents:: Topics
v3.13.4
=======
Release Summary
---------------
Bugfix release.
Bugfixes
--------
- docker_compose_v2 - when using Compose 2.31.0 or newer, revert to the old behavior that image rebuilds, for example if ``rebuild=always``, only result in ``changed`` if a container has been restarted (https://github.com/ansible-collections/community.docker/issues/1005, https://github.com/ansible-collections/community.docker/issues/pull/1011, https://github.com/ansible-collections/community.docker/pull/1012).
- docker_swarm_info - do not crash when finding Swarm jobs if ``services=true`` (https://github.com/ansible-collections/community.docker/issues/1003).
Known Issues
------------
- docker_image_build - when ``outputs`` is specified, all entries with ``type=image``, ``type=oci`` and ``type=docker`` have their name overwritten by the values provided in ``name`` and ``tag``. This happens because the module provides the ``--tag`` option with the values of the ``name`` and ``tag`` options to Docker the buildx plugin, which for some reason takes that value and uses it to overwrite the values in ``--output`` parameters (https://github.com/ansible-collections/community.docker/issues/1001, https://github.com/ansible-collections/community.docker/pull/1007).
v3.13.3
=======

View File

@ -1965,3 +1965,28 @@ releases:
- 992-module-docker_compose_v2_run-fix-env-argument.yml
- 995-docker_host_info-return.yml
release_date: '2024-11-23'
3.13.4:
changes:
bugfixes:
- docker_compose_v2 - when using Compose 2.31.0 or newer, revert to the old
behavior that image rebuilds, for example if ``rebuild=always``, only result
in ``changed`` if a container has been restarted (https://github.com/ansible-collections/community.docker/issues/1005,
https://github.com/ansible-collections/community.docker/issues/pull/1011,
https://github.com/ansible-collections/community.docker/pull/1012).
- docker_swarm_info - do not crash when finding Swarm jobs if ``services=true``
(https://github.com/ansible-collections/community.docker/issues/1003).
known_issues:
- docker_image_build - when ``outputs`` is specified, all entries with ``type=image``,
``type=oci`` and ``type=docker`` have their name overwritten by the values
provided in ``name`` and ``tag``. This happens because the module provides
the ``--tag`` option with the values of the ``name`` and ``tag`` options
to Docker the buildx plugin, which for some reason takes that value and
uses it to overwrite the values in ``--output`` parameters (https://github.com/ansible-collections/community.docker/issues/1001,
https://github.com/ansible-collections/community.docker/pull/1007).
release_summary: Bugfix release.
fragments:
- 1003-docker_swarm_info-crash.yml
- 1007-build-output.yml
- 1011-docker_compose_v2-build-changed.yml
- 3.13.4.yml
release_date: '2024-12-16'

View File

@ -1,2 +0,0 @@
bugfixes:
- "docker_swarm_info - do not crash when finding Swarm jobs if ``services=true`` (https://github.com/ansible-collections/community.docker/issues/1003)."

View File

@ -1,6 +0,0 @@
known_issues:
- "docker_image_build - when ``outputs`` is specified, all entries with ``type=image``, ``type=oci`` and ``type=docker`` have their
name overwritten by the values provided in ``name`` and ``tag``. This happens because the module provides the ``--tag`` option
with the values of the ``name`` and ``tag`` options to Docker the buildx plugin, which for some reason takes that value and
uses it to overwrite the values in ``--output`` parameters
(https://github.com/ansible-collections/community.docker/issues/1001, https://github.com/ansible-collections/community.docker/pull/1007)."

View File

@ -1,5 +0,0 @@
bugfixes:
- "docker_compose_v2 - when using Compose 2.31.0 or newer, revert to the old behavior that image rebuilds, for example if ``rebuild=always``, only
result in ``changed`` if a container has been restarted
(https://github.com/ansible-collections/community.docker/issues/1005, https://github.com/ansible-collections/community.docker/issues/pull/1011,
https://github.com/ansible-collections/community.docker/pull/1012)."

View File

@ -1 +0,0 @@
release_summary: Bugfix release.