mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-18 12:52:37 +00:00
Release 1.3.0.
This commit is contained in:
parent
0b82f921b8
commit
8f4f69975b
@ -5,6 +5,37 @@ Docker Community Collection Release Notes
|
|||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v1.3.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Regular feature and bugfix release.
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- docker_container - add ``storage_opts`` option to specify storage options (https://github.com/ansible-collections/community.docker/issues/91, https://github.com/ansible-collections/community.docker/pull/93).
|
||||||
|
- docker_image - allows to specify platform to pull for ``source=pull`` with new option ``pull_platform`` (https://github.com/ansible-collections/community.docker/issues/79, https://github.com/ansible-collections/community.docker/pull/89).
|
||||||
|
- docker_image - properly support image IDs (hashes) for loading and tagging images (https://github.com/ansible-collections/community.docker/issues/86, https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_swarm_service - adding support for maximum number of tasks per node (``replicas_max_per_node``) when running swarm service in replicated mode. Introduced in API 1.40 (https://github.com/ansible-collections/community.docker/issues/7, https://github.com/ansible-collections/community.docker/pull/92).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- docker_container - fix healthcheck disabling idempotency issue with strict comparison (https://github.com/ansible-collections/community.docker/issues/85).
|
||||||
|
- docker_image - prevent module failure when removing image that is removed between inspection and removal (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_image - prevent module failure when removing non-existant image by ID (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_image_info - prevent module failure when image vanishes between listing and inspection (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_image_info - prevent module failure when querying non-existant image by ID (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
|
||||||
|
New Modules
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- docker_image_load - Load docker image(s) from archives
|
||||||
|
- docker_plugin - Manage Docker plugins
|
||||||
|
|
||||||
v1.2.2
|
v1.2.2
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|||||||
@ -191,3 +191,45 @@ releases:
|
|||||||
- 1.2.2.yml
|
- 1.2.2.yml
|
||||||
- CVE-2021-20191_no_log.yml
|
- CVE-2021-20191_no_log.yml
|
||||||
release_date: '2021-02-05'
|
release_date: '2021-02-05'
|
||||||
|
1.3.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- docker_container - fix healthcheck disabling idempotency issue with strict
|
||||||
|
comparison (https://github.com/ansible-collections/community.docker/issues/85).
|
||||||
|
- docker_image - prevent module failure when removing image that is removed
|
||||||
|
between inspection and removal (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_image - prevent module failure when removing non-existant image by
|
||||||
|
ID (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_image_info - prevent module failure when image vanishes between listing
|
||||||
|
and inspection (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_image_info - prevent module failure when querying non-existant image
|
||||||
|
by ID (https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
minor_changes:
|
||||||
|
- docker_container - add ``storage_opts`` option to specify storage options
|
||||||
|
(https://github.com/ansible-collections/community.docker/issues/91, https://github.com/ansible-collections/community.docker/pull/93).
|
||||||
|
- docker_image - allows to specify platform to pull for ``source=pull`` with
|
||||||
|
new option ``pull_platform`` (https://github.com/ansible-collections/community.docker/issues/79,
|
||||||
|
https://github.com/ansible-collections/community.docker/pull/89).
|
||||||
|
- docker_image - properly support image IDs (hashes) for loading and tagging
|
||||||
|
images (https://github.com/ansible-collections/community.docker/issues/86,
|
||||||
|
https://github.com/ansible-collections/community.docker/pull/87).
|
||||||
|
- docker_swarm_service - adding support for maximum number of tasks per node
|
||||||
|
(``replicas_max_per_node``) when running swarm service in replicated mode.
|
||||||
|
Introduced in API 1.40 (https://github.com/ansible-collections/community.docker/issues/7,
|
||||||
|
https://github.com/ansible-collections/community.docker/pull/92).
|
||||||
|
release_summary: Regular feature and bugfix release.
|
||||||
|
fragments:
|
||||||
|
- 1.3.0.yml
|
||||||
|
- 87-docker_image-load-image-ids.yml
|
||||||
|
- 88-docker_container-healthcheck.yml
|
||||||
|
- 89-docker_image-pull-platform.yml
|
||||||
|
- 92-replicas-max-per-node.yml
|
||||||
|
- 93-docker_container-storage_opts.yml
|
||||||
|
modules:
|
||||||
|
- description: Load docker image(s) from archives
|
||||||
|
name: docker_image_load
|
||||||
|
namespace: ''
|
||||||
|
- description: Manage Docker plugins
|
||||||
|
name: docker_plugin
|
||||||
|
namespace: ''
|
||||||
|
release_date: '2021-03-08'
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
release_summary: Regular feature and bugfix release.
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
minor_changes:
|
|
||||||
- "docker_image - properly support image IDs (hashes) for loading and tagging images (https://github.com/ansible-collections/community.docker/issues/86, https://github.com/ansible-collections/community.docker/pull/87)."
|
|
||||||
bugfixes:
|
|
||||||
- "docker_image - prevent module failure when removing image that is removed between inspection and removal (https://github.com/ansible-collections/community.docker/pull/87)."
|
|
||||||
- "docker_image - prevent module failure when removing non-existant image by ID (https://github.com/ansible-collections/community.docker/pull/87)."
|
|
||||||
- "docker_image_info - prevent module failure when image vanishes between listing and inspection (https://github.com/ansible-collections/community.docker/pull/87)."
|
|
||||||
- "docker_image_info - prevent module failure when querying non-existant image by ID (https://github.com/ansible-collections/community.docker/pull/87)."
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
bugfixes:
|
|
||||||
- "docker_container - fix healthcheck disabling idempotency issue with strict comparison (https://github.com/ansible-collections/community.docker/issues/85)."
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
minor_changes:
|
|
||||||
- "docker_image - allows to specify platform to pull for ``source=pull`` with new option ``pull_platform`` (https://github.com/ansible-collections/community.docker/issues/79, https://github.com/ansible-collections/community.docker/pull/89)."
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
minor_changes:
|
|
||||||
- "docker_swarm_service - adding support for maximum number of tasks per node (``replicas_max_per_node``) when running swarm service in replicated mode. Introduced in API 1.40 (https://github.com/ansible-collections/community.docker/issues/7, https://github.com/ansible-collections/community.docker/pull/92)."
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
minor_changes:
|
|
||||||
- "docker_container - add ``storage_opts`` option to specify storage options (https://github.com/ansible-collections/community.docker/issues/91, https://github.com/ansible-collections/community.docker/pull/93)."
|
|
||||||
Loading…
Reference in New Issue
Block a user