New release v2.10.1rc2

This commit is contained in:
Rick Elrod 2020-09-01 01:01:32 -05:00
parent 9a48ffd61b
commit 0e68601002
4 changed files with 35 additions and 1 deletions

View file

@ -5,6 +5,21 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
v2.10.1rc2
==========
Release Summary
---------------
| Release Date: 2020-09-01
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
Security Fixes
--------------
- The fix for CVE-2020-1736 has been reverted. Users are encouraged to specify a ``mode`` parameter in their file-based tasks when the files being manipulated contain sensitive data.
v2.10.1rc1
==========

View file

@ -1918,3 +1918,19 @@ releases:
- unarchive-check-future-gid-against-run-gid.yml
- v2.10.1rc1_summary.yaml
release_date: '2020-08-31'
2.10.1rc2:
changes:
release_summary: '| Release Date: 2020-09-01
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
security_fixes:
- The fix for CVE-2020-1736 has been reverted. Users are encouraged to specify
a ``mode`` parameter in their file-based tasks when the files being manipulated
contain sensitive data.
codename: When the Levee Breaks
fragments:
- cve-2020-1736-revert.yml
- v2.10.1rc2_summary.yaml
release_date: '2020-09-01'

View file

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

View file

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.10.1rc1'
__version__ = '2.10.1rc2'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'