diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4824663b..fd1361c7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,25 @@ Docker Community Collection Release Notes .. contents:: Topics +v3.2.0 +====== + +Release Summary +--------------- + +Feature and deprecation release. + +Minor Changes +------------- + +- docker_container - added ``image_name_mismatch`` option which allows to control the behavior if the container uses the image specified, but the container's configuration uses a different name for the image than the one provided to the module (https://github.com/ansible-collections/community.docker/issues/485, https://github.com/ansible-collections/community.docker/pull/488). + +Deprecated Features +------------------- + +- docker_container - the ``ignore_image`` option is deprecated and will be removed in community.docker 4.0.0. Use ``image: ignore`` in ``comparisons`` instead (https://github.com/ansible-collections/community.docker/pull/487). +- docker_container - the ``purge_networks`` option is deprecated and will be removed in community.docker 4.0.0. Use ``networks: strict`` in ``comparisons`` instead, and make sure to provide ``networks``, with value ``[]`` if all networks should be removed (https://github.com/ansible-collections/community.docker/pull/487). + v3.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 44f61cde..7381d67a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1002,3 +1002,25 @@ releases: - 466-add-data-path-port.yml - licenses.yml release_date: '2022-09-08' + 3.2.0: + changes: + deprecated_features: + - 'docker_container - the ``ignore_image`` option is deprecated and will be + removed in community.docker 4.0.0. Use ``image: ignore`` in ``comparisons`` + instead (https://github.com/ansible-collections/community.docker/pull/487).' + - 'docker_container - the ``purge_networks`` option is deprecated and will be + removed in community.docker 4.0.0. Use ``networks: strict`` in ``comparisons`` + instead, and make sure to provide ``networks``, with value ``[]`` if all networks + should be removed (https://github.com/ansible-collections/community.docker/pull/487).' + minor_changes: + - docker_container - added ``image_name_mismatch`` option which allows to control + the behavior if the container uses the image specified, but the container's + configuration uses a different name for the image than the one provided to + the module (https://github.com/ansible-collections/community.docker/issues/485, + https://github.com/ansible-collections/community.docker/pull/488). + release_summary: Feature and deprecation release. + fragments: + - 3.2.0.yml + - 487-docker_container-deprecate.yml + - 488-docker_container-image-name.yml + release_date: '2022-11-01' diff --git a/changelogs/fragments/3.2.0.yml b/changelogs/fragments/3.2.0.yml deleted file mode 100644 index 2ca4e78e..00000000 --- a/changelogs/fragments/3.2.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Feature and deprecation release. diff --git a/changelogs/fragments/487-docker_container-deprecate.yml b/changelogs/fragments/487-docker_container-deprecate.yml deleted file mode 100644 index 0cb300d3..00000000 --- a/changelogs/fragments/487-docker_container-deprecate.yml +++ /dev/null @@ -1,3 +0,0 @@ -deprecated_features: - - "docker_container - the ``ignore_image`` option is deprecated and will be removed in community.docker 4.0.0. Use ``image: ignore`` in ``comparisons`` instead (https://github.com/ansible-collections/community.docker/pull/487)." - - "docker_container - the ``purge_networks`` option is deprecated and will be removed in community.docker 4.0.0. Use ``networks: strict`` in ``comparisons`` instead, and make sure to provide ``networks``, with value ``[]`` if all networks should be removed (https://github.com/ansible-collections/community.docker/pull/487)." diff --git a/changelogs/fragments/488-docker_container-image-name.yml b/changelogs/fragments/488-docker_container-image-name.yml deleted file mode 100644 index 1e642b93..00000000 --- a/changelogs/fragments/488-docker_container-image-name.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker_container - added ``image_name_mismatch`` option which allows to control the behavior if the container uses the image specified, but the container's configuration uses a different name for the image than the one provided to the module (https://github.com/ansible-collections/community.docker/issues/485, https://github.com/ansible-collections/community.docker/pull/488)."