summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-09-28 11:54:17 -0500
committerRick Elrod <rick@elrod.me>2020-09-28 11:54:17 -0500
commit68f0fcfbd56cbcc1cbc4f77519b57eed6085b3cc (patch)
treeb51aa8b2f0421db8f2fcc6442c6e04c337e6a3e2
parent8e00447aefa7f585f6d17ce8e8e0e820fb48f348 (diff)
downloadansible-2.10.2rc1.tar.gz
New release v2.10.2rc1v2.10.2rc1
-rw-r--r--changelogs/CHANGELOG-v2.10.rst27
-rw-r--r--changelogs/changelog.yaml37
-rw-r--r--changelogs/fragments/v2.10.2rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 68 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst
index 0525568b48..72f584eb8e 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 <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
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index c318974db8..bdf10d3984 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
+ ``<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'
diff --git a/changelogs/fragments/v2.10.2rc1_summary.yaml b/changelogs/fragments/v2.10.2rc1_summary.yaml
new file mode 100644
index 0000000000..0a0d22bb5b
--- /dev/null
+++ b/changelogs/fragments/v2.10.2rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-09-28
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 45dfea6650..55e1f10b80 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'