New release v2.19.8rc1 (#86664)

pull/86668/head v2.19.8rc1
sivel / Matt Martz 2 months ago committed by GitHub
parent 1713ade9d2
commit 876085b520
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,28 @@ ansible-core 2.19 "What Is and What Should Never Be" Release Notes
.. contents:: Topics
v2.19.8rc1
==========
Release Summary
---------------
| Release Date: 2026-03-16
| `Porting Guide <https://docs.ansible.com/ansible-core/2.19/porting_guides/porting_guide_core_2.19.html>`__
Minor Changes
-------------
- ansible-test - Add container/remote aliases for more loosely specifying managed test environments.
- ansible-test - Add support for using the Ansible Core CI service from GitHub Actions.
Bugfixes
--------
- ansible-connection - Prevent unpickling failures in module contexts by ensuring that AnsibleTaggedObjects in pickled responses are converted to plain types in ``JsonRpcServer``.
- config lookup now uses preexisting constants for templating when needed.
- yaml loading - Fix traceback when parsing YAML strings (not files) when using the pure Python implementation of PyYAML.
v2.19.7
=======

@ -1520,3 +1520,31 @@ releases:
- ansible-test-spare-tire.yml
- make-tmp-path-msg.yml
release_date: '2026-02-17'
2.19.8rc1:
changes:
bugfixes:
- ansible-connection - Prevent unpickling failures in module contexts by ensuring
that AnsibleTaggedObjects in pickled responses are converted to plain types
in ``JsonRpcServer``.
- config lookup now uses preexisting constants for templating when needed.
- yaml loading - Fix traceback when parsing YAML strings (not files) when using
the pure Python implementation of PyYAML.
minor_changes:
- ansible-test - Add container/remote aliases for more loosely specifying managed
test environments.
- ansible-test - Add support for using the Ansible Core CI service from GitHub
Actions.
release_summary: '| Release Date: 2026-03-16
| `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.8rc1_summary.yaml
- 86601-untag-jsonrpc-responses.yml
- ansible-test-completion-aliases.yml
- ansible-test-github-actions.yml
- configlookupfix.yml
- pyyaml-name.yml
release_date: '2026-03-16'

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2026-03-16
| `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
__version__ = '2.19.7.post0'
__version__ = '2.19.8rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "What Is and What Should Never Be"

@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools >= 66.1.0, <= 82.0.0", "wheel == 0.45.1"] # lower bound to support controller Python versions, upper bound for latest version tested at release
requires = ["setuptools >= 66.1.0, <= 82.0.1", "wheel == 0.45.1"] # lower bound to support controller Python versions, upper bound for latest version tested at release
build-backend = "setuptools.build_meta"
[project]

Loading…
Cancel
Save