Browse code

New release v2.9.21rc1

Rick Elrod authored on 2021/04/27 23:18:33
Showing 4 changed files
... ...
@@ -1848,6 +1848,18 @@ releases:
1848 1848
     - v2.9.20rc1_summary.yaml
1849 1849
     - wafv2-mod-defaults.yml
1850 1850
     release_date: '2021-04-05'
1851
+  2.9.21rc1:
1852
+    codename: Immigrant Song
1853
+    fragments:
1854
+    - 72411-fips-mode-ansible-test.yml
1855
+    - ansible-test-connection-units-init.yml
1856
+    - ansible-test-docker-network-detect.yml
1857
+    - ansible-test-opensuse-15-2.yml
1858
+    - ansible-test-pypi-container-no-publish.yml
1859
+    - ansible-test-pypi-test-container.yml
1860
+    - v2.9.21rc1_summary.yaml
1861
+    - validate-modules_found_try_except_import_fails_module_attribute.yaml
1862
+    release_date: '2021-04-27'
1851 1863
   2.9.3:
1852 1864
     codename: Immigrant Song
1853 1865
     fragments:
... ...
@@ -5,6 +5,35 @@ Ansible 2.9 "Immigrant Song" Release Notes
5 5
 .. contents:: Topics
6 6
 
7 7
 
8
+v2.9.21rc1
9
+==========
10
+
11
+Release Summary
12
+---------------
13
+
14
+| Release Date: 2021-04-27
15
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
16
+
17
+
18
+Major Changes
19
+-------------
20
+
21
+- ansible-test - Tests run with the ``centos6`` and ``default`` test containers now use a PyPI proxy container to access PyPI when Python 2.6 is used. This allows tests running under Python 2.6 to continue functioning even though PyPI is discontinuing support for non-SNI capable clients.
22
+
23
+Minor Changes
24
+-------------
25
+
26
+- Switch to hashlib.sha256() for ansible-test to allow for FIPs mode.
27
+- ansible-test - Use version 1.21.0 of opensuse test containers which is 15.2, since 15.1 is now EOL.
28
+
29
+Bugfixes
30
+--------
31
+
32
+- ansible-test - Avoid publishing the port used by the ``pypi-test-container`` since it is only accessed by other containers. This avoids issues when trying to run tests in parallel on a single host.
33
+- ansible-test - Fix docker container IP address detection. The ``bridge`` network is no longer assumed to be the default.
34
+- ansible-test - ensure the correct unit test target is given when the ``__init__.py`` file is modified inside the connection plugins directory
35
+- validate-modules - do not raise an ``AttributeError`` if a value is assigned to a module attribute in a try/except block.
36
+
8 37
 v2.9.20
9 38
 =======
10 39
 
11 40
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+release_summary: |
1
+   | Release Date: 2021-04-27
2
+   | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
... ...
@@ -19,6 +19,6 @@
19 19
 from __future__ import (absolute_import, division, print_function)
20 20
 __metaclass__ = type
21 21
 
22
-__version__ = '2.9.20.post0'
22
+__version__ = '2.9.21rc1'
23 23
 __author__ = 'Ansible, Inc.'
24 24
 __codename__ = 'Immigrant Song'