From 09cf0ed123acc3aa41deea0b81ca0574ac59da65 Mon Sep 17 00:00:00 2001 From: jamesmarshall24 Date: Mon, 10 Oct 2022 10:27:11 -0400 Subject: New release v2.13.5 (#79075) --- changelogs/CHANGELOG-v2.13.rst | 9 ++++++--- changelogs/changelog.yaml | 21 +++++++++++++++++++++ changelogs/fragments/v2.13.5_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 changelogs/fragments/v2.13.5_summary.yaml diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst index 5d2dd1d3fa..db1b91e107 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 `__ @@ -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 c1d97d6543..c6806b11be 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 `__ + + ' + 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 0000000000..a282c2f5bd --- /dev/null +++ b/changelogs/fragments/v2.13.5_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2022-10-10 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index f21fec3dad..31b0bf374a 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" -- cgit v1.2.1