Browse code

New release v2.9.0rc5

Matt Davis authored on 2019/10/24 03:18:01
Showing 4 changed files
... ...
@@ -1295,3 +1295,11 @@ releases:
1295 1295
     - no-log-sub-options-invalid-parameter.yaml
1296 1296
     - v2.9.0rc4_summary.yaml
1297 1297
     release_date: '2019-10-17'
1298
+  2.9.0rc5:
1299
+    codename: Immigrant Song
1300
+    fragments:
1301
+    - ansible-test-fix-import-sanity-test.yml
1302
+    - fix-ansible-galaxy-server.yml
1303
+    - mqtt-ssl-protocols.yml
1304
+    - v2.9.0rc5_summary.yaml
1305
+    release_date: '2019-10-23'
... ...
@@ -5,6 +5,26 @@ Ansible 2.9 "Immigrant Song" Release Notes
5 5
 .. contents:: Topics
6 6
 
7 7
 
8
+v2.9.0rc5
9
+=========
10
+
11
+Release Summary
12
+---------------
13
+
14
+| Release Date: 2019-10-23
15
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
16
+
17
+
18
+Bugfixes
19
+--------
20
+
21
+- Fix SSL protcol references in the ``mqtt`` module to prevent failures on Python 2.6.
22
+- The ansible-galaxy publish command was using an incorrect URL for v3 servers. The configuration for v3 servers includes part of the path fragment that was added in the new test.
23
+- ansible-test import sanity test now consistently reports errors against the file being tested.
24
+- ansible-test import sanity test now consistently reports warnings as errors.
25
+- ansible-test import sanity test now properly handles relative imports.
26
+- ansible-test import sanity test now properly invokes Ansible modules as scripts.
27
+
8 28
 v2.9.0rc4
9 29
 =========
10 30
 
11 31
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+release_summary: |
1
+   | Release Date: 2019-10-23
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.0rc4.post0'
22
+__version__ = '2.9.0rc5'
23 23
 __author__ = 'Ansible, Inc.'
24 24
 __codename__ = 'Immigrant Song'