update ansible collections sops, docker and debops
All checks were successful
/ build (pull_request) Successful in 28s
/ Ansible Lint (push) Successful in 2m36s
/ Ansible Lint (pull_request) Successful in 2m41s

This commit is contained in:
chris 2026-09-21 22:26:20 +02:00
commit e31ee5e39c
Signed by: c6ristian
SSH key fingerprint: SHA256:B3m+yzpaxGXSEcDBpPHfvza/DNC0wuX+CKMeGq8wgak
910 changed files with 27667 additions and 19786 deletions

View file

@ -2357,3 +2357,86 @@ releases:
- 1226-docker-sdk-tls.yml
- 5.0.5.yml
release_date: '2025-12-31'
5.0.6:
changes:
bugfixes:
- docker_image_pull, docker_container - fix pulled image change detection
for Docker 29.2+ (https://github.com/ansible-collections/community.docker/pull/1242).
release_summary: Bugfix release.
fragments:
- 1242-pull.yml
- 5.0.6.yml
release_date: '2026-02-12'
5.1.0:
changes:
minor_changes:
- docker_compose_v2_pull - adds ``ignore_pull_failures`` parameter that passes
``--ignore-pull-failures`` to the ``docker compose pull`` call when set
to ``true`` (https://github.com/ansible-collections/community.docker/pull/1248).
release_summary: Feature release.
fragments:
- 1248-ignore-pull-failures.yml
- 5.1.0.yml
release_date: '2026-03-23'
5.2.0:
changes:
minor_changes:
- docker_image_export - adds ``platform`` parameter to allow exporting a specific
platform variant from a multi-arch image (https://github.com/ansible-collections/community.docker/issues/1064,
https://github.com/ansible-collections/community.docker/pull/1251).
release_summary: Feature release.
fragments:
- 1064-docker-image-export-platform.yml
- 5.2.0.yml
release_date: '2026-04-08'
5.2.1:
changes:
bugfixes:
- docker_container_exec module, docker_api connection plugin - ensure that
when a command is run in a container with stdin provided, that the actual
response is closed and not a socket derived from it. The old behavior causes
warnings to be shown on Python 3.13+ under certain conditions (https://github.com/ansible-collections/community.docker/issues/1247,
https://github.com/ansible-collections/community.docker/pull/1260).
release_summary: Bugfix release.
fragments:
- 1260-close.yml
- 5.2.1.yml
release_date: '2026-05-26'
5.2.2:
changes:
bugfixes:
- Handle empty 'docker compose images' stdout in case of errors (https://github.com/ansible-collections/community.docker/pull/1305).
- docker_api connection plugin - the environment fallbacks for ``docker_host``,
``tls_hostname``, ``api_version``, ``timeout``, ``tls``, and ``validate_certs``
now finally work (https://github.com/ansible-collections/community.docker/issues/1298,
https://github.com/ansible-collections/community.docker/pull/1299).
- docker_containers inventory plugin - the environment fallbacks for ``docker_host``,
``tls_hostname``, ``api_version``, ``timeout``, ``tls``, and ``validate_certs``
now finally work (https://github.com/ansible-collections/community.docker/issues/1298,
https://github.com/ansible-collections/community.docker/pull/1299).
- docker_image, docker_image_pull, docker_container - also handle errors if
only ``errorDetail`` is set, but not ``error``. The ``error`` field has
been `deprecated in Moby apparently a very long time ago <https://github.com/moby/moby/commit/3043c2641990d94298c6377b7ef14709263a4709>`__
(https://github.com/ansible-collections/community.docker/pull/1302).
release_summary: Bugfix release.
fragments:
- 1299-env.yml
- 1302-docker-image.yml
- 1305-docker-compose.yml
- 5.2.2.yml
release_date: '2026-08-08'
5.3.0:
changes:
minor_changes:
- docker_swarm_service - add ``command_as_args`` option. When set to ``true``,
``command`` and ``args`` are concatenated and mapped to ``ContainerSpec.Args``
(matching ``docker service create IMAGE [COMMAND] [ARG...]``), preserving
the image ``ENTRYPOINT``. The default remains ``false`` (historical mapping
of ``command`` to ``ContainerSpec.Command`` and ``args`` to ``ContainerSpec.Args``)
for backward compatibility (https://github.com/ansible-collections/community.docker/issues/1044,
https://github.com/ansible-collections/community.docker/issues/212, https://github.com/ansible-collections/community.docker/pull/1307).
release_summary: Feature release.
fragments:
- 1044-swarm-service-command-args.yml
- 5.3.0.yml
release_date: '2026-09-06'