mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 11:58:43 +00:00
Release 4.0.0
This commit is contained in:
parent
a740cfa0c4
commit
90cf544dba
458
CHANGELOG.md
458
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
@ -4,6 +4,33 @@ Docker Community Collection Release Notes
|
|||||||
|
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
v4.0.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Major release with removed deprecated features.
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- docker_compose_v2 - add ``renew_anon_volumes`` parameter for ``docker compose up`` (https://github.com/ansible-collections/community.docker/pull/977).
|
||||||
|
|
||||||
|
Breaking Changes / Porting Guide
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
- docker_container - the default of ``image_name_mismatch`` changed from ``ignore`` to ``recreate`` (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
|
||||||
|
Removed Features (previously deprecated)
|
||||||
|
----------------------------------------
|
||||||
|
|
||||||
|
- The collection no longer supports ansible-core 2.11, 2.12, 2.13, and 2.14. You need ansible-core 2.15.0 or newer to use community.docker 4.x.y (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
- The docker_compose module has been removed. Please migrate to community.docker.docker_compose_v2 (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
- docker_container - the ``ignore_image`` option has been removed. Use ``image: ignore`` in ``comparisons`` instead (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
- docker_container - the ``purge_networks`` option has been removed. Use ``networks: strict`` in ``comparisons`` instead and make sure that ``networks`` is specified (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
- various modules and plugins - remove the ``ssl_version`` option (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
|
||||||
v3.13.1
|
v3.13.1
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|||||||
@ -1927,3 +1927,27 @@ releases:
|
|||||||
- 3.13.1.yml
|
- 3.13.1.yml
|
||||||
- 976-compose-v2.yml
|
- 976-compose-v2.yml
|
||||||
release_date: '2024-10-15'
|
release_date: '2024-10-15'
|
||||||
|
4.0.0:
|
||||||
|
changes:
|
||||||
|
breaking_changes:
|
||||||
|
- docker_container - the default of ``image_name_mismatch`` changed from ``ignore``
|
||||||
|
to ``recreate`` (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
minor_changes:
|
||||||
|
- docker_compose_v2 - add ``renew_anon_volumes`` parameter for ``docker compose
|
||||||
|
up`` (https://github.com/ansible-collections/community.docker/pull/977).
|
||||||
|
release_summary: Major release with removed deprecated features.
|
||||||
|
removed_features:
|
||||||
|
- The collection no longer supports ansible-core 2.11, 2.12, 2.13, and 2.14.
|
||||||
|
You need ansible-core 2.15.0 or newer to use community.docker 4.x.y (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
- The docker_compose module has been removed. Please migrate to community.docker.docker_compose_v2
|
||||||
|
(https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
- 'docker_container - the ``ignore_image`` option has been removed. Use ``image:
|
||||||
|
ignore`` in ``comparisons`` instead (https://github.com/ansible-collections/community.docker/pull/971).'
|
||||||
|
- 'docker_container - the ``purge_networks`` option has been removed. Use
|
||||||
|
``networks: strict`` in ``comparisons`` instead and make sure that ``networks``
|
||||||
|
is specified (https://github.com/ansible-collections/community.docker/pull/971).'
|
||||||
|
- various modules and plugins - remove the ``ssl_version`` option (https://github.com/ansible-collections/community.docker/pull/971).
|
||||||
|
fragments:
|
||||||
|
- 4.0.0.yml
|
||||||
|
- 977-renew_anon_volumes.yaml
|
||||||
|
release_date: '2024-10-20'
|
||||||
|
|||||||
@ -1,9 +0,0 @@
|
|||||||
release_summary: Major release with removed deprecated features.
|
|
||||||
removed_features:
|
|
||||||
- "The collection no longer supports ansible-core 2.11, 2.12, 2.13, and 2.14. You need ansible-core 2.15.0 or newer to use community.docker 4.x.y (https://github.com/ansible-collections/community.docker/pull/971)."
|
|
||||||
- "The docker_compose module has been removed. Please migrate to community.docker.docker_compose_v2 (https://github.com/ansible-collections/community.docker/pull/971)."
|
|
||||||
- "various modules and plugins - remove the ``ssl_version`` option (https://github.com/ansible-collections/community.docker/pull/971)."
|
|
||||||
- "docker_container - the ``ignore_image`` option has been removed. Use ``image: ignore`` in ``comparisons`` instead (https://github.com/ansible-collections/community.docker/pull/971)."
|
|
||||||
- "docker_container - the ``purge_networks`` option has been removed. Use ``networks: strict`` in ``comparisons`` instead and make sure that ``networks`` is specified (https://github.com/ansible-collections/community.docker/pull/971)."
|
|
||||||
breaking_changes:
|
|
||||||
- "docker_container - the default of ``image_name_mismatch`` changed from ``ignore`` to ``recreate`` (https://github.com/ansible-collections/community.docker/pull/971)."
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
minor_changes:
|
|
||||||
- docker_compose_v2 - add ``renew_anon_volumes`` parameter for ``docker compose up`` (https://github.com/ansible-collections/community.docker/pull/977).
|
|
||||||
Loading…
Reference in New Issue
Block a user