From 149ff0d3add5aba6ac6ca72bcdd8efb6ccaf1ac3 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Wed, 23 Oct 2019 11:18:01 -0700 Subject: New release v2.9.0rc5 --- changelogs/.changes.yaml | 8 ++++++++ changelogs/CHANGELOG-v2.9.rst | 20 ++++++++++++++++++++ changelogs/fragments/v2.9.0rc5_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.9.0rc5_summary.yaml 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 `__ + + +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 `__ 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' -- cgit v1.2.1