diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 37763d7d..029792ec 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,20 @@ Docker Community Collection Release Notes .. contents:: Topics +v1.10.11 +======== + +Release Summary +--------------- + +Maintenance release. + +Bugfixes +-------- + +- Docker SDK for Python based modules and plugins - if the API version is specified as an option, use that one to validate API version requirements of module/plugin options instead of the latest API version supported by the Docker daemon. This also avoids one unnecessary API call per module/plugin (https://github.com/ansible-collections/community.docker/pull/389). +- docker_stack - fix broken string formatting when reporting error in case ``compose`` was containing invalid values (https://github.com/ansible-collections/community.docker/pull/448). + v1.10.10 ======== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index da1ccb68..4e12c822 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -185,6 +185,21 @@ releases: - 354-remove-dead-code.yml - 367-docker_container-ports-validation.yml release_date: '2022-05-24' + 1.10.11: + changes: + bugfixes: + - Docker SDK for Python based modules and plugins - if the API version is specified + as an option, use that one to validate API version requirements of module/plugin + options instead of the latest API version supported by the Docker daemon. + This also avoids one unnecessary API call per module/plugin (https://github.com/ansible-collections/community.docker/pull/389). + - docker_stack - fix broken string formatting when reporting error in case ``compose`` + was containing invalid values (https://github.com/ansible-collections/community.docker/pull/448). + release_summary: Maintenance release. + fragments: + - 1.10.11.yml + - 389-api-version.yml + - 448-docker_stack-error.yml + release_date: '2022-08-12' 1.10.2: changes: bugfixes: diff --git a/changelogs/fragments/1.10.11.yml b/changelogs/fragments/1.10.11.yml deleted file mode 100644 index 778e3fb7..00000000 --- a/changelogs/fragments/1.10.11.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Maintenance release. diff --git a/changelogs/fragments/389-api-version.yml b/changelogs/fragments/389-api-version.yml deleted file mode 100644 index f75097a9..00000000 --- a/changelogs/fragments/389-api-version.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "Docker SDK for Python based modules and plugins - if the API version is specified as an option, use that one to validate API version requirements of module/plugin options instead of the latest API version supported by the Docker daemon. This also avoids one unnecessary API call per module/plugin (https://github.com/ansible-collections/community.docker/pull/389)." diff --git a/changelogs/fragments/448-docker_stack-error.yml b/changelogs/fragments/448-docker_stack-error.yml deleted file mode 100644 index 18d11d47..00000000 --- a/changelogs/fragments/448-docker_stack-error.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "docker_stack - fix broken string formatting when reporting error in case ``compose`` was containing invalid values (https://github.com/ansible-collections/community.docker/pull/448)."