From a8e3306e9ead002162e2b48a816d46efc37340ad Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 18 Mar 2024 12:29:07 -0500 Subject: [PATCH] New release v2.14.15rc1 (#82837) --- changelogs/CHANGELOG-v2.14.rst | 20 ++++++++++++++++++++ changelogs/changelog.yaml | 19 +++++++++++++++++++ changelogs/fragments/2.14.15rc1_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/2.14.15rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst index 3b495a88247..b0732b325a6 100644 --- a/changelogs/CHANGELOG-v2.14.rst +++ b/changelogs/CHANGELOG-v2.14.rst @@ -5,6 +5,26 @@ ansible-core 2.14 "C'mon Everybody" Release Notes .. contents:: Topics +v2.14.15rc1 +=========== + +Release Summary +--------------- + +| Release Date: 2024-03-18 +| `Porting Guide `__ + + +Minor Changes +------------- + +- ansible-test - Add a work-around for permission denied errors when using ``pytest >= 8`` on multi-user systems with an installed version of ``ansible-test``. + +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) + v2.14.14 ======== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 61314a8bee8..e72abbfbb12 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1039,6 +1039,25 @@ releases: - freebsd_12_4_removal.yml - unsafe-intern.yml release_date: '2024-01-22' + 2.14.15rc1: + changes: + 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)' + minor_changes: + - ansible-test - Add a work-around for permission denied errors when using ``pytest + >= 8`` on multi-user systems with an installed version of ``ansible-test``. + release_summary: '| Release Date: 2024-03-18 + + | `Porting Guide `__ + + ' + codename: C'mon Everybody + fragments: + - 2.14.15rc1_summary.yaml + - 82708-unsafe-plugin-name-error.yml + - ansible-test-pytest-8.yml + release_date: '2024-03-18' 2.14.1rc1: changes: bugfixes: diff --git a/changelogs/fragments/2.14.15rc1_summary.yaml b/changelogs/fragments/2.14.15rc1_summary.yaml new file mode 100644 index 00000000000..a12a567aae8 --- /dev/null +++ b/changelogs/fragments/2.14.15rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2024-03-18 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 4f39f21fa70..7756bf43409 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.14.14.post0' +__version__ = '2.14.15rc1' __author__ = 'Ansible, Inc.' __codename__ = "C'mon Everybody"