Skip to content

Commit

Permalink
New release v2.16.14rc1 (#84388)
Browse files Browse the repository at this point in the history
  • Loading branch information
sivel authored Nov 25, 2024
1 parent c817156 commit bdd8cbb
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 2 deletions.
20 changes: 20 additions & 0 deletions changelogs/CHANGELOG-v2.16.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
========

Expand Down
18 changes: 18 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions changelogs/fragments/2.16.14rc1_summary.yaml
Original file line number Diff line number Diff line change
@@ -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>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit bdd8cbb

Please sign in to comment.