New release v2.14.17rc1 (#83239)

pull/83243/head v2.14.17rc1
Matt Martz 7 months ago committed by GitHub
parent 63df21e9cb
commit 5997075665
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,6 +5,21 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics .. contents:: Topics
v2.14.17rc1
===========
Release Summary
---------------
| Release Date: 2024-05-13
| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
Bugfixes
--------
- ansible-test - Automatically enable the PyPI proxy for the ``centos7`` container to restore the ability to use ``pip`` in that container.
v2.14.16 v2.14.16
======== ========
@ -66,6 +81,7 @@ Bugfixes
-------- --------
- ``ansible-test sanity --test runtime-metadata`` - add ``action_plugin`` as a valid field for modules in the schema (https://github.com/ansible/ansible/pull/82562). - ``ansible-test sanity --test runtime-metadata`` - add ``action_plugin`` as a valid field for modules in the schema (https://github.com/ansible/ansible/pull/82562).
- ansible-galaxy role install - fix symlinks (https://github.com/ansible/ansible/issues/82702, https://github.com/ansible/ansible/issues/81965).
- ansible-galaxy role install - normalize tarfile paths and symlinks using ``ansible.utils.path.unfrackpath`` and consider them valid as long as the realpath is in the tarfile's role directory (https://github.com/ansible/ansible/issues/81965). - ansible-galaxy role install - normalize tarfile paths and symlinks using ``ansible.utils.path.unfrackpath`` and consider them valid as long as the realpath is in the tarfile's role directory (https://github.com/ansible/ansible/issues/81965).
- unsafe data - Enable directly using ``AnsibleUnsafeText`` with Python ``pathlib`` (https://github.com/ansible/ansible/issues/82414) - unsafe data - Enable directly using ``AnsibleUnsafeText`` with Python ``pathlib`` (https://github.com/ansible/ansible/issues/82414)

@ -1016,6 +1016,8 @@ releases:
bugfixes: bugfixes:
- '``ansible-test sanity --test runtime-metadata`` - add ``action_plugin`` as - '``ansible-test sanity --test runtime-metadata`` - add ``action_plugin`` as
a valid field for modules in the schema (https://github.com/ansible/ansible/pull/82562).' a valid field for modules in the schema (https://github.com/ansible/ansible/pull/82562).'
- ansible-galaxy role install - fix symlinks (https://github.com/ansible/ansible/issues/82702,
https://github.com/ansible/ansible/issues/81965).
- ansible-galaxy role install - normalize tarfile paths and symlinks using ``ansible.utils.path.unfrackpath`` - ansible-galaxy role install - normalize tarfile paths and symlinks using ``ansible.utils.path.unfrackpath``
and consider them valid as long as the realpath is in the tarfile's role directory and consider them valid as long as the realpath is in the tarfile's role directory
(https://github.com/ansible/ansible/issues/81965). (https://github.com/ansible/ansible/issues/81965).
@ -1102,6 +1104,21 @@ releases:
- 82574-ansible-test-ansible-doc-underscore.yml - 82574-ansible-test-ansible-doc-underscore.yml
- winrm-task-timeout.yml - winrm-task-timeout.yml
release_date: '2024-04-16' release_date: '2024-04-16'
2.14.17rc1:
changes:
bugfixes:
- ansible-test - Automatically enable the PyPI proxy for the ``centos7`` container
to restore the ability to use ``pip`` in that container.
release_summary: '| Release Date: 2024-05-13
| `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.17rc1_summary.yaml
- ansible-test-centos7-pypi-proxy.yml
release_date: '2024-05-13'
2.14.1rc1: 2.14.1rc1:
changes: changes:
bugfixes: bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2024-05-13
| `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) from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
__version__ = '2.14.16.post0' __version__ = '2.14.17rc1'
__author__ = 'Ansible, Inc.' __author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody" __codename__ = "C'mon Everybody"

Loading…
Cancel
Save