From c91ece9edfaacb32b2d839bc6dfc3711b1e5eab7 Mon Sep 17 00:00:00 2001 From: Matt Davis <6775756+nitzmahone@users.noreply.github.com> Date: Tue, 16 Apr 2024 11:59:52 -0700 Subject: [PATCH] New release v2.15.11rc1 (#83063) --- changelogs/CHANGELOG-v2.15.rst | 20 ++++++++++++++ changelogs/changelog.yaml | 28 ++++++++++++++++++++ changelogs/fragments/2.15.11rc1_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/2.15.11rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.15.rst b/changelogs/CHANGELOG-v2.15.rst index 47bc69bc0f2..40d66928db6 100644 --- a/changelogs/CHANGELOG-v2.15.rst +++ b/changelogs/CHANGELOG-v2.15.rst @@ -5,6 +5,26 @@ ansible-core 2.15 "Ten Years Gone" Release Notes .. contents:: Topics +v2.15.11rc1 +=========== + +Release Summary +--------------- + +| Release Date: 2024-04-16 +| `Porting Guide `__ + + +Bugfixes +-------- + +- Fixes permission for cache json file from 600 to 644 (https://github.com/ansible/ansible/issues/82683). +- allow_duplicates - fix evaluating if the current role allows duplicates instead of using the initial value from the duplicate's cached role. +- ansible-test ansible-doc sanity test - do not remove underscores from plugin names in collections before calling ``ansible-doc`` (https://github.com/ansible/ansible/pull/82574). +- dnf5 - replace removed API calls +- unarchive modules now uses zipinfo options without relying on implementation defaults, making it more compatible with all OS/distributions. +- winrm - Do not raise another exception during cleanup when a task is timed out - https://github.com/ansible/ansible/issues/81095 + v2.15.10 ======== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index badf26c6360..2d452e66c06 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -905,6 +905,34 @@ releases: - ansible-test-pytest-8.yml - winrm-timeout.yml release_date: '2024-03-18' + 2.15.11rc1: + changes: + bugfixes: + - Fixes permission for cache json file from 600 to 644 (https://github.com/ansible/ansible/issues/82683). + - allow_duplicates - fix evaluating if the current role allows duplicates instead + of using the initial value from the duplicate's cached role. + - ansible-test ansible-doc sanity test - do not remove underscores from plugin + names in collections before calling ``ansible-doc`` (https://github.com/ansible/ansible/pull/82574). + - dnf5 - replace removed API calls + - unarchive modules now uses zipinfo options without relying on implementation + defaults, making it more compatible with all OS/distributions. + - winrm - Do not raise another exception during cleanup when a task is timed + out - https://github.com/ansible/ansible/issues/81095 + release_summary: '| Release Date: 2024-04-16 + + | `Porting Guide `__ + + ' + codename: Ten Years Gone + fragments: + - 2.15.11rc1_summary.yaml + - 82574-ansible-test-ansible-doc-underscore.yml + - 82683-ansible-fact_cache-permissions-changed-after-ansible-coreupdate.yml + - dnf5-api-breaks.yml + - fix-allow-duplicates.yml + - unarchive_fix.yml + - winrm-task-timeout.yml + release_date: '2024-04-16' 2.15.1rc1: changes: bugfixes: diff --git a/changelogs/fragments/2.15.11rc1_summary.yaml b/changelogs/fragments/2.15.11rc1_summary.yaml new file mode 100644 index 00000000000..79741fbcf60 --- /dev/null +++ b/changelogs/fragments/2.15.11rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2024-04-16 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 92b15dfbdc4..c45ed10bb6a 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.10.post0' +__version__ = '2.15.11rc1' __author__ = 'Ansible, Inc.' __codename__ = "Ten Years Gone"