diff --git a/changelogs/CHANGELOG-v2.15.rst b/changelogs/CHANGELOG-v2.15.rst index 2b29ed4dea3..c8bfa7dd49a 100644 --- a/changelogs/CHANGELOG-v2.15.rst +++ b/changelogs/CHANGELOG-v2.15.rst @@ -5,6 +5,36 @@ ansible-core 2.15 "Ten Years Gone" Release Notes .. contents:: Topics +v2.15.9rc1 +========== + +Release Summary +--------------- + +| Release Date: 2024-01-22 +| `Porting Guide `__ + + +Minor Changes +------------- + +- ansible-test - Removed `freebsd/12.4` remote. + +Security Fixes +-------------- + +- ANSIBLE_NO_LOG - Address issue where ANSIBLE_NO_LOG was ignored (CVE-2024-0690) + +Bugfixes +-------- + +- ``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 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. +- unsafe data - Enable directly using ``AnsibleUnsafeText`` with Python ``pathlib`` (https://github.com/ansible/ansible/issues/82414) + v2.15.8 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 4fb83c12587..add3544e64c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1297,3 +1297,43 @@ releases: - fbsd13_1_remove.yml - unsafe-fixes-2.yml release_date: '2023-12-11' + 2.15.9rc1: + changes: + bugfixes: + - '``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 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. + - unsafe data - Enable directly using ``AnsibleUnsafeText`` with Python ``pathlib`` + (https://github.com/ansible/ansible/issues/82414) + minor_changes: + - ansible-test - Removed `freebsd/12.4` remote. + release_summary: '| Release Date: 2024-01-22 + + | `Porting Guide `__ + + ' + security_fixes: + - ANSIBLE_NO_LOG - Address issue where ANSIBLE_NO_LOG was ignored (CVE-2024-0690) + codename: Ten Years Gone + fragments: + - 2.15.9rc1_summary.yaml + - ansible-galaxy-role-install-symlink.yml + - cve-2024-0690.yml + - dedupe_config_init.yml + - delegate_to_invalid.yml + - fix-default-ansible-galaxy-role-import-name.yml + - fix-runtime-metadata-modules-action_plugin.yml + - freebsd_12_4_removal.yml + - unsafe-intern.yml + release_date: '2024-01-22' diff --git a/changelogs/fragments/2.15.9rc1_summary.yaml b/changelogs/fragments/2.15.9rc1_summary.yaml new file mode 100644 index 00000000000..1a9ca9c7f6e --- /dev/null +++ b/changelogs/fragments/2.15.9rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2024-01-22 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 2d333e91d1f..4a908ad508b 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.15.8.post0' +__version__ = '2.15.9rc1' __author__ = 'Ansible, Inc.' __codename__ = "Ten Years Gone"