summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-07-14 16:43:19 -0500
committerRick Elrod <rick@elrod.me>2020-07-14 16:43:19 -0500
commit0c89598b8a9961e863930f4b49605c2e299f262b (patch)
tree54c7349ed6e068564fb3197aa0e8f77f2b5e5219
parentbff0724e9eab2770f874e018298f9ab74cc2a78f (diff)
downloadansible-0c89598b8a9961e863930f4b49605c2e299f262b.tar.gz
New release v2.8.13v2.8.13
-rw-r--r--changelogs/.changes.yaml8
-rw-r--r--changelogs/CHANGELOG-v2.8.rst21
-rw-r--r--changelogs/fragments/v2.8.13_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 33 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 5d1b68264d..7c7da30b04 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1662,6 +1662,14 @@ releases:
- v2.8.12_summary.yaml
- win_psmodule-repo-tls.yaml
release_date: '2020-05-11'
+ 2.8.13:
+ codename: How Many More Times
+ fragments:
+ - 61889-change-transform_invalid_group_chars-default.yml
+ - 66549-enablerepo-not-honored-when-used-with-disablerepo-all.yml
+ - 70261_pipe_lookup.yml
+ - v2.8.13_summary.yaml
+ release_date: '2020-07-14'
2.8.2:
codename: How Many More Times
fragments:
diff --git a/changelogs/CHANGELOG-v2.8.rst b/changelogs/CHANGELOG-v2.8.rst
index 617406fb4a..e6abd32d88 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.13
+=======
+
+Release Summary
+---------------
+
+| Release Date: 2020-07-14
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Remove the deprecation message for the ``TRANSFORM_INVALID_GROUP_CHARS`` setting. (https://github.com/ansible/ansible/issues/61889)
+- pipe lookup - update docs for Popen with shell=True usages (https://github.com/ansible/ansible/issues/70159).
+
+Bugfixes
+--------
+
+- yum - fix bug that caused ``enablerepo`` to not be honored when used with disablerepo all wildcard/glob (https://github.com/ansible/ansible/issues/66549)
+
v2.8.12
=======
diff --git a/changelogs/fragments/v2.8.13_summary.yaml b/changelogs/fragments/v2.8.13_summary.yaml
new file mode 100644
index 0000000000..1d96e09361
--- /dev/null
+++ b/changelogs/fragments/v2.8.13_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-07-14
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 701cddd022..fdf863d4d2 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.12.post0'
+__version__ = '2.8.13'
__author__ = 'Ansible, Inc.'
__codename__ = 'How Many More Times'