New release v2.15.10rc1 (#82838)

pull/82842/head v2.15.10rc1
Matt Martz 2 years ago committed by GitHub
parent 9b07e69822
commit 78381daaa5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,6 +5,27 @@ ansible-core 2.15 "Ten Years Gone" Release Notes
.. contents:: Topics
v2.15.10rc1
===========
Release Summary
---------------
| Release Date: 2024-03-18
| `Porting Guide <https://docs.ansible.com/ansible-core/2.15/porting_guides/porting_guide_core_2.15.html>`__
Minor Changes
-------------
- ansible-test - Add a work-around for permission denied errors when using ``pytest >= 8`` on multi-user systems with an installed version of ``ansible-test``.
Bugfixes
--------
- Fix an issue when setting a plugin name from an unsafe source resulted in ``ValueError: unmarshallable object`` (https://github.com/ansible/ansible/issues/82708)
- winrm - does not hang when attempting to get process output when stdin write failed
v2.15.9
=======

@ -868,6 +868,28 @@ releases:
fragments:
- 2.15.1_summary.yaml
release_date: '2023-06-20'
2.15.10rc1:
changes:
bugfixes:
- 'Fix an issue when setting a plugin name from an unsafe source resulted in
``ValueError: unmarshallable object`` (https://github.com/ansible/ansible/issues/82708)'
- winrm - does not hang when attempting to get process output when stdin write
failed
minor_changes:
- ansible-test - Add a work-around for permission denied errors when using ``pytest
>= 8`` on multi-user systems with an installed version of ``ansible-test``.
release_summary: '| Release Date: 2024-03-18
| `Porting Guide <https://docs.ansible.com/ansible-core/2.15/porting_guides/porting_guide_core_2.15.html>`__
'
codename: Ten Years Gone
fragments:
- 2.15.10rc1_summary.yaml
- 82708-unsafe-plugin-name-error.yml
- ansible-test-pytest-8.yml
- winrm-timeout.yml
release_date: '2024-03-18'
2.15.1rc1:
changes:
bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2024-03-18
| `Porting Guide <https://docs.ansible.com/ansible-core/2.15/porting_guides/porting_guide_core_2.15.html>`__

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.15.9.post0'
__version__ = '2.15.10rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Ten Years Gone"

Loading…
Cancel
Save