mirror of
https://github.com/ansible/ansible.git
synced 2026-08-03 08:03:05 +02:00
New release v2.16.3rc1 (#82587)
This commit is contained in:
@@ -5,6 +5,36 @@ ansible-core 2.16 "All My Love" Release Notes
|
|||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v2.16.3rc1
|
||||||
|
==========
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
| Release Date: 2024-01-22
|
||||||
|
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__
|
||||||
|
|
||||||
|
|
||||||
|
Security Fixes
|
||||||
|
--------------
|
||||||
|
|
||||||
|
- ANSIBLE_NO_LOG - Address issue where ANSIBLE_NO_LOG was ignored (CVE-2024-0690)
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Run all handlers with the same ``listen`` topic, even when notified from another handler (https://github.com/ansible/ansible/issues/82363).
|
||||||
|
- ``ansible-galaxy role import`` - fix using the ``role_name`` in a standalone role's ``galaxy_info`` metadata by disabling automatic removal of the ``ansible-role-`` prefix. This matches the behavior of the Galaxy UI which also no longer implicitly removes the ``ansible-role-`` prefix. Use the ``--role-name`` option or add a ``role_name`` to the ``galaxy_info`` dictionary in the role's ``meta/main.yml`` to use an alternate role name.
|
||||||
|
- ``ansible-test sanity --test runtime-metadata`` - add ``action_plugin`` as a valid field for modules in the schema (https://github.com/ansible/ansible/pull/82562).
|
||||||
|
- ansible-config init will now dedupe ini entries from plugins.
|
||||||
|
- ansible-galaxy role import - exit with 1 when the import fails (https://github.com/ansible/ansible/issues/82175).
|
||||||
|
- ansible-galaxy role install - normalize tarfile paths and symlinks using ``ansible.utils.path.unfrackpath`` and consider them valid as long as the realpath is in the tarfile's role directory (https://github.com/ansible/ansible/issues/81965).
|
||||||
|
- delegate_to when set to an empty or undefined variable will now give a proper error.
|
||||||
|
- dwim functions for lookups should be better at detectging role context even in abscense of tasks/main.
|
||||||
|
- roles, code cleanup and performance optimization of dependencies, now cached, and ``public`` setting is now determined once, at role instantiation.
|
||||||
|
- roles, the ``static`` property is now correctly set, this will fix issues with ``public`` and ``DEFAULT_PRIVATE_ROLE_VARS`` controls on exporting vars.
|
||||||
|
- unsafe data - Enable directly using ``AnsibleUnsafeText`` with Python ``pathlib`` (https://github.com/ansible/ansible/issues/82414)
|
||||||
|
|
||||||
v2.16.2
|
v2.16.2
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|||||||
@@ -839,3 +839,53 @@ releases:
|
|||||||
- 2.16.2_summary.yaml
|
- 2.16.2_summary.yaml
|
||||||
- unsafe-fixes-2.yml
|
- unsafe-fixes-2.yml
|
||||||
release_date: '2023-12-11'
|
release_date: '2023-12-11'
|
||||||
|
2.16.3rc1:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- Run all handlers with the same ``listen`` topic, even when notified from another
|
||||||
|
handler (https://github.com/ansible/ansible/issues/82363).
|
||||||
|
- '``ansible-galaxy role import`` - fix using the ``role_name`` in a standalone
|
||||||
|
role''s ``galaxy_info`` metadata by disabling automatic removal of the ``ansible-role-``
|
||||||
|
prefix. This matches the behavior of the Galaxy UI which also no longer implicitly
|
||||||
|
removes the ``ansible-role-`` prefix. Use the ``--role-name`` option or add
|
||||||
|
a ``role_name`` to the ``galaxy_info`` dictionary in the role''s ``meta/main.yml``
|
||||||
|
to use an alternate role name.'
|
||||||
|
- '``ansible-test sanity --test runtime-metadata`` - add ``action_plugin`` as
|
||||||
|
a valid field for modules in the schema (https://github.com/ansible/ansible/pull/82562).'
|
||||||
|
- ansible-config init will now dedupe ini entries from plugins.
|
||||||
|
- ansible-galaxy role import - exit with 1 when the import fails (https://github.com/ansible/ansible/issues/82175).
|
||||||
|
- ansible-galaxy role install - normalize tarfile paths and symlinks using ``ansible.utils.path.unfrackpath``
|
||||||
|
and consider them valid as long as the realpath is in the tarfile's role directory
|
||||||
|
(https://github.com/ansible/ansible/issues/81965).
|
||||||
|
- delegate_to when set to an empty or undefined variable will now give a proper
|
||||||
|
error.
|
||||||
|
- dwim functions for lookups should be better at detectging role context even
|
||||||
|
in abscense of tasks/main.
|
||||||
|
- roles, code cleanup and performance optimization of dependencies, now cached, and
|
||||||
|
``public`` setting is now determined once, at role instantiation.
|
||||||
|
- roles, the ``static`` property is now correctly set, this will fix issues
|
||||||
|
with ``public`` and ``DEFAULT_PRIVATE_ROLE_VARS`` controls on exporting vars.
|
||||||
|
- unsafe data - Enable directly using ``AnsibleUnsafeText`` with Python ``pathlib``
|
||||||
|
(https://github.com/ansible/ansible/issues/82414)
|
||||||
|
release_summary: '| Release Date: 2024-01-22
|
||||||
|
|
||||||
|
| `Porting Guide <https://docs.ansible.com/ansible-core/2.16/porting_guides/porting_guide_core_2.16.html>`__
|
||||||
|
|
||||||
|
'
|
||||||
|
security_fixes:
|
||||||
|
- ANSIBLE_NO_LOG - Address issue where ANSIBLE_NO_LOG was ignored (CVE-2024-0690)
|
||||||
|
codename: All My Love
|
||||||
|
fragments:
|
||||||
|
- 2.16.3rc1_summary.yaml
|
||||||
|
- 82175-fix-ansible-galaxy-role-import-rc.yml
|
||||||
|
- 82363-multiple-handlers-with-recursive-notification.yml
|
||||||
|
- ansible-galaxy-role-install-symlink.yml
|
||||||
|
- cve-2024-0690.yml
|
||||||
|
- dedupe_config_init.yml
|
||||||
|
- delegate_to_invalid.yml
|
||||||
|
- dwim_is_role_fix.yml
|
||||||
|
- fix-default-ansible-galaxy-role-import-name.yml
|
||||||
|
- fix-runtime-metadata-modules-action_plugin.yml
|
||||||
|
- role_fixes.yml
|
||||||
|
- unsafe-intern.yml
|
||||||
|
release_date: '2024-01-22'
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
release_summary: |
|
||||||
|
| Release Date: 2024-01-22
|
||||||
|
| `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)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
__version__ = '2.16.2.post0'
|
__version__ = '2.16.3rc1'
|
||||||
__author__ = 'Ansible, Inc.'
|
__author__ = 'Ansible, Inc.'
|
||||||
__codename__ = "All My Love"
|
__codename__ = "All My Love"
|
||||||
|
|||||||
Reference in New Issue
Block a user