diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 07118ba6..53e58d04 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,26 @@ Docker Community Collection Release Notes .. contents:: Topics +v3.3.0 +====== + +Release Summary +--------------- + +Feature and bugfix release. + +Minor Changes +------------- + +- current_container_facts - make work with current Docker version, also support Podman (https://github.com/ansible-collections/community.docker/pull/510). +- docker_image - when using ``archive_path``, detect whether changes are necessary based on the image ID (hash). If the existing tar archive matches the source, do nothing. Previously, each task execution re-created the archive (https://github.com/ansible-collections/community.docker/pull/500). + +Bugfixes +-------- + +- docker_container_exec - fix ``chdir`` option which was ignored since community.docker 3.0.0 (https://github.com/ansible-collections/community.docker/issues/517, https://github.com/ansible-collections/community.docker/pull/518). +- vendored latest Docker SDK for Python bugfix (https://github.com/ansible-collections/community.docker/pull/513, https://github.com/docker/docker-py/issues/3045). + v3.2.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2283c3c1..0972c939 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1041,3 +1041,25 @@ releases: - 3.2.2.yml - 506-docker_container-kill_signal.yml release_date: '2022-11-28' + 3.3.0: + changes: + bugfixes: + - docker_container_exec - fix ``chdir`` option which was ignored since community.docker + 3.0.0 (https://github.com/ansible-collections/community.docker/issues/517, + https://github.com/ansible-collections/community.docker/pull/518). + - vendored latest Docker SDK for Python bugfix (https://github.com/ansible-collections/community.docker/pull/513, + https://github.com/docker/docker-py/issues/3045). + minor_changes: + - current_container_facts - make work with current Docker version, also support + Podman (https://github.com/ansible-collections/community.docker/pull/510). + - docker_image - when using ``archive_path``, detect whether changes are necessary + based on the image ID (hash). If the existing tar archive matches the source, + do nothing. Previously, each task execution re-created the archive (https://github.com/ansible-collections/community.docker/pull/500). + release_summary: Feature and bugfix release. + fragments: + - 3.3.0.yml + - 500-idempotent-image-archival.yaml + - 510-current_container_facts.yml + - 513-api-npipe.yml + - 518-docker_container_exec-workdir.yml + release_date: '2022-12-03' diff --git a/changelogs/fragments/3.3.0.yml b/changelogs/fragments/3.3.0.yml deleted file mode 100644 index 80287c3b..00000000 --- a/changelogs/fragments/3.3.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Feature and bugfix release. diff --git a/changelogs/fragments/500-idempotent-image-archival.yaml b/changelogs/fragments/500-idempotent-image-archival.yaml deleted file mode 100644 index 1506f376..00000000 --- a/changelogs/fragments/500-idempotent-image-archival.yaml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: - - docker_image - when using ``archive_path``, detect whether changes are necessary based on the image ID (hash). If the existing tar archive matches the source, do nothing. - Previously, each task execution re-created the archive - (https://github.com/ansible-collections/community.docker/pull/500). \ No newline at end of file diff --git a/changelogs/fragments/510-current_container_facts.yml b/changelogs/fragments/510-current_container_facts.yml deleted file mode 100644 index b305e840..00000000 --- a/changelogs/fragments/510-current_container_facts.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "current_container_facts - make work with current Docker version, also support Podman (https://github.com/ansible-collections/community.docker/pull/510)." diff --git a/changelogs/fragments/513-api-npipe.yml b/changelogs/fragments/513-api-npipe.yml deleted file mode 100644 index 1503c57a..00000000 --- a/changelogs/fragments/513-api-npipe.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "vendored latest Docker SDK for Python bugfix (https://github.com/ansible-collections/community.docker/pull/513, https://github.com/docker/docker-py/issues/3045)." diff --git a/changelogs/fragments/518-docker_container_exec-workdir.yml b/changelogs/fragments/518-docker_container_exec-workdir.yml deleted file mode 100644 index 807a6192..00000000 --- a/changelogs/fragments/518-docker_container_exec-workdir.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "docker_container_exec - fix ``chdir`` option which was ignored since community.docker 3.0.0 (https://github.com/ansible-collections/community.docker/issues/517, https://github.com/ansible-collections/community.docker/pull/518)."