New release v2.10.15rc1

pull/75998/head v2.10.15rc1
Christian M. Adams 3 years ago
parent c7996fe90e
commit 5d92c7212f
No known key found for this signature in database
GPG Key ID: 9C561C1398442F64

@ -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
========

@ -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:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2021-10-04
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

@ -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'

Loading…
Cancel
Save