mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 11:58:43 +00:00
Release 3.8.0.
This commit is contained in:
parent
a7c7adce2f
commit
eafa7d03a8
566
CHANGELOG.md
566
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
@ -4,6 +4,28 @@ Docker Community Collection Release Notes
|
||||
|
||||
.. contents:: Topics
|
||||
|
||||
v3.8.0
|
||||
======
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
Bugfix and feature release.
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- docker_compose_v2 - allow to wait until containers are running/health when running ``docker compose up`` with the new ``wait`` option (https://github.com/ansible-collections/community.docker/issues/794, https://github.com/ansible-collections/community.docker/pull/796).
|
||||
- docker_container - the ``pull_check_mode_behavior`` option now allows to control the module's behavior in check mode when ``pull=always`` (https://github.com/ansible-collections/community.docker/issues/792, https://github.com/ansible-collections/community.docker/pull/797).
|
||||
- docker_container - the ``pull`` option now accepts the three values ``never``, ``missing_image`` (default), and ``never``, next to the previously valid values ``true`` (equivalent to ``always``) and ``false`` (equivalent to ``missing_image``). This allows the equivalent to ``--pull=never`` from the Docker command line (https://github.com/ansible-collections/community.docker/issues/783, https://github.com/ansible-collections/community.docker/pull/797).
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- docker_compose_v2 - do not consider a ``Waiting`` event as an action/change (https://github.com/ansible-collections/community.docker/pull/804).
|
||||
- docker_compose_v2 - do not treat service-level pull events as changes to avoid incorrect ``changed=true`` return value of ``pull=always`` (https://github.com/ansible-collections/community.docker/issues/802, https://github.com/ansible-collections/community.docker/pull/803).
|
||||
- docker_compose_v2, docker_compose_v2_pull - fix parsing of pull messages for Docker Compose 2.20.0 (https://github.com/ansible-collections/community.docker/issues/785, https://github.com/ansible-collections/community.docker/pull/786).
|
||||
|
||||
v3.7.0
|
||||
======
|
||||
|
||||
|
||||
@ -1559,3 +1559,35 @@ releases:
|
||||
name: docker_image_export
|
||||
namespace: ''
|
||||
release_date: '2024-01-27'
|
||||
3.8.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- docker_compose_v2 - do not consider a ``Waiting`` event as an action/change
|
||||
(https://github.com/ansible-collections/community.docker/pull/804).
|
||||
- docker_compose_v2 - do not treat service-level pull events as changes to avoid
|
||||
incorrect ``changed=true`` return value of ``pull=always`` (https://github.com/ansible-collections/community.docker/issues/802,
|
||||
https://github.com/ansible-collections/community.docker/pull/803).
|
||||
- docker_compose_v2, docker_compose_v2_pull - fix parsing of pull messages for
|
||||
Docker Compose 2.20.0 (https://github.com/ansible-collections/community.docker/issues/785,
|
||||
https://github.com/ansible-collections/community.docker/pull/786).
|
||||
minor_changes:
|
||||
- docker_compose_v2 - allow to wait until containers are running/health when
|
||||
running ``docker compose up`` with the new ``wait`` option (https://github.com/ansible-collections/community.docker/issues/794,
|
||||
https://github.com/ansible-collections/community.docker/pull/796).
|
||||
- docker_container - the ``pull_check_mode_behavior`` option now allows to control
|
||||
the module's behavior in check mode when ``pull=always`` (https://github.com/ansible-collections/community.docker/issues/792,
|
||||
https://github.com/ansible-collections/community.docker/pull/797).
|
||||
- docker_container - the ``pull`` option now accepts the three values ``never``,
|
||||
``missing_image`` (default), and ``never``, next to the previously valid values
|
||||
``true`` (equivalent to ``always``) and ``false`` (equivalent to ``missing_image``).
|
||||
This allows the equivalent to ``--pull=never`` from the Docker command line
|
||||
(https://github.com/ansible-collections/community.docker/issues/783, https://github.com/ansible-collections/community.docker/pull/797).
|
||||
release_summary: Bugfix and feature release.
|
||||
fragments:
|
||||
- 3.8.0.yml
|
||||
- 786-docker_v2.yml
|
||||
- 796-docker_compose_v2-wait.yml
|
||||
- 797-docker_container-pull.yml
|
||||
- 803-compose-v2-pull.yml
|
||||
- 804-compose-v2-waiting.yml
|
||||
release_date: '2024-02-25'
|
||||
|
||||
@ -1 +0,0 @@
|
||||
release_summary: Bugfix and feature release.
|
||||
@ -1,2 +0,0 @@
|
||||
bugfixes:
|
||||
- "docker_compose_v2, docker_compose_v2_pull - fix parsing of pull messages for Docker Compose 2.20.0 (https://github.com/ansible-collections/community.docker/issues/785, https://github.com/ansible-collections/community.docker/pull/786)."
|
||||
@ -1,2 +0,0 @@
|
||||
minor_changes:
|
||||
- "docker_compose_v2 - allow to wait until containers are running/health when running ``docker compose up`` with the new ``wait`` option (https://github.com/ansible-collections/community.docker/issues/794, https://github.com/ansible-collections/community.docker/pull/796)."
|
||||
@ -1,3 +0,0 @@
|
||||
minor_changes:
|
||||
- "docker_container - the ``pull_check_mode_behavior`` option now allows to control the module's behavior in check mode when ``pull=always`` (https://github.com/ansible-collections/community.docker/issues/792, https://github.com/ansible-collections/community.docker/pull/797)."
|
||||
- "docker_container - the ``pull`` option now accepts the three values ``never``, ``missing_image`` (default), and ``never``, next to the previously valid values ``true`` (equivalent to ``always``) and ``false`` (equivalent to ``missing_image``). This allows the equivalent to ``--pull=never`` from the Docker command line (https://github.com/ansible-collections/community.docker/issues/783, https://github.com/ansible-collections/community.docker/pull/797)."
|
||||
@ -1,3 +0,0 @@
|
||||
bugfixes:
|
||||
- "docker_compose_v2 - do not treat service-level pull events as changes to avoid incorrect ``changed=true`` return value of ``pull=always``
|
||||
(https://github.com/ansible-collections/community.docker/issues/802, https://github.com/ansible-collections/community.docker/pull/803)."
|
||||
@ -1,2 +0,0 @@
|
||||
bugfixes:
|
||||
- "docker_compose_v2 - do not consider a ``Waiting`` event as an action/change (https://github.com/ansible-collections/community.docker/pull/804)."
|
||||
Loading…
Reference in New Issue
Block a user