Skip to content

Commit

Permalink
New release v2.15.6rc1 (#82092)
Browse files Browse the repository at this point in the history
  • Loading branch information
sivel committed Oct 30, 2023
1 parent 0ef9984 commit 357ba68
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 1 deletion.
27 changes: 27 additions & 0 deletions changelogs/CHANGELOG-v2.15.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,33 @@ ansible-core 2.15 "Ten Years Gone" Release Notes
.. contents:: Topics


v2.15.6rc1
==========

Release Summary
---------------

| Release Date: 2023-10-30
| `Porting Guide <https://docs.ansible.com/ansible-core/2.15/porting_guides/porting_guide_core_2.15.html>`__

Minor Changes
-------------

- ansible-test - Windows 2012 and 2012-R2 instances are now requested from Azure instead of AWS.

Bugfixes
--------

- Fix ``run_once`` being incorrectly interpreted on handlers (https://github.com/ansible/ansible/issues/81666)
- Plugin loader does not dedupe nor cache filter/test plugins by file basename, but full path name.
- Properly template tags in parent blocks (https://github.com/ansible/ansible/issues/81053)
- Restoring the ability of filters/tests can have same file base name but different tests/filters defined inside.
- ``import_role`` reverts to previous behavior of exporting vars at compile time.
- ansible-galaxy - Provide a better error message when using a requirements file with an invalid format - https://github.com/ansible/ansible/issues/81901
- ansible-inventory - index available_hosts for major performance boost when dumping large inventories
- ansible-test - Fix parsing of cgroup entries which contain a ``:`` in the path (https://github.com/ansible/ansible/issues/81977).

v2.15.5
=======

Expand Down
37 changes: 37 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1180,3 +1180,40 @@ releases:
- role-deduplication-condition.yml
- winrm-send-input.yml
release_date: '2023-10-03'
2.15.6rc1:
changes:
bugfixes:
- Fix ``run_once`` being incorrectly interpreted on handlers (https://github.com/ansible/ansible/issues/81666)
- Plugin loader does not dedupe nor cache filter/test plugins by file basename,
but full path name.
- Properly template tags in parent blocks (https://github.com/ansible/ansible/issues/81053)
- Restoring the ability of filters/tests can have same file base name but different
tests/filters defined inside.
- '``import_role`` reverts to previous behavior of exporting vars at compile
time.'
- ansible-galaxy - Provide a better error message when using a requirements
file with an invalid format - https://github.com/ansible/ansible/issues/81901
- ansible-inventory - index available_hosts for major performance boost when
dumping large inventories
- ansible-test - Fix parsing of cgroup entries which contain a ``:`` in the
path (https://github.com/ansible/ansible/issues/81977).
minor_changes:
- ansible-test - Windows 2012 and 2012-R2 instances are now requested from Azure
instead of AWS.
release_summary: '| Release Date: 2023-10-30
| `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.6rc1_summary.yaml
- 81053-templated-tags-inheritance.yml
- 81666-handlers-run_once.yml
- 81901-galaxy-requirements-format.yml
- ansible-test-cgroup-split.yml
- ansible-test-windows-2012-and-2012-R2.yml
- import_role_goes_public.yml
- inv_available_hosts_to_frozenset.yml
- j2_load_fix.yml
release_date: '2023-10-30'
3 changes: 3 additions & 0 deletions changelogs/fragments/2.15.6rc1_summary.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2023-10-30
| `Porting Guide <https://docs.ansible.com/ansible-core/2.15/porting_guides/porting_guide_core_2.15.html>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

__version__ = '2.15.5.post0'
__version__ = '2.15.6rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Ten Years Gone"

0 comments on commit 357ba68

Please sign in to comment.