summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2021-08-10 09:35:22 -0500
committerRick Elrod <rick@elrod.me>2021-08-10 09:35:22 -0500
commit8e84e8dcb2deab3d52ce9b1bf3b6ec9ec783a4ba (patch)
treebb4b0fa7308f5ab4403b20fefe1ead0ae56e5c77
parent081a93caa36df4b353d14395276c07a17061f8e5 (diff)
downloadansible-8e84e8dcb2deab3d52ce9b1bf3b6ec9ec783a4ba.tar.gz
New release v2.9.25rc1v2.9.25rc1
-rw-r--r--changelogs/.changes.yaml11
-rw-r--r--changelogs/CHANGELOG-v2.9.rst27
-rw-r--r--changelogs/fragments/v2.9.25rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 42 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 11cc27424a..6d5d545e76 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1905,6 +1905,17 @@ releases:
- aws_tiny_prefix.yaml
- v2.9.24rc1_summary.yaml
release_date: '2021-07-13'
+ 2.9.25rc1:
+ codename: Immigrant Song
+ fragments:
+ - 72876-setup-facts-add-redhat-vendor.yml
+ - ansible-test-rstcheck-ignore.yml
+ - fix-dnf-filtering-for-installed-package-name.yml
+ - missing_delegate_vars.yml
+ - unsafe_writes_env.yml
+ - unsafe_writes_fix.yml
+ - v2.9.25rc1_summary.yaml
+ release_date: '2021-08-10'
2.9.3:
codename: Immigrant Song
fragments:
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index 2110e486e9..d0f654bc18 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,33 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.25rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2021-08-10
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Allow unsafe_writes to be set on target via env var, for those targets that need a blanket setting.
+
+Bugfixes
+--------
+
+- Added unsafe_writes test.
+- Enabled unsafe_writes for get_url which was ignoring the paramter.
+- Restored unsafe_writes functionality which was being skipped.
+- Setup virtualization_facts - add RHV type. This change will fully work for VMs in clusters at cluster level 4.4 or newer (https://github.com/ansible/ansible/pull/72876).
+- ansible-test - allow to ignore ``rstcheck`` errors (https://github.com/ansible/ansible/pull/75272).
+- callback default, now uses task delegate_to instead of delegate vars to display delegate to host
+- callbacks, restores missing delegate_vars
+- dnf module - Use all components of a package name to determine if it's installed (https://github.com/ansible/ansible/issues/75311).
+
v2.9.24
=======
diff --git a/changelogs/fragments/v2.9.25rc1_summary.yaml b/changelogs/fragments/v2.9.25rc1_summary.yaml
new file mode 100644
index 0000000000..d11418b262
--- /dev/null
+++ b/changelogs/fragments/v2.9.25rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-08-10
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index d4b939a2f4..62e6ef10f4 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.24.post0'
+__version__ = '2.9.25rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'