Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release v2.13.5 #79075

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions changelogs/CHANGELOG-v2.13.rst
Expand Up @@ -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>`__


Expand All @@ -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
Expand Down
21 changes: 21 additions & 0 deletions changelogs/changelog.yaml
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions 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>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Expand Up @@ -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"