summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2020-03-04 18:26:07 -0800
committerMatt Clay <matt@mystile.com>2020-03-04 18:26:07 -0800
commit668cdc3ce88d9d69093a81271b34c69897ef2b57 (patch)
treec8dd930c4010485d25bca7d9418c73a34c8656c7
parenta824c02ae4778b1f06354eb40f388ed79d6f6860 (diff)
downloadansible-668cdc3ce88d9d69093a81271b34c69897ef2b57.tar.gz
New release v2.8.9v2.8.9
-rw-r--r--changelogs/.changes.yaml12
-rw-r--r--changelogs/CHANGELOG-v2.8.rst21
-rw-r--r--changelogs/fragments/v2.8.9_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 37 insertions, 1 deletions
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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
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'