summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjamesmarshall24 <james.marshall@redhat.com>2022-04-18 12:12:09 -0700
committerGitHub <noreply@github.com>2022-04-18 12:12:09 -0700
commit8eb57ec3d4be2abdc9d172c62d46994ef380651c (patch)
tree4bfc6628d682be3d667da3c282211e8414ce85dc
parent31c7c9158eaa2487ac9318f4c08d3c690b845f7a (diff)
downloadansible-8eb57ec3d4be2abdc9d172c62d46994ef380651c.tar.gz
New release v2.11.11rc1 (#77542)v2.11.11rc1
-rw-r--r--changelogs/CHANGELOG-v2.11.rst16
-rw-r--r--changelogs/changelog.yaml18
-rw-r--r--changelogs/fragments/v2.11.11rc1_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 277c3bef42..763e9a04ff 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.11rc1
+===========
+
+Release Summary
+---------------
+
+| Release Date: 2022-04-18
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- Ansible.ModuleUtils.SID - Use user principal name as is for lookup in the ``Convert-ToSID`` function - https://github.com/ansible/ansible/issues/77316
+- winrm - Ensure ``kinit`` is run with the same ``PATH`` env var as the Ansible process
+
v2.11.10
========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 4083f1466e..c2fa292b01 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1714,6 +1714,24 @@ releases:
- fqn-module-cache.yml
- v2.11.10rc1_summary.yaml
release_date: '2022-03-21'
+ 2.11.11rc1:
+ changes:
+ bugfixes:
+ - Ansible.ModuleUtils.SID - Use user principal name as is for lookup in the
+ ``Convert-ToSID`` function - https://github.com/ansible/ansible/issues/77316
+ - winrm - Ensure ``kinit`` is run with the same ``PATH`` env var as the Ansible
+ process
+ release_summary: '| Release Date: 2022-04-18
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Hey Hey, What Can I Do
+ fragments:
+ - ModuleUtils.SID-long-username.yml
+ - v2.11.11rc1_summary.yaml
+ - winrm-kinit-path.yml
+ release_date: '2022-04-18'
2.11.1rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.11.11rc1_summary.yaml b/changelogs/fragments/v2.11.11rc1_summary.yaml
new file mode 100644
index 0000000000..858b870bb0
--- /dev/null
+++ b/changelogs/fragments/v2.11.11rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-04-18
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index ce1ba5a19e..339187ffe0 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.10.post0'
+__version__ = '2.11.11rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Hey Hey, What Can I Do'