Skip to content

Commit e6df0d7

Browse files
committed
Prepare 4.0.0 release.
1 parent d478174 commit e6df0d7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+42
-2468
lines changed

.azure-pipelines/azure-pipelines.yml

-56
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,6 @@ stages:
9999
test: '2.16/sanity/1'
100100
- name: Units
101101
test: '2.16/units/1'
102-
- stage: Ansible_2_15
103-
displayName: Sanity & Units 2.15
104-
dependsOn: []
105-
jobs:
106-
- template: templates/matrix.yml
107-
parameters:
108-
targets:
109-
- name: Sanity
110-
test: '2.15/sanity/1'
111-
- name: Units
112-
test: '2.15/units/1'
113102

114103
### Docker
115104
- stage: Docker_devel
@@ -131,7 +120,6 @@ stages:
131120
groups:
132121
- 4
133122
- 5
134-
# - 6 -- some images no longer work with docker-compose v1
135123
- stage: Docker_2_18
136124
displayName: Docker 2.18
137125
dependsOn: []
@@ -145,7 +133,6 @@ stages:
145133
groups:
146134
- 4
147135
- 5
148-
# - 6 -- some images no longer work with docker-compose v1
149136
- stage: Docker_2_17
150137
displayName: Docker 2.17
151138
dependsOn: []
@@ -163,7 +150,6 @@ stages:
163150
groups:
164151
- 4
165152
- 5
166-
- 6
167153
- stage: Docker_2_16
168154
displayName: Docker 2.16
169155
dependsOn: []
@@ -183,23 +169,6 @@ stages:
183169
groups:
184170
- 4
185171
- 5
186-
- 6
187-
- stage: Docker_2_15
188-
displayName: Docker 2.15
189-
dependsOn: []
190-
jobs:
191-
- template: templates/matrix.yml
192-
parameters:
193-
testFormat: 2.15/linux/{0}
194-
targets:
195-
- name: Fedora 37
196-
test: fedora37
197-
- name: CentOS 7
198-
test: centos7
199-
groups:
200-
- 4
201-
- 5
202-
- 6
203172

204173
### Community Docker
205174
- stage: Docker_community_devel
@@ -219,7 +188,6 @@ stages:
219188
groups:
220189
- 4
221190
- 5
222-
- 6
223191

224192
### Remote
225193
- stage: Remote_devel
@@ -238,7 +206,6 @@ stages:
238206
- 3
239207
- 4
240208
- 5
241-
# - 6 -- Docker 26 no longer works with docker-compose v1
242209
- stage: Remote_2_18
243210
displayName: Remote 2.18
244211
dependsOn: []
@@ -255,7 +222,6 @@ stages:
255222
- 3
256223
- 4
257224
- 5
258-
# - 6 -- Docker 26 no longer works with docker-compose v1
259225
- stage: Remote_2_17
260226
displayName: Remote 2.17
261227
dependsOn: []
@@ -272,7 +238,6 @@ stages:
272238
- 3
273239
- 4
274240
- 5
275-
# - 6 -- Docker 26 no longer works with docker-compose v1
276241
- stage: Remote_2_16
277242
displayName: Remote 2.16
278243
dependsOn: []
@@ -286,24 +251,6 @@ stages:
286251
# Currently always hangs in group 2
287252
# - name: RHEL 8.8
288253
# test: rhel/8.8
289-
groups:
290-
- 1
291-
- 2
292-
- 3
293-
- 4
294-
- 5
295-
- stage: Remote_2_15
296-
displayName: Remote 2.15
297-
dependsOn: []
298-
jobs:
299-
- template: templates/matrix.yml
300-
parameters:
301-
testFormat: 2.15/{0}
302-
targets:
303-
- name: RHEL 9.1
304-
test: rhel/9.1
305-
- name: RHEL 8.7
306-
test: rhel/8.7
307254
- name: RHEL 7.9
308255
test: rhel/7.9
309256
groups:
@@ -322,17 +269,14 @@ stages:
322269
- Ansible_2_18
323270
- Ansible_2_17
324271
- Ansible_2_16
325-
- Ansible_2_15
326272
- Remote_devel
327273
- Remote_2_18
328274
- Remote_2_17
329275
- Remote_2_16
330-
- Remote_2_15
331276
- Docker_devel
332277
- Docker_2_18
333278
- Docker_2_17
334279
- Docker_2_16
335-
- Docker_2_15
336280
- Docker_community_devel
337281
jobs:
338282
- template: templates/coverage.yml

.github/workflows/ansible-test.yml

+7-105
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
ansible:
32-
- '2.11'
33-
- '2.12'
34-
- '2.13'
35-
- '2.14'
32+
- '2.15'
3633
# Ansible-test on various stable branches does not yet work well with cgroups v2.
3734
# Since ubuntu-latest now uses Ubuntu 22.04, we need to fall back to the ubuntu-20.04
3835
# image for these stable branches. The list of branches where this is necessary will
@@ -71,10 +68,7 @@ jobs:
7168
fail-fast: true
7269
matrix:
7370
ansible:
74-
- '2.11'
75-
- '2.12'
76-
- '2.13'
77-
- '2.14'
71+
- '2.15'
7872

7973
steps:
8074
- name: Perform unit testing against Ansible version ${{ matrix.ansible }}
@@ -118,107 +112,15 @@ jobs:
118112
exclude:
119113
- ansible: ''
120114
include:
121-
# 2.11
122-
- ansible: '2.11'
123-
docker: alpine3
115+
# 2.15
116+
- ansible: '2.15'
117+
docker: fedora37
124118
python: ''
125119
target: azp/4/
126-
extra-constraints: urllib3 < 2.0.0
127-
- ansible: '2.11'
128-
docker: alpine3
120+
- ansible: '2.15'
121+
docker: fedora37
129122
python: ''
130123
target: azp/5/
131-
- ansible: '2.11'
132-
docker: alpine3
133-
python: ''
134-
target: azp/6/
135-
# 2.12
136-
- ansible: '2.12'
137-
docker: fedora33
138-
python: ''
139-
target: azp/4/
140-
- ansible: '2.12'
141-
docker: fedora33
142-
python: ''
143-
target: azp/5/
144-
- ansible: '2.12'
145-
docker: fedora33
146-
python: ''
147-
target: azp/6/
148-
- ansible: '2.12'
149-
docker: fedora34
150-
python: ''
151-
target: azp/4/
152-
- ansible: '2.12'
153-
docker: fedora34
154-
python: ''
155-
target: azp/5/
156-
- ansible: '2.12'
157-
docker: fedora34
158-
python: ''
159-
target: azp/6/
160-
- ansible: '2.12'
161-
docker: ubuntu1804
162-
python: ''
163-
target: azp/4/
164-
- ansible: '2.12'
165-
docker: ubuntu1804
166-
python: ''
167-
target: azp/5/
168-
- ansible: '2.12'
169-
docker: ubuntu1804
170-
python: ''
171-
target: azp/6/
172-
# 2.13
173-
- ansible: '2.13'
174-
docker: fedora35
175-
python: ''
176-
target: azp/4/
177-
- ansible: '2.13'
178-
docker: fedora35
179-
python: ''
180-
target: azp/5/
181-
- ansible: '2.13'
182-
docker: fedora35
183-
python: ''
184-
target: azp/6/
185-
- ansible: '2.13'
186-
docker: opensuse15py2
187-
python: ''
188-
target: azp/4/
189-
- ansible: '2.13'
190-
docker: opensuse15py2
191-
python: ''
192-
target: azp/5/
193-
- ansible: '2.13'
194-
docker: opensuse15py2
195-
python: ''
196-
target: azp/6/
197-
- ansible: '2.13'
198-
docker: alpine3
199-
python: ''
200-
target: azp/4/
201-
- ansible: '2.13'
202-
docker: alpine3
203-
python: ''
204-
target: azp/5/
205-
- ansible: '2.13'
206-
docker: alpine3
207-
python: ''
208-
target: azp/6/
209-
# 2.14
210-
- ansible: '2.14'
211-
docker: alpine3
212-
python: ''
213-
target: azp/4/
214-
- ansible: '2.14'
215-
docker: alpine3
216-
python: ''
217-
target: azp/5/
218-
- ansible: '2.14'
219-
docker: alpine3
220-
python: ''
221-
target: azp/6/
222124

223125
steps:
224126
- name: Perform integration testing against Ansible version ${{ matrix.ansible }} under Python ${{ matrix.python }}

.github/workflows/ee.yml

-13
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,6 @@ jobs:
5757
ansible_runner: ansible-runner
5858
base_image: quay.io/rockylinux/rockylinux:9
5959
pre_base: '"#"'
60-
- name: ansible-core 2.14 @ CentOS Stream 9
61-
ansible_core: https://github.com/ansible/ansible/archive/stable-2.14.tar.gz
62-
ansible_runner: ansible-runner
63-
base_image: quay.io/centos/centos:stream9
64-
pre_base: '"#"'
65-
- name: ansible-core 2.13 @ RHEL UBI 8
66-
ansible_core: https://github.com/ansible/ansible/archive/stable-2.13.tar.gz
67-
ansible_runner: ansible-runner
68-
other_deps: |2
69-
python_interpreter:
70-
package_system: python39 python39-pip python39-wheel python39-cryptography
71-
base_image: docker.io/redhat/ubi8:latest
72-
pre_base: '"#"'
7360
runs-on: ubuntu-latest
7461
steps:
7562
- name: Check out code

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ For more information about communication, see the [Ansible communication guide](
3737

3838
## Tested with Ansible
3939

40-
Tested with the current ansible-core 2.11, ansible-core 2.12, ansible-core 2.13, ansible-core 2.14, ansible-core 2.15, ansible-core 2.16, ansible-core 2.17, and ansible-core 2.18 releases, and the current development version of ansible-core. Ansible/ansible-base versions before 2.11.0 are not supported.
41-
42-
Please note that Ansible 2.9 and ansible-base 2.10 are no longer supported. If you need to use them, use community.docker 2.x.y. Also note that this collection does not work with ansible-core 2.11 (this includes ansible-base and Ansible 2.9) on Python 3.12+.
40+
Tested with the current ansible-core 2.15, ansible-core 2.16, ansible-core 2.17, and ansible-core 2.18 releases, and the current development version of ansible-core. Ansible/ansible-base versions before 2.15.0 are not supported.
4341

4442
## External requirements
4543

changelogs/fragments/4.0.0.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
release_summary: Major release with removed deprecated features.
2+
removed_features:
3+
- "The collection no longer supports ansible-core 2.11, 2.12, 2.13, and 2.14. You need ansible-core 2.15.0 or newer to use community.docker 4.x.y (https://github.com/ansible-collections/community.docker/pull/971)."
4+
- "The docker_compose module has been removed. Please migrate to community.docker.docker_compose_v2 (https://github.com/ansible-collections/community.docker/pull/971)."
5+
- "various modules and plugins - remove the ``ssl_version`` option (https://github.com/ansible-collections/community.docker/pull/971)."
6+
- "docker_container - the ``ignore_image`` option has been removed. Use ``image: ignore`` in ``comparisons`` instead (https://github.com/ansible-collections/community.docker/pull/971)."
7+
- "docker_container - the ``purge_networks`` option has been removed. Use ``networks: strict`` in ``comparisons`` instead and make sure that ``networks`` is specified (https://github.com/ansible-collections/community.docker/pull/971)."
8+
breaking_changes:
9+
- "docker_container - the default of ``image_name_mismatch`` changed from ``ignore`` to ``recreate`` (https://github.com/ansible-collections/community.docker/pull/971)."

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace: community
99
name: docker
10-
version: 3.13.0
10+
version: 4.0.0
1111
readme: README.md
1212
authors:
1313
- Ansible Docker Working Group

meta/runtime.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
44
# SPDX-License-Identifier: GPL-3.0-or-later
55

6-
requires_ansible: '>=2.11.0'
6+
requires_ansible: '>=2.15.0'
77
action_groups:
88
docker:
9-
- docker_compose
109
- docker_compose_v2
1110
- docker_compose_v2_pull
1211
- docker_config
@@ -45,6 +44,6 @@ action_groups:
4544
plugin_routing:
4645
modules:
4746
docker_compose:
48-
deprecation:
47+
tombstone:
4948
removal_version: 4.0.0
5049
warning_text: This module uses docker-compose v1, which is End of Life since July 2022. Please migrate to community.docker.docker_compose_v2.

plugins/connection/docker_api.py

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
with Python's C(SSLSocket)s. See U(https://github.com/ansible-collections/community.docker/issues/605) for more information.
2222
extends_documentation_fragment:
2323
- community.docker.docker.api_documentation
24-
- community.docker.docker.ssl_version_deprecation
2524
- community.docker.docker.var_names
2625
options:
2726
remote_user:

0 commit comments

Comments
 (0)