From 8f4f69975baef06fcb96ab7671f43b712f9df245 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 8 Mar 2021 02:38:38 +0100 Subject: [PATCH] Release 1.3.0. --- CHANGELOG.rst | 31 ++++++++++++++ changelogs/changelog.yaml | 42 +++++++++++++++++++ changelogs/fragments/1.3.0.yml | 1 - .../87-docker_image-load-image-ids.yml | 7 ---- .../88-docker_container-healthcheck.yml | 2 - .../89-docker_image-pull-platform.yml | 2 - .../fragments/92-replicas-max-per-node.yml | 2 - .../93-docker_container-storage_opts.yml | 2 - 8 files changed, 73 insertions(+), 16 deletions(-) delete mode 100644 changelogs/fragments/1.3.0.yml delete mode 100644 changelogs/fragments/87-docker_image-load-image-ids.yml delete mode 100644 changelogs/fragments/88-docker_container-healthcheck.yml delete mode 100644 changelogs/fragments/89-docker_image-pull-platform.yml delete mode 100644 changelogs/fragments/92-replicas-max-per-node.yml delete mode 100644 changelogs/fragments/93-docker_container-storage_opts.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2a2b18f9..2cdfba92 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,37 @@ Docker Community Collection Release Notes .. 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 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 4a7c7148..64ebf609 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -191,3 +191,45 @@ releases: - 1.2.2.yml - CVE-2021-20191_no_log.yml 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' diff --git a/changelogs/fragments/1.3.0.yml b/changelogs/fragments/1.3.0.yml deleted file mode 100644 index c1cd23f0..00000000 --- a/changelogs/fragments/1.3.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular feature and bugfix release. diff --git a/changelogs/fragments/87-docker_image-load-image-ids.yml b/changelogs/fragments/87-docker_image-load-image-ids.yml deleted file mode 100644 index 098b5d73..00000000 --- a/changelogs/fragments/87-docker_image-load-image-ids.yml +++ /dev/null @@ -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)." diff --git a/changelogs/fragments/88-docker_container-healthcheck.yml b/changelogs/fragments/88-docker_container-healthcheck.yml deleted file mode 100644 index 949d0875..00000000 --- a/changelogs/fragments/88-docker_container-healthcheck.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_container - fix healthcheck disabling idempotency issue with strict comparison (https://github.com/ansible-collections/community.docker/issues/85)." diff --git a/changelogs/fragments/89-docker_image-pull-platform.yml b/changelogs/fragments/89-docker_image-pull-platform.yml deleted file mode 100644 index 5e28a151..00000000 --- a/changelogs/fragments/89-docker_image-pull-platform.yml +++ /dev/null @@ -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)." diff --git a/changelogs/fragments/92-replicas-max-per-node.yml b/changelogs/fragments/92-replicas-max-per-node.yml deleted file mode 100644 index 99d4473d..00000000 --- a/changelogs/fragments/92-replicas-max-per-node.yml +++ /dev/null @@ -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)." diff --git a/changelogs/fragments/93-docker_container-storage_opts.yml b/changelogs/fragments/93-docker_container-storage_opts.yml deleted file mode 100644 index d4fc9253..00000000 --- a/changelogs/fragments/93-docker_container-storage_opts.yml +++ /dev/null @@ -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)."