From 2c7e56732fed609a3dc5801549b30c93d1561508 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 25 Mar 2024 12:03:44 -0500 Subject: [PATCH] New release v2.15.10 (#82906) --- changelogs/CHANGELOG-v2.15.rst | 7 ++++--- changelogs/changelog.yaml | 15 +++++++++++++++ changelogs/fragments/2.15.10_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 changelogs/fragments/2.15.10_summary.yaml diff --git a/changelogs/CHANGELOG-v2.15.rst b/changelogs/CHANGELOG-v2.15.rst index d23ef95aed87e3..47bc69bc0f2435 100644 --- a/changelogs/CHANGELOG-v2.15.rst +++ b/changelogs/CHANGELOG-v2.15.rst @@ -5,13 +5,13 @@ ansible-core 2.15 "Ten Years Gone" Release Notes .. contents:: Topics -v2.15.10rc1 -=========== +v2.15.10 +======== Release Summary --------------- -| Release Date: 2024-03-18 +| Release Date: 2024-03-25 | `Porting Guide `__ @@ -24,6 +24,7 @@ Bugfixes -------- - Fix an issue when setting a plugin name from an unsafe source resulted in ``ValueError: unmarshallable object`` (https://github.com/ansible/ansible/issues/82708) +- ansible-test - The ``libexpat`` package is automatically upgraded during remote bootstrapping to maintain compatibility with newer Python packages. - winrm - does not hang when attempting to get process output when stdin write failed v2.15.9 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 6e79846845e39b..badf26c63609ce 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -868,6 +868,21 @@ releases: fragments: - 2.15.1_summary.yaml release_date: '2023-06-20' + 2.15.10: + changes: + bugfixes: + - ansible-test - The ``libexpat`` package is automatically upgraded during remote + bootstrapping to maintain compatibility with newer Python packages. + release_summary: '| Release Date: 2024-03-25 + + | `Porting Guide `__ + + ' + codename: Ten Years Gone + fragments: + - 2.15.10_summary.yaml + - ansible-test-alpine-libexpat.yml + release_date: '2024-03-25' 2.15.10rc1: changes: bugfixes: diff --git a/changelogs/fragments/2.15.10_summary.yaml b/changelogs/fragments/2.15.10_summary.yaml new file mode 100644 index 00000000000000..724379f0d575c2 --- /dev/null +++ b/changelogs/fragments/2.15.10_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2024-03-25 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index c22c91fc193898..b94e844f0d22f4 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.10rc1.post0' +__version__ = '2.15.10' __author__ = 'Ansible, Inc.' __codename__ = "Ten Years Gone"