From b84c771fc5056a466ddf97b0f0b9aa83f8bf0653 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 13 Jan 2024 16:21:19 +0100 Subject: [PATCH] Prepare 3.6.0-b2. --- changelogs/fragments/3.6.0-b2.yml | 19 +++++++++++++++++++ changelogs/fragments/3.6.0.yml | 28 ++++++++++++++++------------ galaxy.yml | 2 +- 3 files changed, 36 insertions(+), 13 deletions(-) create mode 100644 changelogs/fragments/3.6.0-b2.yml diff --git a/changelogs/fragments/3.6.0-b2.yml b/changelogs/fragments/3.6.0-b2.yml new file mode 100644 index 00000000..1959ff9f --- /dev/null +++ b/changelogs/fragments/3.6.0-b2.yml @@ -0,0 +1,19 @@ +release_summary: | + Second prerelease of the upcoming 3.6.0 bugfix and feature release. + + The collection now includes a bunch of new ``docker_image_*`` modules that move features out of the + rather complex ``docker_image`` module. These new modules are easier to use and can better declare whether + they support check mode, diff mode, or none of them. + + This version also features modules that support the Docker CLI plugins ``buildx`` and ``compose``. + The ``docker_image_build`` module uses the ``docker buildx`` command under the hood, and the ``docker_compose_v2`` + and ``docker_compose_v2_pull`` modules uses the ``docker compose`` command. All these modules use the Docker CLI + instead of directly talking to the API. The modules support mostly the same interface as the API based modules, + so the main difference is that instead of some Python requirements, they depend on the Docker CLI tool ``docker``. + + The ``docker_stack*`` modules have been extended to use the same Docker CLI framework, which also enables the + options to configure how to talk to the Docker dameon for these modules. + + Other changes to the collection since the last prerelease: + + * docker_compose_v2 allows to specify the pull policy diff --git a/changelogs/fragments/3.6.0.yml b/changelogs/fragments/3.6.0.yml index 85da3bf3..2e450d46 100644 --- a/changelogs/fragments/3.6.0.yml +++ b/changelogs/fragments/3.6.0.yml @@ -1,12 +1,16 @@ -release_summary: | - Bugfix and feature release. - - The collection now includes a bunch of new ``docker_image_*`` modules that move features out of the - rather complex ``docker_image`` module. These new modules are easier to use and can better declare whether - they support check mode, diff mode, or none of them. - - This version also features modules that support the Docker CLI plugins ``buildx`` and ``compose``. - The ``docker_image_build`` module uses the ``docker buildx`` command under the hood, and the ``docker_compose_v2`` - module uses the ``docker compose`` command. Both these modules use the Docker CLI instead of directly talking - to the API. The modules support mostly the same interface as the API based modules, so the main difference is that - instead of some Python requirements, they depend on the Docker CLI tool ``docker``. +{} +#release_summary: | +# Bugfix and feature release. +# +# The collection now includes a bunch of new ``docker_image_*`` modules that move features out of the +# rather complex ``docker_image`` module. These new modules are easier to use and can better declare whether +# they support check mode, diff mode, or none of them. +# +# This version also features modules that support the Docker CLI plugins ``buildx`` and ``compose``. +# The ``docker_image_build`` module uses the ``docker buildx`` command under the hood, and the ``docker_compose_v2`` +# and ``docker_compose_v2_pull`` modules uses the ``docker compose`` command. All these modules use the Docker CLI +# instead of directly talking to the API. The modules support mostly the same interface as the API based modules, +# so the main difference is that instead of some Python requirements, they depend on the Docker CLI tool ``docker``. +# +# The ``docker_stack*`` modules have been extended to use the same Docker CLI framework, which also enables the +# options to configure how to talk to the Docker dameon for these modules. diff --git a/galaxy.yml b/galaxy.yml index 81d520b3..8cc69397 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -7,7 +7,7 @@ namespace: community name: docker -version: 3.6.0 +version: 3.6.0-b2 readme: README.md authors: - Ansible Docker Working Group