diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 785cc3b9..b28d4bd6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,33 @@ Docker Community Collection Release Notes .. contents:: Topics +v3.4.0 +====== + +Release Summary +--------------- + +Regular bugfix and feature release. + +Minor Changes +------------- + +- docker_api connection plugin - when copying files to/from a container, stream the file contents instead of first reading them to memory (https://github.com/ansible-collections/community.docker/pull/545). +- docker_host_info - allow to list all containers with new option ``containers_all`` (https://github.com/ansible-collections/community.docker/issues/535, https://github.com/ansible-collections/community.docker/pull/538). + +Bugfixes +-------- + +- docker_api connection plugin - fix error handling when 409 Conflict is returned by the Docker daemon in case of a stopped container (https://github.com/ansible-collections/community.docker/pull/546). +- docker_container_exec - fix error handling when 409 Conflict is returned by the Docker daemon in case of a stopped container (https://github.com/ansible-collections/community.docker/pull/546). +- docker_plugin - do not crash if plugin is installed in check mode (https://github.com/ansible-collections/community.docker/issues/552, https://github.com/ansible-collections/community.docker/pull/553). +- most modules - fix handling of ``DOCKER_TIMEOUT`` environment variable, and improve handling of other fallback environment variables (https://github.com/ansible-collections/community.docker/issues/551, https://github.com/ansible-collections/community.docker/pull/554). + +New Modules +----------- + +- docker_container_copy_into - Copy a file into a Docker container + v3.3.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 973aab8a..ee4dff32 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1085,3 +1085,33 @@ releases: - 3.3.2.yml - 527-container-wait.yml release_date: '2022-12-09' + 3.4.0: + changes: + bugfixes: + - docker_api connection plugin - fix error handling when 409 Conflict is returned + by the Docker daemon in case of a stopped container (https://github.com/ansible-collections/community.docker/pull/546). + - docker_container_exec - fix error handling when 409 Conflict is returned by + the Docker daemon in case of a stopped container (https://github.com/ansible-collections/community.docker/pull/546). + - docker_plugin - do not crash if plugin is installed in check mode (https://github.com/ansible-collections/community.docker/issues/552, + https://github.com/ansible-collections/community.docker/pull/553). + - most modules - fix handling of ``DOCKER_TIMEOUT`` environment variable, and + improve handling of other fallback environment variables (https://github.com/ansible-collections/community.docker/issues/551, + https://github.com/ansible-collections/community.docker/pull/554). + minor_changes: + - docker_api connection plugin - when copying files to/from a container, stream + the file contents instead of first reading them to memory (https://github.com/ansible-collections/community.docker/pull/545). + - docker_host_info - allow to list all containers with new option ``containers_all`` + (https://github.com/ansible-collections/community.docker/issues/535, https://github.com/ansible-collections/community.docker/pull/538). + release_summary: Regular bugfix and feature release. + fragments: + - 3.4.0.yml + - 538-docker_host_info-all-containers.yml + - 545-docker_api.yml + - 546-conflict-error.yml + - 553-docker_plugin-check-mode.yml + - 554-env-vars.yml + modules: + - description: Copy a file into a Docker container + name: docker_container_copy_into + namespace: '' + release_date: '2023-01-14' diff --git a/changelogs/fragments/3.4.0.yml b/changelogs/fragments/3.4.0.yml deleted file mode 100644 index 4b1469c9..00000000 --- a/changelogs/fragments/3.4.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular bugfix and feature release. diff --git a/changelogs/fragments/538-docker_host_info-all-containers.yml b/changelogs/fragments/538-docker_host_info-all-containers.yml deleted file mode 100644 index 99b8b113..00000000 --- a/changelogs/fragments/538-docker_host_info-all-containers.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker_host_info - allow to list all containers with new option ``containers_all`` (https://github.com/ansible-collections/community.docker/issues/535, https://github.com/ansible-collections/community.docker/pull/538)." diff --git a/changelogs/fragments/545-docker_api.yml b/changelogs/fragments/545-docker_api.yml deleted file mode 100644 index 65b9f540..00000000 --- a/changelogs/fragments/545-docker_api.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker_api connection plugin - when copying files to/from a container, stream the file contents instead of first reading them to memory (https://github.com/ansible-collections/community.docker/pull/545)." diff --git a/changelogs/fragments/546-conflict-error.yml b/changelogs/fragments/546-conflict-error.yml deleted file mode 100644 index 3b067bc6..00000000 --- a/changelogs/fragments/546-conflict-error.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - "docker_api connection plugin - fix error handling when 409 Conflict is returned by the Docker daemon in case of a stopped container (https://github.com/ansible-collections/community.docker/pull/546)." - - "docker_container_exec - fix error handling when 409 Conflict is returned by the Docker daemon in case of a stopped container (https://github.com/ansible-collections/community.docker/pull/546)." diff --git a/changelogs/fragments/553-docker_plugin-check-mode.yml b/changelogs/fragments/553-docker_plugin-check-mode.yml deleted file mode 100644 index 91562f98..00000000 --- a/changelogs/fragments/553-docker_plugin-check-mode.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "docker_plugin - do not crash if plugin is installed in check mode (https://github.com/ansible-collections/community.docker/issues/552, https://github.com/ansible-collections/community.docker/pull/553)." diff --git a/changelogs/fragments/554-env-vars.yml b/changelogs/fragments/554-env-vars.yml deleted file mode 100644 index a344ea2f..00000000 --- a/changelogs/fragments/554-env-vars.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "most modules - fix handling of ``DOCKER_TIMEOUT`` environment variable, and improve handling of other fallback environment variables (https://github.com/ansible-collections/community.docker/issues/551, https://github.com/ansible-collections/community.docker/pull/554)."