diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b7a12f17..1920b38e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,25 @@ Docker Community Collection Release Notes .. contents:: Topics +v1.2.0 +====== + +Release Summary +--------------- + +Feature release with one new feature and two bugfixes. + +Minor Changes +------------- + +- docker_container - added ``default_host_ip`` option which allows to explicitly set the default IP string for published ports without explicitly specified IPs. When using IPv6 binds with Docker 20.10.2 or newer, this needs to be set to an empty string (``""``) (https://github.com/ansible-collections/community.docker/issues/70, https://github.com/ansible-collections/community.docker/pull/71). + +Bugfixes +-------- + +- docker_container - allow IPv6 zones (RFC 4007) in bind IPs (https://github.com/ansible-collections/community.docker/pull/66). +- docker_image - fix crash on loading images with versions of Docker SDK for Python before 2.5.0 (https://github.com/ansible-collections/community.docker/issues/72, https://github.com/ansible-collections/community.docker/pull/73). + v1.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 968c5af5..56fd323a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -150,3 +150,23 @@ releases: name: docker_containers namespace: null release_date: '2021-01-03' + 1.2.0: + changes: + bugfixes: + - docker_container - allow IPv6 zones (RFC 4007) in bind IPs (https://github.com/ansible-collections/community.docker/pull/66). + - docker_image - fix crash on loading images with versions of Docker SDK for + Python before 2.5.0 (https://github.com/ansible-collections/community.docker/issues/72, + https://github.com/ansible-collections/community.docker/pull/73). + minor_changes: + - docker_container - added ``default_host_ip`` option which allows to explicitly + set the default IP string for published ports without explicitly specified + IPs. When using IPv6 binds with Docker 20.10.2 or newer, this needs to be + set to an empty string (``""``) (https://github.com/ansible-collections/community.docker/issues/70, + https://github.com/ansible-collections/community.docker/pull/71). + release_summary: Feature release with one new feature and two bugfixes. + fragments: + - 1.2.0.yml + - 66-ipv6-zones.yml + - 71-docker_container-default_host_ip.yml + - 73-docker_image-fix-old-docker-py-version.yml + release_date: '2021-01-25' diff --git a/changelogs/fragments/1.2.0.yml b/changelogs/fragments/1.2.0.yml deleted file mode 100644 index 1c3155d5..00000000 --- a/changelogs/fragments/1.2.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Feature release with one new feature and two bugfixes. diff --git a/changelogs/fragments/66-ipv6-zones.yml b/changelogs/fragments/66-ipv6-zones.yml deleted file mode 100644 index 09970451..00000000 --- a/changelogs/fragments/66-ipv6-zones.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_container - allow IPv6 zones (RFC 4007) in bind IPs (https://github.com/ansible-collections/community.docker/pull/66)." diff --git a/changelogs/fragments/71-docker_container-default_host_ip.yml b/changelogs/fragments/71-docker_container-default_host_ip.yml deleted file mode 100644 index 96d96611..00000000 --- a/changelogs/fragments/71-docker_container-default_host_ip.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- 'docker_container - added ``default_host_ip`` option which allows to explicitly set the default IP string for published ports without explicitly specified IPs. When using IPv6 binds with Docker 20.10.2 or newer, this needs to be set to an empty string (``""``) (https://github.com/ansible-collections/community.docker/issues/70, https://github.com/ansible-collections/community.docker/pull/71).' diff --git a/changelogs/fragments/73-docker_image-fix-old-docker-py-version.yml b/changelogs/fragments/73-docker_image-fix-old-docker-py-version.yml deleted file mode 100644 index a7b87993..00000000 --- a/changelogs/fragments/73-docker_image-fix-old-docker-py-version.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_image - fix crash on loading images with versions of Docker SDK for Python before 2.5.0 (https://github.com/ansible-collections/community.docker/issues/72, https://github.com/ansible-collections/community.docker/pull/73)."