From 0ddfdbde4e673da499731b681cdf8990cacef8b1 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 3 Oct 2023 16:19:53 -0400 Subject: [PATCH] New release v2.15.5rc1 (#81863) --- changelogs/CHANGELOG-v2.15.rst | 35 +++++++++++++++ changelogs/changelog.yaml | 49 +++++++++++++++++++++ changelogs/fragments/2.15.5rc1_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/2.15.5rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.15.rst b/changelogs/CHANGELOG-v2.15.rst index 90c2d5348b4..fc5e8d501e2 100644 --- a/changelogs/CHANGELOG-v2.15.rst +++ b/changelogs/CHANGELOG-v2.15.rst @@ -5,6 +5,41 @@ ansible-core 2.15 "Ten Years Gone" Release Notes .. contents:: Topics +v2.15.5rc1 +========== + +Release Summary +--------------- + +| Release Date: 2023-10-03 +| `Porting Guide `__ + + +Minor Changes +------------- + +- ansible-galaxy dependency resolution messages have changed the unexplained 'virtual' collection for the specific type ('scm', 'dir', etc) that is more user friendly + +Security Fixes +-------------- + +- ansible-galaxy - Prevent roles from using symlinks to overwrite files outside of the installation directory (CVE-2023-5115) + +Bugfixes +-------- + +- Allow for searching handler subdir for included task via include_role (https://github.com/ansible/ansible/issues/81722) +- PluginLoader - fix Jinja plugin performance issues (https://github.com/ansible/ansible/issues/79652) +- ``ansible.module_utils.service`` - ensure binary data transmission in ``daemonize()`` +- ``ansible.module_utils.service`` - fix inter-process communication in ``daemonize()`` +- ansible-galaxy - started allowing the use of pre-releases for collections that do not have any stable versions published. (https://github.com/ansible/ansible/pull/81606) +- ansible-galaxy - started allowing the use of pre-releases for dependencies on any level of the dependency tree that specifically demand exact pre-release versions of collections and not version ranges. (https://github.com/ansible/ansible/pull/81606) +- ansible-galaxy error on dependency resolution will not error itself due to 'virtual' collections not having a name/namespace. +- ansible-galaxy info - fix reporting no role found when lookup_role_by_name returns None. +- role deduplication - don't deduplicate before a role has had a task run for that particular host (https://github.com/ansible/ansible/issues/81486). +- uri/urls - Add compat function to handle the ability to parse the filename from a Content-Disposition header (https://github.com/ansible/ansible/issues/81806) +- winrm - Better handle send input failures when communicating with hosts under load + v2.15.4 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index eec805c3ad9..a1ef2388675 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1120,3 +1120,52 @@ releases: - tarfile_extract_warn.yml - vault_unvault_id_fix.yml release_date: '2023-09-05' + 2.15.5rc1: + changes: + bugfixes: + - Allow for searching handler subdir for included task via include_role (https://github.com/ansible/ansible/issues/81722) + - PluginLoader - fix Jinja plugin performance issues (https://github.com/ansible/ansible/issues/79652) + - '``ansible.module_utils.service`` - ensure binary data transmission in ``daemonize()``' + - '``ansible.module_utils.service`` - fix inter-process communication in ``daemonize()``' + - ansible-galaxy - started allowing the use of pre-releases for collections + that do not have any stable versions published. (https://github.com/ansible/ansible/pull/81606) + - ansible-galaxy - started allowing the use of pre-releases for dependencies + on any level of the dependency tree that specifically demand exact pre-release + versions of collections and not version ranges. (https://github.com/ansible/ansible/pull/81606) + - ansible-galaxy error on dependency resolution will not error itself due to + 'virtual' collections not having a name/namespace. + - ansible-galaxy info - fix reporting no role found when lookup_role_by_name + returns None. + - role deduplication - don't deduplicate before a role has had a task run for + that particular host (https://github.com/ansible/ansible/issues/81486). + - uri/urls - Add compat function to handle the ability to parse the filename + from a Content-Disposition header (https://github.com/ansible/ansible/issues/81806) + - winrm - Better handle send input failures when communicating with hosts under + load + minor_changes: + - ansible-galaxy dependency resolution messages have changed the unexplained + 'virtual' collection for the specific type ('scm', 'dir', etc) that is more + user friendly + release_summary: '| Release Date: 2023-10-03 + + | `Porting Guide `__ + + ' + security_fixes: + - ansible-galaxy - Prevent roles from using symlinks to overwrite files outside + of the installation directory (CVE-2023-5115) + codename: Ten Years Gone + fragments: + - 2.15.5rc1_summary.yaml + - 81064-daemonize-fixes.yml + - 81584-daemonize-follow-up-fixes.yml + - 81606-ansible-galaxy-collection-pre-releases.yml + - 81722-handler-subdir-include_tasks.yml + - 81806-py2-content-disposition.yml + - cve-2023-5115.yml + - fix-ansible-galaxy-info-no-role-found.yml + - galaxy_dep_res_msgs.yml + - jinja_plugin_cache_cleanup.yml + - role-deduplication-condition.yml + - winrm-send-input.yml + release_date: '2023-10-03' diff --git a/changelogs/fragments/2.15.5rc1_summary.yaml b/changelogs/fragments/2.15.5rc1_summary.yaml new file mode 100644 index 00000000000..4ce3a8f1191 --- /dev/null +++ b/changelogs/fragments/2.15.5rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2023-10-03 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index ecfda9842fb..180c9eecf82 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.4.post0' +__version__ = '2.15.5rc1' __author__ = 'Ansible, Inc.' __codename__ = "Ten Years Gone"