summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Davis <mrd@redhat.com>2019-10-23 11:18:01 -0700
committerMatt Davis <mrd@redhat.com>2019-10-23 11:18:01 -0700
commit149ff0d3add5aba6ac6ca72bcdd8efb6ccaf1ac3 (patch)
treefa975d08c46828e783da6fd46f782910bdee7aed
parent07fa9b51875ece72d6fd1a40bae6cb50991000d9 (diff)
downloadansible-2.9.0rc5.tar.gz
New release v2.9.0rc5v2.9.0rc5
-rw-r--r--changelogs/.changes.yaml8
-rw-r--r--changelogs/CHANGELOG-v2.9.rst20
-rw-r--r--changelogs/fragments/v2.9.0rc5_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 32 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 133965efce..1cab2a4c34 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1295,3 +1295,11 @@ releases:
- no-log-sub-options-invalid-parameter.yaml
- v2.9.0rc4_summary.yaml
release_date: '2019-10-17'
+ 2.9.0rc5:
+ codename: Immigrant Song
+ fragments:
+ - ansible-test-fix-import-sanity-test.yml
+ - fix-ansible-galaxy-server.yml
+ - mqtt-ssl-protocols.yml
+ - v2.9.0rc5_summary.yaml
+ release_date: '2019-10-23'
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index c8eaceec94..bcb224ba91 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,26 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.0rc5
+=========
+
+Release Summary
+---------------
+
+| Release Date: 2019-10-23
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- Fix SSL protcol references in the ``mqtt`` module to prevent failures on Python 2.6.
+- 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.
+- ansible-test import sanity test now consistently reports errors against the file being tested.
+- ansible-test import sanity test now consistently reports warnings as errors.
+- ansible-test import sanity test now properly handles relative imports.
+- ansible-test import sanity test now properly invokes Ansible modules as scripts.
+
v2.9.0rc4
=========
diff --git a/changelogs/fragments/v2.9.0rc5_summary.yaml b/changelogs/fragments/v2.9.0rc5_summary.yaml
new file mode 100644
index 0000000000..33200caa4f
--- /dev/null
+++ b/changelogs/fragments/v2.9.0rc5_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2019-10-23
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 46e360e30a..fb823a16ec 100644
--- a/lib/ansible/release.py
+++ b/lib/ansible/release.py
@@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
-__version__ = '2.9.0rc4.post0'
+__version__ = '2.9.0rc5'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'