summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Savineau <dsavinea@redhat.com>2022-05-16 13:28:56 -0400
committerGitHub <noreply@github.com>2022-05-16 13:28:56 -0400
commit9818510a0aa6b1c420939036c8acd9c4f3cc1769 (patch)
tree529b7d937f677e14b8cd901c72ff64697f0e526d
parente7dbe1b514c4bcce9a0920449c4c11af39e5c73b (diff)
downloadansible-9818510a0aa6b1c420939036c8acd9c4f3cc1769.tar.gz
New release v2.11.12rc1 (#77811)v2.11.12rc1
-rw-r--r--changelogs/CHANGELOG-v2.11.rst16
-rw-r--r--changelogs/changelog.yaml18
-rw-r--r--changelogs/fragments/v2.11.12rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 38 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst
index 768867ba94..16549e6766 100644
--- a/changelogs/CHANGELOG-v2.11.rst
+++ b/changelogs/CHANGELOG-v2.11.rst
@@ -5,6 +5,22 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes
.. contents:: Topics
+v2.11.12rc1
+===========
+
+Release Summary
+---------------
+
+| Release Date: 2022-05-16
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- Prevent losing unsafe on results returned from lookups (https://github.com/ansible/ansible/issues/77535)
+- plugin loader will now load config data for plugin by name instead of by file to avoid issues with the same file being loaded under different names (fqcn + short name).
+
v2.11.11
========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 98094a3bf0..2a649e98c3 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1747,6 +1747,24 @@ releases:
- v2.11.11rc1_summary.yaml
- winrm-kinit-path.yml
release_date: '2022-04-18'
+ 2.11.12rc1:
+ changes:
+ bugfixes:
+ - Prevent losing unsafe on results returned from lookups (https://github.com/ansible/ansible/issues/77535)
+ - plugin loader will now load config data for plugin by name instead of by file
+ to avoid issues with the same file being loaded under different names (fqcn
+ + short name).
+ release_summary: '| Release Date: 2022-05-16
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Hey Hey, What Can I Do
+ fragments:
+ - 77535-prevent-losing-unsafe-lookups.yml
+ - config_load_by_name.yml
+ - v2.11.12rc1_summary.yaml
+ release_date: '2022-05-16'
2.11.1rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.11.12rc1_summary.yaml b/changelogs/fragments/v2.11.12rc1_summary.yaml
new file mode 100644
index 0000000000..35dde5d810
--- /dev/null
+++ b/changelogs/fragments/v2.11.12rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-05-16
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index a121f2eb8b..e2b7e9dc7a 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.11.post0'
+__version__ = '2.11.12rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Hey Hey, What Can I Do'