summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjamesmarshall24 <james.marshall@redhat.com>2022-03-21 13:19:08 -0700
committerGitHub <noreply@github.com>2022-03-21 13:19:08 -0700
commitf78bc40e6fa882dbd1a583b943c407811b1470ce (patch)
treea8915ecc881041941c0cde7c75579ab255627c5b
parent8dfe4acba47948e8d6daa2219817e2ac89f26845 (diff)
downloadansible-f78bc40e6fa882dbd1a583b943c407811b1470ce.tar.gz
New release v2.11.10rc1 (#77328)v2.11.10rc1
-rw-r--r--changelogs/CHANGELOG-v2.11.rst19
-rw-r--r--changelogs/changelog.yaml29
-rw-r--r--changelogs/fragments/v2.11.10rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 52 insertions, 1 deletions
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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ 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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
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'