New release v2.18.4rc1 (#84842)

pull/84846/head v2.18.4rc1
Matt Martz 1 year ago committed by GitHub
parent d0b8db8aa0
commit a3a2bf8f0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,6 +4,24 @@ ansible-core 2.18 "Fool in the Rain" Release Notes
.. contents:: Topics
v2.18.4rc1
==========
Release Summary
---------------
| Release Date: 2025-03-17
| `Porting Guide <https://docs.ansible.com/ansible-core/2.18/porting_guides/porting_guide_core_2.18.html>`__
Bugfixes
--------
- Windows - add support for running on system where WDAC is in audit mode with ``Dynamic Code Security`` enabled.
- dnf5 - fix ``is_installed`` check for packages that are not installed but listed as provided by an installed package (https://github.com/ansible/ansible/issues/84578)
- dnf5 - libdnf5 - use ``conf.pkg_gpgcheck`` instead of deprecated ``conf.gpgcheck`` which is used only as a fallback
- facts - gather pagesize and calculate respective values depending upon architecture (https://github.com/ansible/ansible/issues/84773).
- module respawn - limit to supported Python versions
v2.18.3
=======

@ -743,3 +743,29 @@ releases:
- ansible-test-curl.yml
- fix-include_vars-reserved-warning.yml
release_date: '2025-02-17'
2.18.4rc1:
changes:
bugfixes:
- Windows - add support for running on system where WDAC is in audit mode with
``Dynamic Code Security`` enabled.
- dnf5 - fix ``is_installed`` check for packages that are not installed but
listed as provided by an installed package (https://github.com/ansible/ansible/issues/84578)
- dnf5 - libdnf5 - use ``conf.pkg_gpgcheck`` instead of deprecated ``conf.gpgcheck``
which is used only as a fallback
- facts - gather pagesize and calculate respective values depending upon architecture
(https://github.com/ansible/ansible/issues/84773).
- module respawn - limit to supported Python versions
release_summary: '| Release Date: 2025-03-17
| `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.4rc1_summary.yaml
- 84578-dnf5-is_installed-provides.yml
- darwin_pagesize.yml
- dnf5-remove-usage-deprecated-option.yml
- respawn-min-python.yml
- win-wdac-audit.yml
release_date: '2025-03-17'

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

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

Loading…
Cancel
Save