From 68f0fcfbd56cbcc1cbc4f77519b57eed6085b3cc Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Mon, 28 Sep 2020 11:54:17 -0500 Subject: [PATCH] New release v2.10.2rc1 --- changelogs/CHANGELOG-v2.10.rst | 27 ++++++++++++++ changelogs/changelog.yaml | 37 ++++++++++++++++++++ changelogs/fragments/v2.10.2rc1_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.10.2rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst index 0525568b483..72f584eb8e3 100644 --- a/changelogs/CHANGELOG-v2.10.rst +++ b/changelogs/CHANGELOG-v2.10.rst @@ -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 `__ + + +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 ``:`` (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 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index c318974db84..bdf10d39842 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -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 + ``:`` (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 `__ + + ' + 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' diff --git a/changelogs/fragments/v2.10.2rc1_summary.yaml b/changelogs/fragments/v2.10.2rc1_summary.yaml new file mode 100644 index 00000000000..0a0d22bb5b5 --- /dev/null +++ b/changelogs/fragments/v2.10.2rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2020-09-28 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 45dfea66506..55e1f10b805 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.1.post0' +__version__ = '2.10.2rc1' __author__ = 'Ansible, Inc.' __codename__ = 'When the Levee Breaks'