New release v2.9.25rc1

pull/75459/head v2.9.25rc1
Rick Elrod 5 years ago
parent 081a93caa3
commit 8e84e8dcb2

@ -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:

@ -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
=======

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2021-08-10
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

@ -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'

Loading…
Cancel
Save