mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 03:52:05 +00:00
Release 1.1.0.
This commit is contained in:
parent
04f5c7e0c9
commit
9fa08824e2
@ -5,6 +5,51 @@ Docker Community Collection Release Notes
|
||||
.. contents:: Topics
|
||||
|
||||
|
||||
v1.1.0
|
||||
======
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
Feature release with three new plugins and modules.
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- docker_container - support specifying ``cgroup_parent`` (https://github.com/ansible-collections/community.docker/issues/6, https://github.com/ansible-collections/community.docker/pull/59).
|
||||
- docker_container - when a container is started with ``detached=false``, ``status`` is now also returned when it is 0 (https://github.com/ansible-collections/community.docker/issues/26, https://github.com/ansible-collections/community.docker/pull/58).
|
||||
- docker_image - support ``platform`` when building images (https://github.com/ansible-collections/community.docker/issues/22, https://github.com/ansible-collections/community.docker/pull/54).
|
||||
|
||||
Deprecated Features
|
||||
-------------------
|
||||
|
||||
- docker_container - currently ``published_ports`` can contain port mappings next to the special value ``all``, in which case the port mappings are ignored. This behavior is deprecated for community.docker 2.0.0, at which point it will either be forbidden, or this behavior will be properly implemented similar to how the Docker CLI tool handles this (https://github.com/ansible-collections/community.docker/issues/8, https://github.com/ansible-collections/community.docker/pull/60).
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- docker_image - if ``push=true`` is used with ``repository``, and the image does not need to be tagged, still push. This can happen if ``repository`` and ``name`` are equal (https://github.com/ansible-collections/community.docker/issues/52, https://github.com/ansible-collections/community.docker/pull/53).
|
||||
- docker_image - report error when loading a broken archive that contains no image (https://github.com/ansible-collections/community.docker/issues/46, https://github.com/ansible-collections/community.docker/pull/55).
|
||||
- docker_image - report error when the loaded archive does not contain the specified image (https://github.com/ansible-collections/community.docker/issues/41, https://github.com/ansible-collections/community.docker/pull/55).
|
||||
|
||||
New Plugins
|
||||
-----------
|
||||
|
||||
Connection
|
||||
~~~~~~~~~~
|
||||
|
||||
- docker_api - Run tasks in docker containers
|
||||
|
||||
Inventory
|
||||
~~~~~~~~~
|
||||
|
||||
- docker_containers - Ansible dynamic inventory plugin for Docker containers.
|
||||
|
||||
New Modules
|
||||
-----------
|
||||
|
||||
- current_container_facts - Return facts about whether the module runs in a Docker container
|
||||
|
||||
v1.0.1
|
||||
======
|
||||
|
||||
|
||||
@ -99,3 +99,54 @@ releases:
|
||||
- 1.0.1.yml
|
||||
- 43-docker_container-device_requests.yml
|
||||
release_date: '2020-12-11'
|
||||
1.1.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- docker_image - if ``push=true`` is used with ``repository``, and the image
|
||||
does not need to be tagged, still push. This can happen if ``repository``
|
||||
and ``name`` are equal (https://github.com/ansible-collections/community.docker/issues/52,
|
||||
https://github.com/ansible-collections/community.docker/pull/53).
|
||||
- docker_image - report error when loading a broken archive that contains no
|
||||
image (https://github.com/ansible-collections/community.docker/issues/46,
|
||||
https://github.com/ansible-collections/community.docker/pull/55).
|
||||
- docker_image - report error when the loaded archive does not contain the specified
|
||||
image (https://github.com/ansible-collections/community.docker/issues/41,
|
||||
https://github.com/ansible-collections/community.docker/pull/55).
|
||||
deprecated_features:
|
||||
- docker_container - currently ``published_ports`` can contain port mappings
|
||||
next to the special value ``all``, in which case the port mappings are ignored.
|
||||
This behavior is deprecated for community.docker 2.0.0, at which point it
|
||||
will either be forbidden, or this behavior will be properly implemented similar
|
||||
to how the Docker CLI tool handles this (https://github.com/ansible-collections/community.docker/issues/8,
|
||||
https://github.com/ansible-collections/community.docker/pull/60).
|
||||
minor_changes:
|
||||
- docker_container - support specifying ``cgroup_parent`` (https://github.com/ansible-collections/community.docker/issues/6,
|
||||
https://github.com/ansible-collections/community.docker/pull/59).
|
||||
- docker_container - when a container is started with ``detached=false``, ``status``
|
||||
is now also returned when it is 0 (https://github.com/ansible-collections/community.docker/issues/26,
|
||||
https://github.com/ansible-collections/community.docker/pull/58).
|
||||
- docker_image - support ``platform`` when building images (https://github.com/ansible-collections/community.docker/issues/22,
|
||||
https://github.com/ansible-collections/community.docker/pull/54).
|
||||
release_summary: Feature release with three new plugins and modules.
|
||||
fragments:
|
||||
- 1.1.0.yml
|
||||
- 53-docker_image-tag-push.yml
|
||||
- 54-docker_image-build-platform.yml
|
||||
- 55-docker_image-loading.yml
|
||||
- 58-docker_container-non-detached-status.yml
|
||||
- 59-docker_container-cgroup-parent.yml
|
||||
- 60-docker_container-publish-all.yml
|
||||
modules:
|
||||
- description: Return facts about whether the module runs in a Docker container
|
||||
name: current_container_facts
|
||||
namespace: ''
|
||||
plugins:
|
||||
connection:
|
||||
- description: Run tasks in docker containers
|
||||
name: docker_api
|
||||
namespace: null
|
||||
inventory:
|
||||
- description: Ansible dynamic inventory plugin for Docker containers.
|
||||
name: docker_containers
|
||||
namespace: null
|
||||
release_date: '2021-01-03'
|
||||
|
||||
@ -1 +0,0 @@
|
||||
release_summary: Feature release with three new plugins and modules.
|
||||
@ -1,2 +0,0 @@
|
||||
bugfixes:
|
||||
- "docker_image - if ``push=true`` is used with ``repository``, and the image does not need to be tagged, still push. This can happen if ``repository`` and ``name`` are equal (https://github.com/ansible-collections/community.docker/issues/52, https://github.com/ansible-collections/community.docker/pull/53)."
|
||||
@ -1,2 +0,0 @@
|
||||
minor_changes:
|
||||
- "docker_image - support ``platform`` when building images (https://github.com/ansible-collections/community.docker/issues/22, https://github.com/ansible-collections/community.docker/pull/54)."
|
||||
@ -1,3 +0,0 @@
|
||||
bugfixes:
|
||||
- "docker_image - report error when loading a broken archive that contains no image (https://github.com/ansible-collections/community.docker/issues/46, https://github.com/ansible-collections/community.docker/pull/55)."
|
||||
- "docker_image - report error when the loaded archive does not contain the specified image (https://github.com/ansible-collections/community.docker/issues/41, https://github.com/ansible-collections/community.docker/pull/55)."
|
||||
@ -1,2 +0,0 @@
|
||||
minor_changes:
|
||||
- "docker_container - when a container is started with ``detached=false``, ``status`` is now also returned when it is 0 (https://github.com/ansible-collections/community.docker/issues/26, https://github.com/ansible-collections/community.docker/pull/58)."
|
||||
@ -1,2 +0,0 @@
|
||||
minor_changes:
|
||||
- "docker_container - support specifying ``cgroup_parent`` (https://github.com/ansible-collections/community.docker/issues/6, https://github.com/ansible-collections/community.docker/pull/59)."
|
||||
@ -1,2 +0,0 @@
|
||||
deprecated_features:
|
||||
- "docker_container - currently ``published_ports`` can contain port mappings next to the special value ``all``, in which case the port mappings are ignored. This behavior is deprecated for community.docker 2.0.0, at which point it will either be forbidden, or this behavior will be properly implemented similar to how the Docker CLI tool handles this (https://github.com/ansible-collections/community.docker/issues/8, https://github.com/ansible-collections/community.docker/pull/60)."
|
||||
Loading…
Reference in New Issue
Block a user