New release v2.10.2rc1

This commit is contained in:
Rick Elrod 2020-09-28 11:54:17 -05:00
parent 8e00447aef
commit 68f0fcfbd5
4 changed files with 68 additions and 1 deletions

View file

@ -5,6 +5,33 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
v2.10.2rc1
==========
Release Summary
---------------
| Release Date: 2020-09-28
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
Minor Changes
-------------
- ansible-test - Raise the number of bytes scanned by ansible-test to determine if a file is binary to 4096.
Bugfixes
--------
- Pass the connection's timeout to connection plugins instead of the task's timeout.
- Provide more information in AnsibleUndefinedVariable (https://github.com/ansible/ansible/issues/55152)
- ansible-doc - properly show plugin name when ``name:`` is used instead of ``<plugin_type>:`` (https://github.com/ansible/ansible/pull/71966).
- ansible-test - Change classification using ``--changed`` now consistently handles common configuration files for supported CI providers.
- ansible-test - The ``resource_prefix`` variable provided to tests running on Azure Pipelines is now converted to lowercase to match other CI providers.
- collection loader - fix bogus code coverage entries for synthetic packages
- psrp - Fix hang when copying an empty file to the remote target
- runas - create a new token when running as ``SYSTEM`` to ensure it has the full privileges assigned to that account
v2.10.1
=======

View file

@ -1981,3 +1981,40 @@ releases:
- default-test-container160.yml
- v2.10.1rc3_summary.yaml
release_date: '2020-09-07'
2.10.2rc1:
changes:
bugfixes:
- Pass the connection's timeout to connection plugins instead of the task's
timeout.
- Provide more information in AnsibleUndefinedVariable (https://github.com/ansible/ansible/issues/55152)
- ansible-doc - properly show plugin name when ``name:`` is used instead of
``<plugin_type>:`` (https://github.com/ansible/ansible/pull/71966).
- ansible-test - Change classification using ``--changed`` now consistently
handles common configuration files for supported CI providers.
- ansible-test - The ``resource_prefix`` variable provided to tests running
on Azure Pipelines is now converted to lowercase to match other CI providers.
- collection loader - fix bogus code coverage entries for synthetic packages
- psrp - Fix hang when copying an empty file to the remote target
- runas - create a new token when running as ``SYSTEM`` to ensure it has the
full privileges assigned to that account
minor_changes:
- ansible-test - Raise the number of bytes scanned by ansible-test to determine
if a file is binary to 4096.
release_summary: '| Release Date: 2020-09-28
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
codename: When the Levee Breaks
fragments:
- 55152-add-more-info-to-AnsibleUndefinedVariable.yml
- 71722-fix-default-connection-timeout.yaml
- 71921-raise-bytes-for-binary-test.yml
- 71966-ansible-doc-plugin-name.yml
- ansible-test-azp-resource-prefix.yml
- ansible-test-change-classification.yml
- fix_bogus_coverage.yml
- psrp-copy-empty-file.yml
- runas-become-system-privileges.yml
- v2.10.2rc1_summary.yaml
release_date: '2020-09-28'

View file

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