Skip to content

Commit bdd8cbb

Browse files
authored
New release v2.16.14rc1 (#84388)
1 parent c817156 commit bdd8cbb

File tree

5 files changed

+43
-2
lines changed

5 files changed

+43
-2
lines changed

changelogs/CHANGELOG-v2.16.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ ansible-core 2.16 "All My Love" Release Notes
55
.. contents:: Topics
66

77

8+
v2.16.14rc1
9+
===========
10+
11+
Release Summary
12+
---------------
13+
14+
| Release Date: 2024-11-25
15+
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__
16+
17+
18+
Security Fixes
19+
--------------
20+
21+
- Templating will not prefer AnsibleUnsafe when a variable is referenced via hostvars - CVE-2024-11079
22+
23+
Bugfixes
24+
--------
25+
26+
- ansible-test - Fix traceback that occurs after an interactive command fails.
27+
828
v2.16.13
929
========
1030

changelogs/changelog.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -953,6 +953,24 @@ releases:
953953
- skip-implicit-flush_handlers-no-notify.yml
954954
- user_ssh_fix.yml
955955
release_date: '2024-10-29'
956+
2.16.14rc1:
957+
changes:
958+
bugfixes:
959+
- ansible-test - Fix traceback that occurs after an interactive command fails.
960+
release_summary: '| Release Date: 2024-11-25
961+
962+
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__
963+
964+
'
965+
security_fixes:
966+
- Templating will not prefer AnsibleUnsafe when a variable is referenced via
967+
hostvars - CVE-2024-11079
968+
codename: All My Love
969+
fragments:
970+
- 2.16.14rc1_summary.yaml
971+
- ansible-test-fix-command-traceback.yml
972+
- unsafe_hostvars_fix.yml
973+
release_date: '2024-11-25'
956974
2.16.1rc1:
957975
changes:
958976
breaking_changes:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
release_summary: |
2+
| Release Date: 2024-11-25
3+
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__

lib/ansible/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
from __future__ import (absolute_import, division, print_function)
2020
__metaclass__ = type
2121

22-
__version__ = '2.16.13.post0'
22+
__version__ = '2.16.14rc1'
2323
__author__ = 'Ansible, Inc.'
2424
__codename__ = "All My Love"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["setuptools >= 66.1.0, <= 75.3.0"] # lower bound to support controller Python versions, upper bound for latest version tested at release
2+
requires = ["setuptools >= 66.1.0, <= 75.6.0"] # lower bound to support controller Python versions, upper bound for latest version tested at release
33
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)