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-10 17:27:11 +0300
committerGitHub <noreply@github.com>2022-10-10 17:27:11 +0300
commit09cf0ed123acc3aa41deea0b81ca0574ac59da65 (patch)
treea193cfa00fe84950e48983ba229ac56c0f8cebde
parentdcc60165d14b4d876ba920143ae94dfdc5864e9e (diff)
New release v2.13.5 (#79075)v2.13.5
-rw-r--r--changelogs/CHANGELOG-v2.13.rst9
-rw-r--r--changelogs/changelog.yaml21
-rw-r--r--changelogs/fragments/v2.13.5_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 31 insertions, 4 deletions
diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst
index 5d2dd1d3fa6..db1b91e1074 100644
--- a/changelogs/CHANGELOG-v2.13.rst
+++ b/changelogs/CHANGELOG-v2.13.rst
@@ -5,13 +5,13 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics
-v2.13.5rc1
-==========
+v2.13.5
+=======
Release Summary
---------------
-| Release Date: 2022-10-03
+| Release Date: 2022-10-10
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
@@ -21,7 +21,10 @@ 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).
+- apt - Fix module failure when a package is not installed and only_upgrade=True. Skip that package and check the remaining requested packages for upgrades. (https://github.com/ansible/ansible/issues/78762)
+- apt module should not traceback on invalid type given as package. issue 78663.
- known_hosts - do not return changed status when a non-existing key is removed (https://github.com/ansible/ansible/issues/78598)
+- paramiko - Add back support for ``ssh_args``, ``ssh_common_args``, and ``ssh_extra_args`` for parsing the ``ProxyCommand`` (https://github.com/ansible/ansible/issues/78750)
- 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 c1d97d65439..c6806b11be6 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1050,6 +1050,27 @@ releases:
- ansible-test-self-change-classification.yml
- v2.13.4rc1_summary.yaml
release_date: '2022-09-06'
+ 2.13.5:
+ changes:
+ bugfixes:
+ - apt - Fix module failure when a package is not installed and only_upgrade=True.
+ Skip that package and check the remaining requested packages for upgrades.
+ (https://github.com/ansible/ansible/issues/78762)
+ - apt module should not traceback on invalid type given as package. issue 78663.
+ - paramiko - Add back support for ``ssh_args``, ``ssh_common_args``, and ``ssh_extra_args``
+ for parsing the ``ProxyCommand`` (https://github.com/ansible/ansible/issues/78750)
+ release_summary: '| Release Date: 2022-10-10
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Nobody's Fault but Mine
+ fragments:
+ - 78750-paramiko-ssh-args-compat.yml
+ - 78781-fix-apt-only_upgrade-behavior.yml
+ - apt_notb.yml
+ - v2.13.5_summary.yaml
+ release_date: '2022-10-10'
2.13.5rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.13.5_summary.yaml b/changelogs/fragments/v2.13.5_summary.yaml
new file mode 100644
index 00000000000..a282c2f5bd5
--- /dev/null
+++ b/changelogs/fragments/v2.13.5_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-10-10
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index f21fec3dada..31b0bf374af 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.5rc1.post0'
+__version__ = '2.13.5'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"