diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0f4cf8db..05f89910 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,29 @@ Docker Community Collection Release Notes .. contents:: Topics +v2.3.0 +====== + +Release Summary +--------------- + +Regular feature and bugfix release. + +Minor Changes +------------- + +- docker connection plugin - implement connection reset by clearing internal container user cache (https://github.com/ansible-collections/community.docker/pull/312). +- docker connection plugin - simplify ``actual_user`` handling code (https://github.com/ansible-collections/community.docker/pull/311). +- docker connection plugin - the plugin supports new ways to define the timeout. These are the ``ANSIBLE_DOCKER_TIMEOUT`` environment variable, the ``timeout`` setting in the ``docker_connection`` section of ``ansible.cfg``, and the ``ansible_docker_timeout`` variable (https://github.com/ansible-collections/community.docker/pull/297). +- docker_api connection plugin - implement connection reset by clearing internal container user/group ID cache (https://github.com/ansible-collections/community.docker/pull/312). +- docker_api connection plugin - the plugin supports new ways to define the timeout. These are the ``ANSIBLE_DOCKER_TIMEOUT`` environment variable, the ``timeout`` setting in the ``docker_connection`` section of ``ansible.cfg``, and the ``ansible_docker_timeout`` variable (https://github.com/ansible-collections/community.docker/pull/308). + +Bugfixes +-------- + +- docker connection plugin - fix option handling to be compatible with ansible-core 2.13 (https://github.com/ansible-collections/community.docker/pull/297, https://github.com/ansible-collections/community.docker/issues/307). +- docker_api connection plugin - fix option handling to be compatible with ansible-core 2.13 (https://github.com/ansible-collections/community.docker/pull/308). + v2.2.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 9190d000..9cf2bab0 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -559,3 +559,32 @@ releases: - 2.2.1.yml - 305-docker_compose-errors-warnings.yml release_date: '2022-03-14' + 2.3.0: + changes: + bugfixes: + - docker connection plugin - fix option handling to be compatible with ansible-core + 2.13 (https://github.com/ansible-collections/community.docker/pull/297, https://github.com/ansible-collections/community.docker/issues/307). + - docker_api connection plugin - fix option handling to be compatible with ansible-core + 2.13 (https://github.com/ansible-collections/community.docker/pull/308). + minor_changes: + - docker connection plugin - implement connection reset by clearing internal + container user cache (https://github.com/ansible-collections/community.docker/pull/312). + - docker connection plugin - simplify ``actual_user`` handling code (https://github.com/ansible-collections/community.docker/pull/311). + - docker connection plugin - the plugin supports new ways to define the timeout. + These are the ``ANSIBLE_DOCKER_TIMEOUT`` environment variable, the ``timeout`` + setting in the ``docker_connection`` section of ``ansible.cfg``, and the ``ansible_docker_timeout`` + variable (https://github.com/ansible-collections/community.docker/pull/297). + - docker_api connection plugin - implement connection reset by clearing internal + container user/group ID cache (https://github.com/ansible-collections/community.docker/pull/312). + - docker_api connection plugin - the plugin supports new ways to define the + timeout. These are the ``ANSIBLE_DOCKER_TIMEOUT`` environment variable, the + ``timeout`` setting in the ``docker_connection`` section of ``ansible.cfg``, + and the ``ansible_docker_timeout`` variable (https://github.com/ansible-collections/community.docker/pull/308). + release_summary: Regular feature and bugfix release. + fragments: + - 2.3.0.yml + - 297-docker-connection-config.yml + - 308-docker_api-connection-config.yml + - 311-docker-actual_user.yml + - 312-docker-connection-reset.yml + release_date: '2022-03-28' diff --git a/changelogs/fragments/2.3.0.yml b/changelogs/fragments/2.3.0.yml deleted file mode 100644 index c1cd23f0..00000000 --- a/changelogs/fragments/2.3.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Regular feature and bugfix release. diff --git a/changelogs/fragments/297-docker-connection-config.yml b/changelogs/fragments/297-docker-connection-config.yml deleted file mode 100644 index a0ae0e46..00000000 --- a/changelogs/fragments/297-docker-connection-config.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - "docker connection plugin - fix option handling to be compatible with ansible-core 2.13 (https://github.com/ansible-collections/community.docker/pull/297, https://github.com/ansible-collections/community.docker/issues/307)." -minor_changes: - - "docker connection plugin - the plugin supports new ways to define the timeout. These are the ``ANSIBLE_DOCKER_TIMEOUT`` environment variable, the ``timeout`` setting in the ``docker_connection`` section of ``ansible.cfg``, and the ``ansible_docker_timeout`` variable (https://github.com/ansible-collections/community.docker/pull/297)." diff --git a/changelogs/fragments/308-docker_api-connection-config.yml b/changelogs/fragments/308-docker_api-connection-config.yml deleted file mode 100644 index dab82228..00000000 --- a/changelogs/fragments/308-docker_api-connection-config.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - "docker_api connection plugin - fix option handling to be compatible with ansible-core 2.13 (https://github.com/ansible-collections/community.docker/pull/308)." -minor_changes: - - "docker_api connection plugin - the plugin supports new ways to define the timeout. These are the ``ANSIBLE_DOCKER_TIMEOUT`` environment variable, the ``timeout`` setting in the ``docker_connection`` section of ``ansible.cfg``, and the ``ansible_docker_timeout`` variable (https://github.com/ansible-collections/community.docker/pull/308)." diff --git a/changelogs/fragments/311-docker-actual_user.yml b/changelogs/fragments/311-docker-actual_user.yml deleted file mode 100644 index 26a9f343..00000000 --- a/changelogs/fragments/311-docker-actual_user.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker connection plugin - simplify ``actual_user`` handling code (https://github.com/ansible-collections/community.docker/pull/311)." diff --git a/changelogs/fragments/312-docker-connection-reset.yml b/changelogs/fragments/312-docker-connection-reset.yml deleted file mode 100644 index fef7ff94..00000000 --- a/changelogs/fragments/312-docker-connection-reset.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- "docker connection plugin - implement connection reset by clearing internal container user cache (https://github.com/ansible-collections/community.docker/pull/312)." -- "docker_api connection plugin - implement connection reset by clearing internal container user/group ID cache (https://github.com/ansible-collections/community.docker/pull/312)."