From a87aefeda4bdc4a9eb184c50df979cbd658a8ded Mon Sep 17 00:00:00 2001 From: Matt Davis <6775756+nitzmahone@users.noreply.github.com> Date: Mon, 10 Jul 2023 20:52:05 +0200 Subject: [PATCH] New release v2.15.2rc1 (#81204) --- changelogs/CHANGELOG-v2.15.rst | 32 +++++++++++++++ changelogs/changelog.yaml | 43 +++++++++++++++++++++ changelogs/fragments/2.15.2rc1_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/2.15.2rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.15.rst b/changelogs/CHANGELOG-v2.15.rst index 1b9f59d76cf..f3175854c92 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.2rc1 +========== + +Release Summary +--------------- + +| Release Date: 2023-07-10 +| `Porting Guide `__ + + +Minor Changes +------------- + +- Utilize gpg check provided internally by the ``transaction.run`` method as oppose to calling it manually. +- ansible-test - Add Fedora 38 remote. +- ansible-test - Use a context manager to perform cleanup at exit instead of using the built-in ``atexit`` module. +- dnf5 - enable environment groups installation testing in CI as its support was added. +- dnf5 - enable now implemented ``cacheonly`` functionality + +Bugfixes +-------- + +- From issue https://github.com/ansible/ansible/issues/80880, when notifying a handler from another handler, handler notifications must be registered immediately as the flush_handler call is not recursive. +- ansible-galaxy - Fix issue installing collections containing directories with more than 100 characters on python versions before 3.10.6 +- paramiko_ssh, psrp, and ssh connection plugins - ensure that all values for options that should be strings are actually converted to strings (https://github.com/ansible/ansible/pull/81029). +- templating - In the template action and lookup, use local jinja2 environment overlay overrides instead of mutating the templars environment + +Known Issues +------------ + +- ansible-test - The Fedora 37 remote is known to occasionally hang during boot. It is no longer routinely tested as a result. If possible, use the Fedora 38 remote instead. + v2.15.1 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index c043a6d61db..78c36cd2e3c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -919,3 +919,46 @@ releases: - pep517-backend-traceback-fix.yml - update-maybe-json-uri.yml release_date: '2023-06-12' + 2.15.2rc1: + changes: + bugfixes: + - From issue https://github.com/ansible/ansible/issues/80880, when notifying + a handler from another handler, handler notifications must be registered immediately + as the flush_handler call is not recursive. + - ansible-galaxy - Fix issue installing collections containing directories with + more than 100 characters on python versions before 3.10.6 + - paramiko_ssh, psrp, and ssh connection plugins - ensure that all values for + options that should be strings are actually converted to strings (https://github.com/ansible/ansible/pull/81029). + - templating - In the template action and lookup, use local jinja2 environment + overlay overrides instead of mutating the templars environment + known_issues: + - ansible-test - The Fedora 37 remote is known to occasionally hang during boot. + It is no longer routinely tested as a result. If possible, use the Fedora + 38 remote instead. + minor_changes: + - Utilize gpg check provided internally by the ``transaction.run`` method as + oppose to calling it manually. + - ansible-test - Add Fedora 38 remote. + - ansible-test - Use a context manager to perform cleanup at exit instead of + using the built-in ``atexit`` module. + - dnf5 - enable environment groups installation testing in CI as its support + was added. + - dnf5 - enable now implemented ``cacheonly`` functionality + release_summary: '| Release Date: 2023-07-10 + + | `Porting Guide `__ + + ' + codename: Ten Years Gone + fragments: + - 2.15.2rc1_summary.yaml + - 80880-register-handlers-immediately-if-iterating-handlers.yml + - 81005-use-overlay-overrides.yml + - 81029-connection-types.yml + - ansible-test-atexit.yml + - ansible-test-fedora-38.yml + - dnf5-cacheonly.yml + - dnf5-gpg-check-builtin.yml + - dnf5-test-env-groups.yml + - long-collection-paths-fix.yml + release_date: '2023-07-10' diff --git a/changelogs/fragments/2.15.2rc1_summary.yaml b/changelogs/fragments/2.15.2rc1_summary.yaml new file mode 100644 index 00000000000..961de4016be --- /dev/null +++ b/changelogs/fragments/2.15.2rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2023-07-10 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 0d8f95f17eb..eff6ade327e 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.1.post0' +__version__ = '2.15.2rc1' __author__ = 'Ansible, Inc.' __codename__ = "Ten Years Gone"