New release v2.10.1rc3

This commit is contained in:
Rick Elrod 2020-09-07 13:52:06 -05:00
parent 2797322fd3
commit 387a7199fc
4 changed files with 64 additions and 1 deletions

View file

@ -5,6 +5,30 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
v2.10.1rc3
==========
Release Summary
---------------
| Release Date: 2020-09-07
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
Minor Changes
-------------
- ansible-test - Add ``macos/10.15`` as a supported value for the ``--remote`` option.
- ansible-test - Allow custom ``--remote-stage`` options for development and testing.
- ansible-test - Fix ``ansible-test coverage`` reporting sub-commands (``report``, ``html``, ``xml``) on Python 2.6.
- ansible-test - Remove the discontinued ``us-east-2`` choice from the ``--remote-aws-region`` option.
- ansible-test - Request remote resources by provider name for all provider types.
- ansible-test - Show a warning when the obsolete ``--remote-aws-region`` option is used.
- ansible-test - Support custom remote endpoints with the ``--remote-endpoint`` option.
- ansible-test - Update built-in service endpoints for the ``--remote`` option.
- ansible-test - Use new endpoint for Parallels based instances with the ``--remote`` option.
- ansible-test - default container now uses default-test-container 2.7.0 and ansible-base-test-container 1.6.0. This brings in Python 3.9.0rc1 for testing.
v2.10.1rc2
==========

View file

@ -1934,3 +1934,39 @@ releases:
- cve-2020-1736-revert.yml
- v2.10.1rc2_summary.yaml
release_date: '2020-09-01'
2.10.1rc3:
changes:
minor_changes:
- ansible-test - Add ``macos/10.15`` as a supported value for the ``--remote``
option.
- ansible-test - Allow custom ``--remote-stage`` options for development and
testing.
- ansible-test - Fix ``ansible-test coverage`` reporting sub-commands (``report``,
``html``, ``xml``) on Python 2.6.
- ansible-test - Remove the discontinued ``us-east-2`` choice from the ``--remote-aws-region``
option.
- ansible-test - Request remote resources by provider name for all provider
types.
- ansible-test - Show a warning when the obsolete ``--remote-aws-region`` option
is used.
- ansible-test - Support custom remote endpoints with the ``--remote-endpoint``
option.
- ansible-test - Update built-in service endpoints for the ``--remote`` option.
- ansible-test - Use new endpoint for Parallels based instances with the ``--remote``
option.
- ansible-test - default container now uses default-test-container 2.7.0 and
ansible-base-test-container 1.6.0. This brings in Python 3.9.0rc1 for testing.
release_summary: '| Release Date: 2020-09-07
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
codename: When the Levee Breaks
fragments:
- ansible-test-coverage-py26.yml
- ansible-test-endpoint-update.yml
- ansible-test-macos-10.15.yml
- ansible-test-parallels-endpoint.yml
- default-test-container160.yml
- v2.10.1rc3_summary.yaml
release_date: '2020-09-07'

View file

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2020-09-07
| `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.1rc2.post0'
__version__ = '2.10.1rc3'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'