summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2021-05-17 17:00:51 -0500
committerRick Elrod <rick@elrod.me>2021-05-17 17:00:51 -0500
commita9518f8809436e25a54b9125e2ee9ac0c3bb19b7 (patch)
tree0ee927f345c64a2563161d4b73962d2b8f29c225
parenta2fabbe38b2705fd7ed34618ce07953eda3bb12e (diff)
downloadansible-a9518f8809436e25a54b9125e2ee9ac0c3bb19b7.tar.gz
New release v2.9.22rc1v2.9.22rc1
-rw-r--r--changelogs/.changes.yaml8
-rw-r--r--changelogs/CHANGELOG-v2.9.rst17
-rw-r--r--changelogs/fragments/v2.9.22rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 29 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index a3eaa3b631..c1faa666cd 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1865,6 +1865,14 @@ releases:
- v2.9.21rc1_summary.yaml
- validate-modules_found_try_except_import_fails_module_attribute.yaml
release_date: '2021-04-27'
+ 2.9.22rc1:
+ codename: Immigrant Song
+ fragments:
+ - ansible-test-azp-build-api.yml
+ - ansible-test-markupsafe-constraint.yml
+ - jinja2_decorator_renames.yml
+ - v2.9.22rc1_summary.yaml
+ release_date: '2021-05-17'
2.9.3:
codename: Immigrant Song
fragments:
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index e1782e999e..0b088478aa 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,23 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.22rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2021-05-17
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- ansible-test - Use documented API to retrieve build information from Azure Pipelines.
+- ansible_test - add constraint for ``MarkupSafe`` (https://github.com/ansible/ansible/pull/74666)
+- filter plugins - patch new versions of Jinja2 to prevent warnings/errors on renamed filter decorators (https://github.com/ansible/ansible/issues/74667)
+
v2.9.21
=======
diff --git a/changelogs/fragments/v2.9.22rc1_summary.yaml b/changelogs/fragments/v2.9.22rc1_summary.yaml
new file mode 100644
index 0000000000..235b987adf
--- /dev/null
+++ b/changelogs/fragments/v2.9.22rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-05-17
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 1d3817095a..d43abc49c3 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.9.21.post0'
+__version__ = '2.9.22rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'