New release v2.14.8rc1 (#81205)

pull/81210/head v2.14.8rc1
Matt Davis 3 years ago committed by GitHub
parent 5cd02deacf
commit ec2fb0da49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,28 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
v2.14.8rc1
==========
Release Summary
---------------
| Release Date: 2023-07-10
| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
Minor Changes
-------------
- Cache field attributes list on the playbook classes
- Playbook objects - Replace deprecated stacked ``@classmethod`` and ``@property``
- ansible-test - Use a context manager to perform cleanup at exit instead of using the built-in ``atexit`` module.
Bugfixes
--------
- ansible-galaxy - Fix issue installing collections containing directories with more than 100 characters on python versions before 3.10.6
v2.14.7
=======

@ -1342,3 +1342,26 @@ releases:
- man-page-build-docs-dependency.yml
- update-maybe-json-uri.yml
release_date: '2023-06-12'
2.14.8rc1:
changes:
bugfixes:
- ansible-galaxy - Fix issue installing collections containing directories with
more than 100 characters on python versions before 3.10.6
minor_changes:
- Cache field attributes list on the playbook classes
- Playbook objects - Replace deprecated stacked ``@classmethod`` and ``@property``
- ansible-test - Use a context manager to perform cleanup at exit instead of
using the built-in ``atexit`` module.
release_summary: '| Release Date: 2023-07-10
| `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.8rc1_summary.yaml
- ansible-test-atexit.yml
- cache-fa-on-pb-cls.yml
- long-collection-paths-fix.yml
- no-stacked-descriptors.yaml
release_date: '2023-07-10'

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2023-07-10
| `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.7.post0'
__version__ = '2.14.8rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"

Loading…
Cancel
Save