New release v2.19.6rc1 (#86449)

This commit is contained in:
Matt Davis
2026-01-23 01:18:31 +00:00
committed by GitHub
parent 561d4c0b8b
commit 6b1c746c1e
5 changed files with 55 additions and 2 deletions
+23
View File
@@ -4,6 +4,29 @@ ansible-core 2.19 "What Is and What Should Never Be" Release Notes
.. contents:: Topics
v2.19.6rc1
==========
Release Summary
---------------
| Release Date: 2026-01-23
| `Porting Guide <https://docs.ansible.com/ansible-core/2.19/porting_guides/porting_guide_core_2.19.html>`__
Minor Changes
-------------
- ansible-test - Replace RHEL 10.0 remote with 10.1.
- ansible-test - Replace RHEL 9.5 remote with 9.7.
Bugfixes
--------
- Fix Windows LIB env var corruption (https://github.com/ansible-collections/ansible.windows/issues/297).
- ansible_local will no longer trigger variable injection default value deprecation.
- package, service, gather_facts - fix templating module_defaults for modules executed by these action plugins. (https://github.com/ansible/ansible/issues/85848)
- winrm - Provide a better error message if a domain user is specified using a User Principal Name (``UPN``) but the ``pykerberos`` library is not installed so Kerberos is unavailable.
v2.19.5
=======
+27
View File
@@ -1448,3 +1448,30 @@ releases:
- get_url_regex.yml
- varloaderror.yml
release_date: '2025-12-02'
2.19.6rc1:
changes:
bugfixes:
- Fix Windows LIB env var corruption (https://github.com/ansible-collections/ansible.windows/issues/297).
- ansible_local will no longer trigger variable injection default value deprecation.
- package, service, gather_facts - fix templating module_defaults for modules
executed by these action plugins. (https://github.com/ansible/ansible/issues/85848)
- winrm - Provide a better error message if a domain user is specified using
a User Principal Name (``UPN``) but the ``pykerberos`` library is not installed
so Kerberos is unavailable.
minor_changes:
- ansible-test - Replace RHEL 10.0 remote with 10.1.
- ansible-test - Replace RHEL 9.5 remote with 9.7.
release_summary: '| Release Date: 2026-01-23
| `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.6rc1_summary.yaml
- ansible-test-rhel-10.1.yml
- ansible_local_nodepr.yml
- fix-windows-lib-env-corruption.yml
- module_defaults-action-plugin-templating.yml
- winrm-kerberos.yml
release_date: '2026-01-22'
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2026-01-23
| `Porting Guide <https://docs.ansible.com/ansible-core/2.19/porting_guides/porting_guide_core_2.19.html>`__
+1 -1
View File
@@ -17,6 +17,6 @@
from __future__ import annotations
__version__ = '2.19.5.post0'
__version__ = '2.19.6rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "What Is and What Should Never Be"
+1 -1
View File
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools >= 66.1.0, <= 80.9.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, <= 80.10.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]