summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-09-07 13:52:06 -0500
committerRick Elrod <rick@elrod.me>2020-09-07 13:52:06 -0500
commit387a7199fc6f7f4b12c1e272e42b6375c85cf76c (patch)
treec0994bcca905dca1b75537eb1d1e7ae2e9b13748
parent2797322fd3fe323b634c9133979e04f8bfe1a70a (diff)
downloadansible-387a7199fc6f7f4b12c1e272e42b6375c85cf76c.tar.gz
New release v2.10.1rc3v2.10.1rc3
-rw-r--r--changelogs/CHANGELOG-v2.10.rst24
-rw-r--r--changelogs/changelog.yaml36
-rw-r--r--changelogs/fragments/v2.10.1rc3_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 64 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst
index db27c6156f..7565b93e32 100644
--- a/changelogs/CHANGELOG-v2.10.rst
+++ b/changelogs/CHANGELOG-v2.10.rst
@@ -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
==========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 30ce606fb1..ec638f0491 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -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'
diff --git a/changelogs/fragments/v2.10.1rc3_summary.yaml b/changelogs/fragments/v2.10.1rc3_summary.yaml
new file mode 100644
index 0000000000..9a797b0eb7
--- /dev/null
+++ b/changelogs/fragments/v2.10.1rc3_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-09-07
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 5cd62fd7be..4bd64e9d99 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.1rc2.post0'
+__version__ = '2.10.1rc3'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'