Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjamesmarshall24 <james.marshall@redhat.com>2022-10-03 18:53:54 +0300
committerGitHub <noreply@github.com>2022-10-03 18:53:54 +0300
commit2935773482f65fe994eef6f3f9bc1a8cf0db3f70 (patch)
treed2934e806c926dc75da184b8b645b3a6ab36ba81
parent43cfdf3822251083b00ddbd0aef1651d8741763f (diff)
New release v2.13.5rc1 (#78937)v2.13.5rc1
-rw-r--r--changelogs/CHANGELOG-v2.13.rst19
-rw-r--r--changelogs/changelog.yaml26
-rw-r--r--changelogs/fragments/v2.13.5rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 49 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst
index 26e821976c7..5d2dd1d3fa6 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 98e8e90be24..c1d97d65439 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 00000000000..c480eeff989
--- /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 964b7bc846b..fef794c9526 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"