diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8a0bfef4..7afc8572 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,19 @@ Docker Community Collection Release Notes .. contents:: Topics +v3.4.11 +======= + +Release Summary +--------------- + +Bugfix release. + +Bugfixes +-------- + +- docker_volume - fix crash caused by accessing an empty dictionary. The ``has_different_config()`` was raising an ``AttributeError`` because the ``self.existing_volume["Labels"]`` dictionary was ``None`` (https://github.com/ansible-collections/community.docker/pull/702). + v3.4.10 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index fc5d4267..abc9276c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1140,6 +1140,17 @@ releases: - 3.4.10.yml - 696-docker_swarm-data_addr_path.yml release_date: '2023-10-29' + 3.4.11: + changes: + bugfixes: + - docker_volume - fix crash caused by accessing an empty dictionary. The ``has_different_config()`` + was raising an ``AttributeError`` because the ``self.existing_volume["Labels"]`` + dictionary was ``None`` (https://github.com/ansible-collections/community.docker/pull/702). + release_summary: Bugfix release. + fragments: + - 3.4.11.yml + - 702-docker-volume-label-none.yaml + release_date: '2023-11-12' 3.4.2: changes: bugfixes: diff --git a/changelogs/fragments/3.4.11.yml b/changelogs/fragments/3.4.11.yml deleted file mode 100644 index 8ce9aa96..00000000 --- a/changelogs/fragments/3.4.11.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Bugfix release. diff --git a/changelogs/fragments/702-docker-volume-label-none.yaml b/changelogs/fragments/702-docker-volume-label-none.yaml deleted file mode 100644 index d1c9c847..00000000 --- a/changelogs/fragments/702-docker-volume-label-none.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - docker_volume - fix crash caused by accessing an empty dictionary. The ``has_different_config()`` was raising an ``AttributeError`` because the ``self.existing_volume["Labels"]`` dictionary was ``None`` (https://github.com/ansible-collections/community.docker/pull/702).