summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian M. Adams <chadams@redhat.com>2021-10-04 11:58:04 -0400
committerChristian M. Adams <chadams@redhat.com>2021-10-04 11:58:04 -0400
commit5d92c7212f449bf93ebb0a4446517c0784382676 (patch)
treedd005416e40b0dd3b2aaaab6c4af9c7fb217d0b9
parentc7996fe90ed5d60ff178e3036c0bbb5bb9f07a9e (diff)
downloadansible-5d92c7212f449bf93ebb0a4446517c0784382676.tar.gz
New release v2.10.15rc1v2.10.15rc1
-rw-r--r--changelogs/CHANGELOG-v2.10.rst23
-rw-r--r--changelogs/changelog.yaml27
-rw-r--r--changelogs/fragments/v2.10.15rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 54 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst
index b47b27b004..eba299a4c3 100644
--- a/changelogs/CHANGELOG-v2.10.rst
+++ b/changelogs/CHANGELOG-v2.10.rst
@@ -5,6 +5,29 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
+v2.10.15rc1
+===========
+
+Release Summary
+---------------
+
+| Release Date: 2021-10-04
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+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
+--------
+
+- PowerShell - Ignore the ``LIB`` environment variable when compiling C# Ansible code
+- ansible-test - Remove obsolete ``--remote`` entry ``power/centos/7``
+- ansible-test - Update ``isort`` constraint from version 4.3.15 to 4.3.16 to prevent ``pylint`` from failing with warnings reported as errors.
+- netconf - catch and handle exception to prevent stack trace when running in FIPS mode
+
v2.10.14
========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index e2f5bfa7a3..7c0bbd6d86 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -2005,6 +2005,33 @@ releases:
- pipelinig_to_plugins.yml
- v2.10.14rc1_summary.yaml
release_date: '2021-09-08'
+ 2.10.15rc1:
+ changes:
+ bugfixes:
+ - PowerShell - Ignore the ``LIB`` environment variable when compiling C# Ansible
+ code
+ - ansible-test - Remove obsolete ``--remote`` entry ``power/centos/7``
+ - ansible-test - Update ``isort`` constraint from version 4.3.15 to 4.3.16 to
+ prevent ``pylint`` from failing with warnings reported as errors.
+ - netconf - catch and handle exception to prevent stack trace when running in
+ FIPS mode
+ release_summary: '| Release Date: 2021-10-04
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ 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)
+ codename: When the Levee Breaks
+ fragments:
+ - ansible-test-isort.yml
+ - ansible-test-power-cleanup.yml
+ - avoid-set_options-leak.yaml
+ - fips-ncclient-import-error.yaml
+ - powershell-addtype-env-vars.yml
+ - v2.10.15rc1_summary.yaml
+ release_date: '2021-10-04'
2.10.1rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.10.15rc1_summary.yaml b/changelogs/fragments/v2.10.15rc1_summary.yaml
new file mode 100644
index 0000000000..d674796cf6
--- /dev/null
+++ b/changelogs/fragments/v2.10.15rc1_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 f28270ca0c..fd10ff058f 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.10.14.post0'
+__version__ = '2.10.15rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'