From 668cdc3ce88d9d69093a81271b34c69897ef2b57 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 4 Mar 2020 18:26:07 -0800 Subject: New release v2.8.9 --- changelogs/.changes.yaml | 12 ++++++++++++ changelogs/CHANGELOG-v2.8.rst | 21 +++++++++++++++++++++ changelogs/fragments/v2.8.9_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.8.9_summary.yaml diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml index 806e8adb63..ec896cc40f 100644 --- a/changelogs/.changes.yaml +++ b/changelogs/.changes.yaml @@ -2030,3 +2030,15 @@ releases: - v2.8.8_summary.yaml - yum-enable-missing-repo.yaml release_date: '2020-01-15' + 2.8.9: + codename: How Many More Times + fragments: + - 62062-os_network-openstacksdk-min.yml + - 66914-purefa_user_string.yaml + - 66974-mysql_user_doesnt_support_privs_with_underscore.yml + - 67515-openssl-fingerprint-fips.yml + - ansible-test-constraints-virtualenv.yml + - ansible-test-jinja2-python-2.6.yml + - v2.8.9_summary.yaml + - win_unzip-paths.yaml + release_date: '2020-03-04' diff --git a/changelogs/CHANGELOG-v2.8.rst b/changelogs/CHANGELOG-v2.8.rst index 0dd50ae044..14775794cc 100644 --- a/changelogs/CHANGELOG-v2.8.rst +++ b/changelogs/CHANGELOG-v2.8.rst @@ -5,6 +5,27 @@ Ansible 2.8 "How Many More Times" Release Notes .. contents:: Topics +v2.8.9 +====== + +Release Summary +--------------- + +| Release Date: 2020-03-04 +| `Porting Guide `__ + + +Bugfixes +-------- + +- Bump the minimum openstacksdk version to 0.18.0 when os_network uses the port_security_enabled argument. +- ansible-test - Use ``virtualenv`` versions before 20 on provisioned macOS instances to remain compatible with an older pip install. +- ansible-test now limits Jinja2 installs to version 2.10 and earlier on Python 2.6 +- mysql_user - fix support privileges with underscore (https://github.com/ansible/ansible/issues/66974). +- openssl_* modules - prevent crash on fingerprint determination in FIPS mode (https://github.com/ansible/ansible/issues/67213). +- pure - fix incorrect user_string setting in module_utils file (https://github.com/ansible/ansible/pull/66914) +- win_unzip - Fix support for paths with square brackets not being detected properly + v2.8.8 ====== diff --git a/changelogs/fragments/v2.8.9_summary.yaml b/changelogs/fragments/v2.8.9_summary.yaml new file mode 100644 index 0000000000..948469a7dd --- /dev/null +++ b/changelogs/fragments/v2.8.9_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2020-03-04 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index f474248080..5e1f97edfe 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.8.8.post0' +__version__ = '2.8.9' __author__ = 'Ansible, Inc.' __codename__ = 'How Many More Times' -- cgit v1.2.1