New release v2.13.5rc1 (#78937)

pull/78995/head v2.13.5rc1
jamesmarshall24 2 years ago committed by GitHub
parent 43cfdf3822
commit 2935773482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,25 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics
v2.13.5rc1
==========
Release Summary
---------------
| Release Date: 2022-10-03
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
Bugfixes
--------
- ``ansible-galaxy`` - remove extra server api call during dependency resolution for requirements and dependencies that are already satisfied (https://github.com/ansible/ansible/issues/77443).
- ansible-test - Allow disabled, unsupported, unstable and destructive integration test targets to be selected using their respective prefixes.
- ansible-test - Allow unstable tests to run when targeted changes are made and the ``--allow-unstable-changed`` option is specified (resolves https://github.com/ansible/ansible/issues/74213).
- known_hosts - do not return changed status when a non-existing key is removed (https://github.com/ansible/ansible/issues/78598)
- plugin loader, fix detection for existing configuration before initializing for a plugin
v2.13.4
=======

@ -1050,3 +1050,29 @@ releases:
- ansible-test-self-change-classification.yml
- v2.13.4rc1_summary.yaml
release_date: '2022-09-06'
2.13.5rc1:
changes:
bugfixes:
- '``ansible-galaxy`` - remove extra server api call during dependency resolution
for requirements and dependencies that are already satisfied (https://github.com/ansible/ansible/issues/77443).'
- ansible-test - Allow disabled, unsupported, unstable and destructive integration
test targets to be selected using their respective prefixes.
- ansible-test - Allow unstable tests to run when targeted changes are made
and the ``--allow-unstable-changed`` option is specified (resolves https://github.com/ansible/ansible/issues/74213).
- known_hosts - do not return changed status when a non-existing key is removed
(https://github.com/ansible/ansible/issues/78598)
- plugin loader, fix detection for existing configuration before initializing
for a plugin
release_summary: '| Release Date: 2022-10-03
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
'
codename: Nobody's Fault but Mine
fragments:
- 77468-ansible-galaxy-remove-unnecessary-api-call.yml
- 78878--fix-known-hosts-wrong-changed-status.yaml
- ansible-test-integration-targets-filter.yml
- plugin_loader_fix.yml
- v2.13.5rc1_summary.yaml
release_date: '2022-10-03'

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2022-10-03
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.13.4.post0'
__version__ = '2.13.5rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"

Loading…
Cancel
Save