summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian M. Adams <chadams@redhat.com>2021-10-04 11:29:57 -0400
committerChristian M. Adams <chadams@redhat.com>2021-10-04 11:29:57 -0400
commite53aec675cbddf07da9ac9b1ec93b1fd269af91f (patch)
tree597ef53c57ccc6cbaf85ae9b6d08b847ec4b36bc
parent6ecbe05bfb167f378380942704d4f82755f6cf4e (diff)
downloadansible-e53aec675cbddf07da9ac9b1ec93b1fd269af91f.tar.gz
New release v2.9.27rc1v2.9.27rc1
-rw-r--r--changelogs/.changes.yaml8
-rw-r--r--changelogs/CHANGELOG-v2.9.rst25
-rw-r--r--changelogs/fragments/v2.9.27rc1_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 ea04de529c..6da302f3f1 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1932,6 +1932,14 @@ releases:
- attributes_compat.yml
- v2.9.26rc1_summary.yaml
release_date: '2021-09-08'
+ 2.9.27rc1:
+ codename: Immigrant Song
+ fragments:
+ - ansible-test-isort.yml
+ - ansible-test-junos-obsolete.yml
+ - avoid-set_options-leak.yaml
+ - v2.9.27rc1_summary.yaml
+ release_date: '2021-10-04'
2.9.3:
codename: Immigrant Song
fragments:
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index 0a98ab0d65..22d610514d 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,31 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.27rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2021-10-04
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ansible-test - Remove obsolete ``junos`` entries for the ``--remote`` option.
+
+Security Fixes
+--------------
+
+- Do not include params in exception when a call to ``set_options`` fails. Additionally, block the exception that is returned from being displayed to stdout. (CVE-2021-3620)
+
+Bugfixes
+--------
+
+- ansible-test - Update ``isort`` constraint from version 4.3.15 to 4.3.16 to prevent ``pylint`` from failing with warnings reported as errors.
+
v2.9.26
=======
diff --git a/changelogs/fragments/v2.9.27rc1_summary.yaml b/changelogs/fragments/v2.9.27rc1_summary.yaml
new file mode 100644
index 0000000000..d674796cf6
--- /dev/null
+++ b/changelogs/fragments/v2.9.27rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-10-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 b67cec6654..5d398ff9cd 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.26.post0'
+__version__ = '2.9.27rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'