From de8eb8711018529fbecf696ba6f42b5ead054ff2 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 12 Jun 2023 12:43:54 -0500 Subject: [PATCH] New release v2.15.1rc1 (#81036) --- changelogs/CHANGELOG-v2.15.rst | 32 +++++++++++++ changelogs/changelog.yaml | 51 +++++++++++++++++++++ changelogs/fragments/2.15.1rc1_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/2.15.1rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.15.rst b/changelogs/CHANGELOG-v2.15.rst index fc2d066edf4..1ad9bfceae2 100644 --- a/changelogs/CHANGELOG-v2.15.rst +++ b/changelogs/CHANGELOG-v2.15.rst @@ -5,6 +5,38 @@ ansible-core 2.15 "Ten Years Gone" Release Notes .. contents:: Topics +v2.15.1rc1 +========== + +Release Summary +--------------- + +| Release Date: 2023-06-12 +| `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 +-------- + +- Properly disable ``jinja2_native`` in the template module when jinja2 override is used in the template (https://github.com/ansible/ansible/issues/80605) +- ansible-galaxy - Fix variable type error when installing subdir collections (https://github.com/ansible/ansible/issues/80943) +- ansible-test - Fix a traceback that occurs when attempting to test Ansible source using a different ansible-test. A clear error message is now given when this scenario occurs. +- 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 local change detection - use ``git merge-base HEAD`` instead of ``git merge-base --fork-point `` (https://github.com/ansible/ansible/pull/79734). +- deb822_repository - use http-agent for receiving content (https://github.com/ansible/ansible/issues/80809). +- dnf5 - Update dnf5 module to handle API change for setting the download directory (https://github.com/ansible/ansible/issues/80887) +- man page build - Remove the dependency on the ``docs`` directory for building man pages. +- 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. +- uri - fix search for JSON type to include complex strings containing '+' + v2.15.0 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index f002376665d..a8f3f453244 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -857,3 +857,54 @@ releases: - ansible-test-minimum-setuptools.yml - fix-setuptools-warnings.yml release_date: '2023-05-01' + 2.15.1rc1: + changes: + bugfixes: + - Properly disable ``jinja2_native`` in the template module when jinja2 override + is used in the template (https://github.com/ansible/ansible/issues/80605) + - ansible-galaxy - Fix variable type error when installing subdir collections + (https://github.com/ansible/ansible/issues/80943) + - ansible-test - Fix a traceback that occurs when attempting to test Ansible + source using a different ansible-test. A clear error message is now given + when this scenario occurs. + - 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 local change detection - use ``git merge-base HEAD`` + instead of ``git merge-base --fork-point `` (https://github.com/ansible/ansible/pull/79734). + - deb822_repository - use http-agent for receiving content (https://github.com/ansible/ansible/issues/80809). + - dnf5 - Update dnf5 module to handle API change for setting the download directory + (https://github.com/ansible/ansible/issues/80887) + - man page build - Remove the dependency on the ``docs`` directory for building + man pages. + - 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. + - uri - fix search for JSON type to include complex strings containing '+' + 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-06-12 + + | `Porting Guide `__ + + ' + codename: Ten Years Gone + fragments: + - 2.15.1rc1_summary.yaml + - 79734-ansible-test-change-detection.yml + - 80605-template-overlay-native-jinja.yml + - 80887-dnf5-api-change.yml + - 80943-ansible-galaxy-collection-subdir-install.yml + - ansible-test-long-timeout-fix.yml + - ansible-test-source-detection.yml + - ansible-test-timeout-fix.yml + - ansible-test-utcnow.yml + - deb822_open_url.yml + - man-page-build-docs-dependency.yml + - pep517-backend-traceback-fix.yml + - update-maybe-json-uri.yml + release_date: '2023-06-12' diff --git a/changelogs/fragments/2.15.1rc1_summary.yaml b/changelogs/fragments/2.15.1rc1_summary.yaml new file mode 100644 index 00000000000..53c8e593837 --- /dev/null +++ b/changelogs/fragments/2.15.1rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2023-06-12 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 55d53714716..95b7da1ca42 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.15.0.post0' +__version__ = '2.15.1rc1' __author__ = 'Ansible, Inc.' __codename__ = "Ten Years Gone"