diff options
-rw-r--r-- | changelogs/CHANGELOG-v2.13.rst | 19 | ||||
-rw-r--r-- | changelogs/changelog.yaml | 26 | ||||
-rw-r--r-- | changelogs/fragments/v2.13.5rc1_summary.yaml | 3 | ||||
-rw-r--r-- | lib/ansible/release.py | 2 |
4 files changed, 49 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst index 26e821976c..5d2dd1d3fa 100644 --- a/changelogs/CHANGELOG-v2.13.rst +++ b/changelogs/CHANGELOG-v2.13.rst @@ -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 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 98e8e90be2..c1d97d6543 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -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' diff --git a/changelogs/fragments/v2.13.5rc1_summary.yaml b/changelogs/fragments/v2.13.5rc1_summary.yaml new file mode 100644 index 0000000000..c480eeff98 --- /dev/null +++ b/changelogs/fragments/v2.13.5rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2022-10-03 + | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 964b7bc846..fef794c952 100644 --- a/lib/ansible/release.py +++ b/lib/ansible/release.py @@ -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" |