mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 11:58:43 +00:00
Prepare 3.6.0-rc1 release.
This commit is contained in:
parent
7129cc5a30
commit
eb3e0b17cd
18
changelogs/fragments/3.6.0-rc1.yml
Normal file
18
changelogs/fragments/3.6.0-rc1.yml
Normal file
@ -0,0 +1,18 @@
|
||||
release_summary: |
|
||||
First release candidate of the latest bugfix and feature release.
|
||||
No more features will be added before the final release, which will likely happen on Sunday or Monday.
|
||||
|
||||
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``.
|
||||
|
||||
Changes since the last beta:
|
||||
* The ``docker_compose_v2*`` modules also checks for ``compose.yaml`` and ``compose.yml``, not only for ``docker-compose.yaml`` and ``docker-compose.yml``.
|
||||
* You can now specify ``services`` in the ``docker_compose_v2`` module.
|
||||
* You can now specify ``build`` in the ``docker_compose_v2`` module (allows to pass ``--build`` or ``--no-build`` depending on its value).
|
||||
@ -1,12 +1,13 @@
|
||||
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``.
|
||||
{}
|
||||
#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``.
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
namespace: community
|
||||
name: docker
|
||||
version: 3.6.0
|
||||
version: 3.6.0-rc1
|
||||
readme: README.md
|
||||
authors:
|
||||
- Ansible Docker Working Group
|
||||
|
||||
Loading…
Reference in New Issue
Block a user