New release v2.19.2rc1 (#85788)

pull/85791/head v2.19.2rc1
Matt Davis 3 months ago committed by GitHub
parent 764070de69
commit 24c92b2d24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,26 @@ ansible-core 2.19 "What Is and What Should Never Be" Release Notes
.. contents:: Topics .. contents:: Topics
v2.19.2rc1
==========
Release Summary
---------------
| Release Date: 2025-09-02
| `Porting Guide <https://docs.ansible.com/ansible-core/2.19/porting_guides/porting_guide_core_2.19.html>`__
Minor Changes
-------------
- ansible-test - Implement new authentication methods for accessing the Ansible Core CI service.
Bugfixes
--------
- The ``ansible_failed_task`` variable is now correctly exposed in a rescue section, even when a failing handler is triggered by the ``flush_handlers`` task in the corresponding ``block`` (https://github.com/ansible/ansible/issues/85682)
- ``ternary`` filter - evaluate values lazily (https://github.com/ansible/ansible/issues/85743)
v2.19.1 v2.19.1
======= =======

@ -1280,3 +1280,25 @@ releases:
- templating-filter-generators.yml - templating-filter-generators.yml
- tqm.yml - tqm.yml
release_date: '2025-08-18' release_date: '2025-08-18'
2.19.2rc1:
changes:
bugfixes:
- The ``ansible_failed_task`` variable is now correctly exposed in a rescue
section, even when a failing handler is triggered by the ``flush_handlers``
task in the corresponding ``block`` (https://github.com/ansible/ansible/issues/85682)
- '``ternary`` filter - evaluate values lazily (https://github.com/ansible/ansible/issues/85743)'
minor_changes:
- ansible-test - Implement new authentication methods for accessing the Ansible
Core CI service.
release_summary: '| Release Date: 2025-09-02
| `Porting Guide <https://docs.ansible.com/ansible-core/2.19/porting_guides/porting_guide_core_2.19.html>`__
'
codename: What Is and What Should Never Be
fragments:
- 2.19.2rc1_summary.yaml
- 85682-rescue-flush_handlers.yml
- 85743-lazy-ternary.yml
- ansible-test-auth-update.yml
release_date: '2025-09-02'

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2025-09-02
| `Porting Guide <https://docs.ansible.com/ansible-core/2.19/porting_guides/porting_guide_core_2.19.html>`__

@ -17,6 +17,6 @@
from __future__ import annotations from __future__ import annotations
__version__ = '2.19.1.post0' __version__ = '2.19.2rc1'
__author__ = 'Ansible, Inc.' __author__ = 'Ansible, Inc.'
__codename__ = "What Is and What Should Never Be" __codename__ = "What Is and What Should Never Be"

Loading…
Cancel
Save