New release v2.18.10rc1 (#85922)

This commit is contained in:
Matt Davis
2025-09-29 15:05:14 -07:00
committed by GitHub
parent fb4e041df5
commit be4b64393a
4 changed files with 36 additions and 1 deletions
+15
View File
@@ -4,6 +4,21 @@ ansible-core 2.18 "Fool in the Rain" Release Notes
.. contents:: Topics
v2.18.10rc1
===========
Release Summary
---------------
| Release Date: 2025-09-29
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
Bugfixes
--------
- respawn - use copy of env variables to update existing PYTHONPATH value (https://github.com/ansible/ansible/issues/84954).
- run_command - Fixed premature selector unregistration on empty read from stdout/stderr that caused truncated output or hangs in rare situations.
v2.18.9
=======
+17
View File
@@ -623,6 +623,23 @@ releases:
fragments:
- 2.18.1_summary.yaml
release_date: '2024-12-02'
2.18.10rc1:
changes:
bugfixes:
- respawn - use copy of env variables to update existing PYTHONPATH value (https://github.com/ansible/ansible/issues/84954).
- run_command - Fixed premature selector unregistration on empty read from stdout/stderr
that caused truncated output or hangs in rare situations.
release_summary: '| Release Date: 2025-09-29
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
'
codename: Fool in the Rain
fragments:
- 2.18.10rc1_summary.yaml
- respawn_os_env.yml
- run_command_output_selector.yml
release_date: '2025-09-29'
2.18.1rc1:
changes:
bugfixes:
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2025-09-29
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
+1 -1
View File
@@ -17,6 +17,6 @@
from __future__ import annotations
__version__ = '2.18.9.post0'
__version__ = '2.18.10rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Fool in the Rain"