Browse code

New release v2.10.1rc3

Rick Elrod authored on 2020/09/08 03:52:06
Showing 4 changed files
... ...
@@ -5,6 +5,30 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
5 5
 .. contents:: Topics
6 6
 
7 7
 
8
+v2.10.1rc3
9
+==========
10
+
11
+Release Summary
12
+---------------
13
+
14
+| Release Date: 2020-09-07
15
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
16
+
17
+
18
+Minor Changes
19
+-------------
20
+
21
+- ansible-test - Add ``macos/10.15`` as a supported value for the ``--remote`` option.
22
+- ansible-test - Allow custom ``--remote-stage`` options for development and testing.
23
+- ansible-test - Fix ``ansible-test coverage`` reporting sub-commands (``report``, ``html``, ``xml``) on Python 2.6.
24
+- ansible-test - Remove the discontinued ``us-east-2`` choice from the ``--remote-aws-region`` option.
25
+- ansible-test - Request remote resources by provider name for all provider types.
26
+- ansible-test - Show a warning when the obsolete ``--remote-aws-region`` option is used.
27
+- ansible-test - Support custom remote endpoints with the ``--remote-endpoint`` option.
28
+- ansible-test - Update built-in service endpoints for the ``--remote`` option.
29
+- ansible-test - Use new endpoint for Parallels based instances with the ``--remote`` option.
30
+- 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.
31
+
8 32
 v2.10.1rc2
9 33
 ==========
10 34
 
... ...
@@ -1934,3 +1934,39 @@ releases:
1934 1934
     - cve-2020-1736-revert.yml
1935 1935
     - v2.10.1rc2_summary.yaml
1936 1936
     release_date: '2020-09-01'
1937
+  2.10.1rc3:
1938
+    changes:
1939
+      minor_changes:
1940
+      - ansible-test - Add ``macos/10.15`` as a supported value for the ``--remote``
1941
+        option.
1942
+      - ansible-test - Allow custom ``--remote-stage`` options for development and
1943
+        testing.
1944
+      - ansible-test - Fix ``ansible-test coverage`` reporting sub-commands (``report``,
1945
+        ``html``, ``xml``) on Python 2.6.
1946
+      - ansible-test - Remove the discontinued ``us-east-2`` choice from the ``--remote-aws-region``
1947
+        option.
1948
+      - ansible-test - Request remote resources by provider name for all provider
1949
+        types.
1950
+      - ansible-test - Show a warning when the obsolete ``--remote-aws-region`` option
1951
+        is used.
1952
+      - ansible-test - Support custom remote endpoints with the ``--remote-endpoint``
1953
+        option.
1954
+      - ansible-test - Update built-in service endpoints for the ``--remote`` option.
1955
+      - ansible-test - Use new endpoint for Parallels based instances with the ``--remote``
1956
+        option.
1957
+      - ansible-test - default container now uses default-test-container 2.7.0 and
1958
+        ansible-base-test-container 1.6.0. This brings in Python 3.9.0rc1 for testing.
1959
+      release_summary: '| Release Date: 2020-09-07
1960
+
1961
+        | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
1962
+
1963
+        '
1964
+    codename: When the Levee Breaks
1965
+    fragments:
1966
+    - ansible-test-coverage-py26.yml
1967
+    - ansible-test-endpoint-update.yml
1968
+    - ansible-test-macos-10.15.yml
1969
+    - ansible-test-parallels-endpoint.yml
1970
+    - default-test-container160.yml
1971
+    - v2.10.1rc3_summary.yaml
1972
+    release_date: '2020-09-07'
1937 1973
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+release_summary: |
1
+   | Release Date: 2020-09-07
2
+   | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
... ...
@@ -19,6 +19,6 @@
19 19
 from __future__ import (absolute_import, division, print_function)
20 20
 __metaclass__ = type
21 21
 
22
-__version__ = '2.10.1rc2.post0'
22
+__version__ = '2.10.1rc3'
23 23
 __author__ = 'Ansible, Inc.'
24 24
 __codename__ = 'When the Levee Breaks'