New release v2.14.13 (#82401)

pull/82402/head v2.14.13
Matt Martz 12 months ago committed by GitHub
parent 49c05da2d2
commit d921f2206c
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.13
========
Release Summary
---------------
| Release Date: 2023-12-11
| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
Minor Changes
-------------
- ansible-test - Add FreeBSD 13.2 remote.
- ansible-test - Removed `freebsd/13.1` remote.
Bugfixes
--------
- unsafe data - Address an incompatibility when iterating or getting a single index from ``AnsibleUnsafeBytes``
- unsafe data - Address an incompatibility with ``AnsibleUnsafeText`` and ``AnsibleUnsafeBytes`` when pickling with ``protocol=0``
v2.14.12
========

@ -978,6 +978,28 @@ releases:
- cve-2023-5764.yml
- pull_unfrack_dest.yml
release_date: '2023-11-27'
2.14.13:
changes:
bugfixes:
- unsafe data - Address an incompatibility when iterating or getting a single
index from ``AnsibleUnsafeBytes``
- unsafe data - Address an incompatibility with ``AnsibleUnsafeText`` and ``AnsibleUnsafeBytes``
when pickling with ``protocol=0``
minor_changes:
- ansible-test - Add FreeBSD 13.2 remote.
- ansible-test - Removed `freebsd/13.1` remote.
release_summary: '| Release Date: 2023-12-11
| `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.13_summary.yaml
- ci_freebsd_new.yml
- fbsd13_1_remove.yml
- unsafe-fixes-2.yml
release_date: '2023-12-11'
2.14.1rc1:
changes:
bugfixes:

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

Loading…
Cancel
Save