Release 4.4.0.

This commit is contained in:
Felix Fontein 2025-02-13 21:27:43 +01:00
parent 5ce4783053
commit e36ee04ea6
6 changed files with 366 additions and 311 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,25 @@ Docker Community Collection Release Notes
.. contents:: Topics .. contents:: Topics
v4.4.0
======
Release Summary
---------------
Feature and bugfix release.
Bugfixes
--------
- docker_compose_v2_run - the module has a conflict between the type of parameter it expects and the one it tries to sanitize. Fix removes the label sanitization step because they are already validated by the parameter definition (https://github.com/ansible-collections/community.docker/pull/1034).
- vendored Docker SDK for Python - do not assume that ``KeyError`` is always for ``ApiVersion`` when querying version fails (https://github.com/ansible-collections/community.docker/issues/1033, https://github.com/ansible-collections/community.docker/pull/1034).
New Modules
-----------
- community.docker.docker_context_info - Retrieve information on Docker contexts for the current user.
v4.3.1 v4.3.1
====== ======

View File

@ -2051,3 +2051,22 @@ releases:
- 1029-sanitize-labels-fail.yml - 1029-sanitize-labels-fail.yml
- 4.3.1.yml - 4.3.1.yml
release_date: '2025-01-23' release_date: '2025-01-23'
4.4.0:
changes:
bugfixes:
- docker_compose_v2_run - the module has a conflict between the type of parameter
it expects and the one it tries to sanitize. Fix removes the label sanitization
step because they are already validated by the parameter definition (https://github.com/ansible-collections/community.docker/pull/1034).
- vendored Docker SDK for Python - do not assume that ``KeyError`` is always
for ``ApiVersion`` when querying version fails (https://github.com/ansible-collections/community.docker/issues/1033,
https://github.com/ansible-collections/community.docker/pull/1034).
release_summary: Feature and bugfix release.
fragments:
- 1034-do-not-sanitize-labels.yaml
- 1034-error-msg.yml
- 4.4.0.yml
modules:
- description: Retrieve information on Docker contexts for the current user.
name: docker_context_info
namespace: ''
release_date: '2025-02-13'

View File

@ -1,2 +0,0 @@
bugfixes:
- docker_compose_v2_run - the module has a conflict between the type of parameter it expects and the one it tries to sanitize. Fix removes the label sanitization step because they are already validated by the parameter definition (https://github.com/ansible-collections/community.docker/pull/1034).

View File

@ -1,3 +0,0 @@
bugfixes:
- "vendored Docker SDK for Python - do not assume that ``KeyError`` is always for ``ApiVersion`` when querying version fails
(https://github.com/ansible-collections/community.docker/issues/1033, https://github.com/ansible-collections/community.docker/pull/1034)."

View File

@ -1 +0,0 @@
release_summary: Feature and bugfix release.