From 9d262f177f1fc53c96c5cdaacdef0f8b255b9e39 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 12 Jun 2023 12:43:49 -0500 Subject: [PATCH] New release v2.14.7rc1 (#81035) --- changelogs/CHANGELOG-v2.14.rst | 23 ++++++++++++++++++ changelogs/changelog.yaml | 27 +++++++++++++++++++++ changelogs/fragments/2.14.7rc1_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/2.14.7rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst index 51436b14642..d86f315b5f7 100644 --- a/changelogs/CHANGELOG-v2.14.rst +++ b/changelogs/CHANGELOG-v2.14.rst @@ -5,6 +5,29 @@ ansible-core 2.14 "C'mon Everybody" Release Notes .. contents:: Topics +v2.14.7rc1 +========== + +Release Summary +--------------- + +| Release Date: 2023-06-12 +| `Porting Guide `__ + + +Minor Changes +------------- + +- Removed ``straight.plugin`` from the build and packaging requirements. + +Bugfixes +-------- + +- 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 local change detection - use ``git merge-base HEAD`` instead of ``git merge-base --fork-point `` (https://github.com/ansible/ansible/pull/79734). +- man page build - Remove the dependency on the ``docs`` directory for building man pages. +- uri - fix search for JSON type to include complex strings containing '+' + v2.14.6 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 18bf7b134fb..85d39e93bee 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1304,3 +1304,30 @@ releases: - ansible-test-utcnow.yml - pep517-backend-traceback-fix.yml release_date: '2023-05-15' + 2.14.7rc1: + changes: + bugfixes: + - 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 local change detection - use ``git merge-base HEAD`` + instead of ``git merge-base --fork-point `` (https://github.com/ansible/ansible/pull/79734). + - man page build - Remove the dependency on the ``docs`` directory for building + man pages. + - uri - fix search for JSON type to include complex strings containing '+' + minor_changes: + - Removed ``straight.plugin`` from the build and packaging requirements. + release_summary: '| Release Date: 2023-06-12 + + | `Porting Guide `__ + + ' + codename: C'mon Everybody + fragments: + - 2.14.7rc1_summary.yaml + - 79734-ansible-test-change-detection.yml + - ansible-test-source-detection.yml + - build-no-straight.yaml + - man-page-build-docs-dependency.yml + - update-maybe-json-uri.yml + release_date: '2023-06-12' diff --git a/changelogs/fragments/2.14.7rc1_summary.yaml b/changelogs/fragments/2.14.7rc1_summary.yaml new file mode 100644 index 00000000000..5e277712409 --- /dev/null +++ b/changelogs/fragments/2.14.7rc1_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 f1b4e73205d..2d876c44269 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.6.post0' +__version__ = '2.14.7rc1' __author__ = 'Ansible, Inc.' __codename__ = "C'mon Everybody"