summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2023-12-11 14:48:39 -0600
committerGitHub <noreply@github.com>2023-12-11 14:48:39 -0600
commitd921f2206c52a0abc550d35c7f2da920b13e0625 (patch)
tree4f883993d4d3af48ce35fdccf700d782c22e073e
parent49c05da2d2c259b7d00276aa71579c95bf17cec0 (diff)
downloadansible-d921f2206c52a0abc550d35c7f2da920b13e0625.zip
New release v2.14.13 (#82401)v2.14.13
-rw-r--r--changelogs/CHANGELOG-v2.14.rst22
-rw-r--r--changelogs/changelog.yaml22
-rw-r--r--changelogs/fragments/2.14.13_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 48 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index c8bf930de7..41be1326a0 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -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
========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 6ac7a54a7e..97eb4c1395 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -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:
diff --git a/changelogs/fragments/2.14.13_summary.yaml b/changelogs/fragments/2.14.13_summary.yaml
new file mode 100644
index 0000000000..23757cac78
--- /dev/null
+++ b/changelogs/fragments/2.14.13_summary.yaml
@@ -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>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 0600c99052..5fc1bde140 100644
--- a/lib/ansible/release.py
+++ b/lib/ansible/release.py
@@ -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"