New release v2.16.14rc1 (#84388)

pull/84391/head v2.16.14rc1
Matt Martz 1 year ago committed by GitHub
parent c817156b7c
commit bdd8cbbd46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,6 +5,26 @@ ansible-core 2.16 "All My Love" Release Notes
.. contents:: Topics
v2.16.14rc1
===========
Release Summary
---------------
| Release Date: 2024-11-25
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__
Security Fixes
--------------
- Templating will not prefer AnsibleUnsafe when a variable is referenced via hostvars - CVE-2024-11079
Bugfixes
--------
- ansible-test - Fix traceback that occurs after an interactive command fails.
v2.16.13
========

@ -953,6 +953,24 @@ releases:
- skip-implicit-flush_handlers-no-notify.yml
- user_ssh_fix.yml
release_date: '2024-10-29'
2.16.14rc1:
changes:
bugfixes:
- ansible-test - Fix traceback that occurs after an interactive command fails.
release_summary: '| Release Date: 2024-11-25
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__
'
security_fixes:
- Templating will not prefer AnsibleUnsafe when a variable is referenced via
hostvars - CVE-2024-11079
codename: All My Love
fragments:
- 2.16.14rc1_summary.yaml
- ansible-test-fix-command-traceback.yml
- unsafe_hostvars_fix.yml
release_date: '2024-11-25'
2.16.1rc1:
changes:
breaking_changes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2024-11-25
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.16.13.post0'
__version__ = '2.16.14rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "All My Love"

@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools >= 66.1.0, <= 75.3.0"] # lower bound to support controller Python versions, upper bound for latest version tested at release
requires = ["setuptools >= 66.1.0, <= 75.6.0"] # lower bound to support controller Python versions, upper bound for latest version tested at release
build-backend = "setuptools.build_meta"

Loading…
Cancel
Save