summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2021-06-14 17:45:33 -0500
committerRick Elrod <rick@elrod.me>2021-06-14 17:45:33 -0500
commite26c8e3134145ac656e777cbb5980bfbfb616fd1 (patch)
treea055d76370029affa044b2dc285c84ce0c208133
parent4acad228f081912025f44bcca83eedb69f107a6d (diff)
downloadansible-e26c8e3134145ac656e777cbb5980bfbfb616fd1.tar.gz
New release v2.9.23rc1v2.9.23rc1
-rw-r--r--changelogs/.changes.yaml8
-rw-r--r--changelogs/CHANGELOG-v2.9.rst21
-rw-r--r--changelogs/fragments/v2.9.23rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 33 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index efeada890c..ba9dcc6a78 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1879,6 +1879,14 @@ releases:
- jinja2_decorator_renames.yml
- v2.9.22rc1_summary.yaml
release_date: '2021-05-17'
+ 2.9.23rc1:
+ codename: Immigrant Song
+ fragments:
+ - 74802_net_get_missing_changed.yml
+ - firewalld_idempotency.yml
+ - fix_unsafe_newline.yml
+ - v2.9.23rc1_summary.yaml
+ release_date: '2021-06-14'
2.9.3:
codename: Immigrant Song
fragments:
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index 2d6bf3bd71..3f0c2b24c2 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,27 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.23rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2021-06-14
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Security Fixes
+--------------
+
+- templating engine fix for not preserving usnafe status when trying to preserve newlines. CVE-2021-3583
+
+Bugfixes
+--------
+
+- Backport to fix missing ``changed`` in net_get (https://github.com/ansible/ansible/issues/74802)
+- firewalld - ensure idempotency with firewalld 0.9.3 (https://github.com/ansible-collections/ansible.posix/issues/179).
+
v2.9.22
=======
diff --git a/changelogs/fragments/v2.9.23rc1_summary.yaml b/changelogs/fragments/v2.9.23rc1_summary.yaml
new file mode 100644
index 0000000000..82add365b6
--- /dev/null
+++ b/changelogs/fragments/v2.9.23rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-06-14
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 1316044e71..af59d4e261 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.22.post0'
+__version__ = '2.9.23rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'