New release v2.13.5 (#79075)

pull/79099/head v2.13.5
jamesmarshall24 2 years ago committed by GitHub
parent dcc60165d1
commit 09cf0ed123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,13 +5,13 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics .. contents:: Topics
v2.13.5rc1 v2.13.5
========== =======
Release Summary Release Summary
--------------- ---------------
| Release Date: 2022-10-03 | Release Date: 2022-10-10
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__ | `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-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 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). - 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) - 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 - plugin loader, fix detection for existing configuration before initializing for a plugin
v2.13.4 v2.13.4

@ -1050,6 +1050,27 @@ releases:
- ansible-test-self-change-classification.yml - ansible-test-self-change-classification.yml
- v2.13.4rc1_summary.yaml - v2.13.4rc1_summary.yaml
release_date: '2022-09-06' 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: 2.13.5rc1:
changes: changes:
bugfixes: bugfixes:

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

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

Loading…
Cancel
Save