New release v2.18.6rc1 (#85144)

pull/85146/head v2.18.6rc1
Matt Davis 1 year ago committed by GitHub
parent fd47c68c2d
commit 026bb3b22e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,30 @@ ansible-core 2.18 "Fool in the Rain" Release Notes
.. contents:: Topics
v2.18.6rc1
==========
Release Summary
---------------
| Release Date: 2025-05-12
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
Minor Changes
-------------
- ansible-test - Use the ``-t`` option to set the stop timeout when stopping a container. This avoids use of the ``--time`` option which was deprecated in Docker v28.0.
Bugfixes
--------
- Ansible will now ensure predictable permissions on remote artifacts, until now it only ensured executable and relied on system masks for the rest.
- ansible-doc - fix indentation for first line of descriptions of suboptions and sub-return values (https://github.com/ansible/ansible/pull/84690).
- ansible-doc - fix line wrapping for first line of description of options and return values (https://github.com/ansible/ansible/pull/84690).
- dnf5 - avoid generating excessive transaction entries in the dnf5 history (https://github.com/ansible/ansible/issues/85046)
- dnf5 - when ``bugfix`` and/or ``security`` is specified, skip packages that do not have any such updates, even for new versions of libdnf5 where this functionality changed and it is considered failure
- script - Fix up become support for Windows scripts when become was set through host variables and not on the task directly - https://github.com/ansible/ansible/issues/85076
v2.18.5
=======

@ -819,3 +819,38 @@ releases:
- gather_facts_smart_fix.yml
- pin-wheel.yml
release_date: '2025-04-14'
2.18.6rc1:
changes:
bugfixes:
- Ansible will now ensure predictable permissions on remote artifacts, until
now it only ensured executable and relied on system masks for the rest.
- ansible-doc - fix indentation for first line of descriptions of suboptions
and sub-return values (https://github.com/ansible/ansible/pull/84690).
- ansible-doc - fix line wrapping for first line of description of options and
return values (https://github.com/ansible/ansible/pull/84690).
- dnf5 - avoid generating excessive transaction entries in the dnf5 history
(https://github.com/ansible/ansible/issues/85046)
- dnf5 - when ``bugfix`` and/or ``security`` is specified, skip packages that
do not have any such updates, even for new versions of libdnf5 where this
functionality changed and it is considered failure
- script - Fix up become support for Windows scripts when become was set through
host variables and not on the task directly - https://github.com/ansible/ansible/issues/85076
minor_changes:
- ansible-test - Use the ``-t`` option to set the stop timeout when stopping
a container. This avoids use of the ``--time`` option which was deprecated
in Docker v28.0.
release_summary: '| Release Date: 2025-05-12
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
'
codename: Fool in the Rain
fragments:
- 2.18.6rc1_summary.yaml
- 84690-ansible-doc-indent-wrapping.yml
- 85046-dnf5-history-entries.yml
- ansible-test-container-stop.yml
- dnf5-advisory-type.yml
- ensure_remote_perms.yml
- win-script-become.yml
release_date: '2025-05-12'

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

@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools >= 66.1.0, <= 80.3.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.4.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"
[project]

Loading…
Cancel
Save