New release v2.14.7rc1 (#81035)

pull/81038/head v2.14.7rc1
Matt Martz 1 year ago committed by GitHub
parent b06c10b1ed
commit 9d262f177f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
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 <branch> HEAD`` instead of ``git merge-base --fork-point <branch>`` (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
=======

@ -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 <branch> HEAD``
instead of ``git merge-base --fork-point <branch>`` (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 <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
'
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'

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2023-06-12
| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__

@ -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"

Loading…
Cancel
Save