From e69ca3420c2b7ddf78507b53aca7a573a06c29a5 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 15 May 2023 12:34:18 -0500 Subject: New release v2.13.10rc1 (#80797) --- changelogs/CHANGELOG-v2.13.rst | 27 +++++++++++++++++++++ changelogs/changelog.yaml | 35 ++++++++++++++++++++++++++++ changelogs/fragments/2.13.10rc1_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/2.13.10rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst index 124069d50a..90b4058f07 100644 --- a/changelogs/CHANGELOG-v2.13.rst +++ b/changelogs/CHANGELOG-v2.13.rst @@ -5,6 +5,33 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes .. contents:: Topics +v2.13.10rc1 +=========== + +Release Summary +--------------- + +| Release Date: 2023-05-15 +| `Porting Guide `__ + + +Minor Changes +------------- + +- ansible-test - Allow float values for the ``--timeout`` option to the ``env`` command. This simplifies testing. +- ansible-test - Refactored ``env`` command logic and timeout handling. +- ansible-test - Use ``datetime.datetime.now`` with ``tz`` specified instead of ``datetime.datetime.utcnow``. + +Bugfixes +-------- + +- ansible-galaxy - fix installing signed collections (https://github.com/ansible/ansible/issues/80648). +- ansible-galaxy collection verify - fix verifying signed collections when the keyring is not configured. +- ansible-test - Fix handling of timeouts exceeding one day. +- ansible-test - Fix various cases where the test timeout could expire without terminating the tests. +- ansible-test - When bootstrapping remote FreeBSD instances, use the OS packaged ``setuptools`` instead of installing the latest version from PyPI. +- pep517 build backend - Copy symlinks when copying the source tree. This avoids tracebacks in various scenarios, such as when a venv is present in the source tree. + v2.13.9 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 1042e1d426..363982ba18 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -780,6 +780,41 @@ releases: fragments: - v2.13.1_summary.yaml release_date: '2022-06-20' + 2.13.10rc1: + changes: + bugfixes: + - ansible-galaxy - fix installing signed collections (https://github.com/ansible/ansible/issues/80648). + - ansible-galaxy collection verify - fix verifying signed collections when the + keyring is not configured. + - ansible-test - Fix handling of timeouts exceeding one day. + - ansible-test - Fix various cases where the test timeout could expire without + terminating the tests. + - ansible-test - When bootstrapping remote FreeBSD instances, use the OS packaged + ``setuptools`` instead of installing the latest version from PyPI. + - pep517 build backend - Copy symlinks when copying the source tree. This avoids + tracebacks in various scenarios, such as when a venv is present in the source + tree. + minor_changes: + - ansible-test - Allow float values for the ``--timeout`` option to the ``env`` + command. This simplifies testing. + - ansible-test - Refactored ``env`` command logic and timeout handling. + - ansible-test - Use ``datetime.datetime.now`` with ``tz`` specified instead + of ``datetime.datetime.utcnow``. + release_summary: '| Release Date: 2023-05-15 + + | `Porting Guide `__ + + ' + codename: Nobody's Fault but Mine + fragments: + - 2.13.10rc1_summary.yaml + - 80648-fix-ansible-galaxy-cache-signatures-bug.yml + - ansible-test-freebsd-bootstrap-setuptools.yml + - ansible-test-long-timeout-fix.yml + - ansible-test-timeout-fix.yml + - ansible-test-utcnow.yml + - pep517-backend-traceback-fix.yml + release_date: '2023-05-15' 2.13.1rc1: changes: bugfixes: diff --git a/changelogs/fragments/2.13.10rc1_summary.yaml b/changelogs/fragments/2.13.10rc1_summary.yaml new file mode 100644 index 0000000000..b84c8fede6 --- /dev/null +++ b/changelogs/fragments/2.13.10rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2023-05-15 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 4f4bbe5640..a739f6fb0f 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.13.9.post0' +__version__ = '2.13.10rc1' __author__ = 'Ansible, Inc.' __codename__ = "Nobody's Fault but Mine" -- cgit v1.2.1