New release v2.17.13rc1 (#85455)

pull/85457/head v2.17.13rc1
Matt Davis 5 months ago committed by GitHub
parent c3d8d790e7
commit c4cac8e18f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,28 @@ ansible-core 2.17 "Gallows Pole" Release Notes
.. contents:: Topics
v2.17.13rc1
===========
Release Summary
---------------
| Release Date: 2025-07-08
| `Porting Guide <https://docs.ansible.com/ansible-core/2.17/porting_guides/porting_guide_core_2.17.html>`__
Minor Changes
-------------
- ansible-test - Add RHEL 10.0 as a remote platform for testing.
Bugfixes
--------
- ansible-doc will no longer ignore docs for modules without an extension (https://github.com/ansible/ansible/issues/85279).
- ansible-test - Fix Python relative import resolution from ``__init__.py`` files when using change detection.
- user - Set timeout for passphrase interaction.
- user - Update prompt for SSH key passphrase (https://github.com/ansible/ansible/issues/84484).
v2.17.12
========

@ -797,6 +797,29 @@ releases:
- ensure_remote_perms.yml
- win-script-become.yml
release_date: '2025-05-12'
2.17.13rc1:
changes:
bugfixes:
- ansible-doc will no longer ignore docs for modules without an extension (https://github.com/ansible/ansible/issues/85279).
- ansible-test - Fix Python relative import resolution from ``__init__.py``
files when using change detection.
- user - Set timeout for passphrase interaction.
- user - Update prompt for SSH key passphrase (https://github.com/ansible/ansible/issues/84484).
minor_changes:
- ansible-test - Add RHEL 10.0 as a remote platform for testing.
release_summary: '| Release Date: 2025-07-08
| `Porting Guide <https://docs.ansible.com/ansible-core/2.17/porting_guides/porting_guide_core_2.17.html>`__
'
codename: Gallows Pole
fragments:
- 2.17.13rc1_summary.yaml
- adoc_noext_fix.yml
- ansible-test-change-detection-fix.yml
- ansible-test-rhel-10.yml
- user_passphrase.yml
release_date: '2025-07-08'
2.17.1rc1:
changes:
bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2025-07-08
| `Porting Guide <https://docs.ansible.com/ansible-core/2.17/porting_guides/porting_guide_core_2.17.html>`__

@ -17,6 +17,6 @@
from __future__ import annotations
__version__ = '2.17.12.post0'
__version__ = '2.17.13rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Gallows Pole"

@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools >= 66.1.0, <= 80.7.1", "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.9.0", "wheel == 0.45.1"] # lower bound to support controller Python versions, upper bound for latest version tested at release
build-backend = "setuptools.build_meta"

Loading…
Cancel
Save