Skip to content

Commit

Permalink
New release v2.14.7rc1 (#81035)
Browse files Browse the repository at this point in the history
  • Loading branch information
sivel committed Jun 12, 2023
1 parent b06c10b commit 9d262f1
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 1 deletion.
23 changes: 23 additions & 0 deletions changelogs/CHANGELOG-v2.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=======

Expand Down
27 changes: 27 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
3 changes: 3 additions & 0 deletions changelogs/fragments/2.14.7rc1_summary.yaml
Original file line number Diff line number Diff line change
@@ -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>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 9d262f1

Please sign in to comment.