From f78bc40e6fa882dbd1a583b943c407811b1470ce Mon Sep 17 00:00:00 2001 From: jamesmarshall24 Date: Mon, 21 Mar 2022 13:19:08 -0700 Subject: New release v2.11.10rc1 (#77328) --- changelogs/CHANGELOG-v2.11.rst | 19 ++++++++++++++++++ changelogs/changelog.yaml | 29 +++++++++++++++++++++++++++ changelogs/fragments/v2.11.10rc1_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.11.10rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst index fc8e05d821..ef7a117ae3 100644 --- a/changelogs/CHANGELOG-v2.11.rst +++ b/changelogs/CHANGELOG-v2.11.rst @@ -5,6 +5,25 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes .. contents:: Topics +v2.11.10rc1 +=========== + +Release Summary +--------------- + +| Release Date: 2022-03-21 +| `Porting Guide `__ + + +Bugfixes +-------- + +- AnsiballZ - Ensure we use the full python package in the module cache filename to avoid a case where ``collections:`` is used to execute a module via short name, where the short name duplicates another module from ``ansible.builtin`` or another collection that was executed previously. +- Fix collection filter/test plugin redirects (https://github.com/ansible/ansible/issues/77192). +- ansible-galaxy collection verify - display files/directories not included in the FILES.json as modified content. +- ansible-test - Fix an integration test traceback that occurs when some tests use cloud plugins, but all tests for at least one cloud plugin are skipped. (https://github.com/ansible/ansible/issues/75711) +- extend timeout for ansible-galaxy when communicating with the galaxy server api, and apply it to all interactions with the api + v2.11.9 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8b65b8bee4..a365730ee0 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1674,6 +1674,35 @@ releases: fragments: - v2.11.1_summary.yaml release_date: '2021-05-24' + 2.11.10rc1: + changes: + bugfixes: + - AnsiballZ - Ensure we use the full python package in the module cache filename + to avoid a case where ``collections:`` is used to execute a module via short + name, where the short name duplicates another module from ``ansible.builtin`` + or another collection that was executed previously. + - Fix collection filter/test plugin redirects (https://github.com/ansible/ansible/issues/77192). + - ansible-galaxy collection verify - display files/directories not included + in the FILES.json as modified content. + - ansible-test - Fix an integration test traceback that occurs when some tests + use cloud plugins, but all tests for at least one cloud plugin are skipped. + (https://github.com/ansible/ansible/issues/75711) + - extend timeout for ansible-galaxy when communicating with the galaxy server + api, and apply it to all interactions with the api + release_summary: '| Release Date: 2022-03-21 + + | `Porting Guide `__ + + ' + codename: Hey Hey, What Can I Do + fragments: + - 76690-fix-ansible-galaxy-collection-verify-modified-content.yaml + - 77210-fix-collection-filter-test-redirects.yml + - ansible-test-remote-cloud-skip-traceback.yml + - ansible_galaxy_timeout.yml + - fqn-module-cache.yml + - v2.11.10rc1_summary.yaml + release_date: '2022-03-21' 2.11.1rc1: changes: bugfixes: diff --git a/changelogs/fragments/v2.11.10rc1_summary.yaml b/changelogs/fragments/v2.11.10rc1_summary.yaml new file mode 100644 index 0000000000..f1d051001a --- /dev/null +++ b/changelogs/fragments/v2.11.10rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2022-03-21 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 5050011c81..078cd54ef1 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.11.9.post0' +__version__ = '2.11.10rc1' __author__ = 'Ansible, Inc.' __codename__ = 'Hey Hey, What Can I Do' -- cgit v1.2.1