New release v2.18.11rc1 (#86092)

pull/86096/head v2.18.11rc1
Matt Davis 1 month ago committed by GitHub
parent e511663447
commit 3092110f92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,20 @@ ansible-core 2.18 "Fool in the Rain" Release Notes
.. contents:: Topics
v2.18.11rc1
===========
Release Summary
---------------
| Release Date: 2025-10-29
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
Bugfixes
--------
- ansible-doc - prevent crash when scanning collections in paths that have more than one ``ansible_collections`` in it (https://github.com/ansible/ansible/issues/84909, https://github.com/ansible/ansible/pull/85361).
v2.18.10
========

@ -651,6 +651,22 @@ releases:
- respawn_os_env.yml
- run_command_output_selector.yml
release_date: '2025-09-29'
2.18.11rc1:
changes:
bugfixes:
- ansible-doc - prevent crash when scanning collections in paths that have more
than one ``ansible_collections`` in it (https://github.com/ansible/ansible/issues/84909,
https://github.com/ansible/ansible/pull/85361).
release_summary: '| Release Date: 2025-10-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.11rc1_summary.yaml
- 85361-collection-name-from-path-none.yml
release_date: '2025-10-29'
2.18.1rc1:
changes:
bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2025-10-29
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__

@ -17,6 +17,6 @@
from __future__ import annotations
__version__ = '2.18.10.post0'
__version__ = '2.18.11rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Fool in the Rain"

Loading…
Cancel
Save