New release v2.18.17rc1 (#86969)

pull/86972/head v2.18.17rc1
Matt Davis 2 weeks ago committed by GitHub
parent cc41e7c97a
commit 2b4713e8cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,26 @@ ansible-core 2.18 "Fool in the Rain" Release Notes
.. contents:: Topics
v2.18.17rc1
===========
Release Summary
---------------
| Release Date: 2026-05-11
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
Security Fixes
--------------
- psrp - Do not log raw stdout/stderr on verbosity 5 when task has ``no_log: true`` set
- winrm - Do not log raw stdout/stderr on verbosity 5 when task has ``no_log: true`` set
Bugfixes
--------
- ansible-test remote alias - Alias values for ``--controller`` and ``--target`` are properly resolved for ``remote``. Previously, remote alias values (e.g. ``fedora/latest``) resolved to the correct name only for the legacy ``--remote`` arg, failing with an unknown image error for the newer args.
v2.18.16
========

@ -835,6 +835,29 @@ releases:
- ansible-test-dist-info.yml
- ansible-test-macos-aarch64.yml
release_date: '2026-04-13'
2.18.17rc1:
changes:
bugfixes:
- ansible-test remote alias - Alias values for ``--controller`` and ``--target``
are properly resolved for ``remote``. Previously, remote alias values (e.g.
``fedora/latest``) resolved to the correct name only for the legacy ``--remote``
arg, failing with an unknown image error for the newer args.
release_summary: '| Release Date: 2026-05-11
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
'
security_fixes:
- 'psrp - Do not log raw stdout/stderr on verbosity 5 when task has ``no_log:
true`` set'
- 'winrm - Do not log raw stdout/stderr on verbosity 5 when task has ``no_log:
true`` set'
codename: Fool in the Rain
fragments:
- 2.18.17rc1_summary.yaml
- core_ci_remote_alias.yml
- winrm-psrp-nolog.yml
release_date: '2026-05-11'
2.18.1rc1:
changes:
bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2026-05-11
| `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.16.post0'
__version__ = '2.18.17rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Fool in the Rain"

Loading…
Cancel
Save