New release 2.5.7

pull/43491/head v2.5.7
Matt Davis 6 years ago
parent fe61636d66
commit 41a0bcf2fc

@ -2,6 +2,40 @@
Ansible 2.5 "Kashmir" Release Notes
===================================
.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.7:
v2.5.7
======
.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.7_Release Summary:
Release Summary
---------------
| Release Date: 2018-07-26
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_
.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.7_Bugfixes:
Bugfixes
--------
- eos_facts - fix failure when lldp will be disabled (https://github.com/ansible/ansible/pull/42347)
- ios_vlan - fix unable to identify correct vlan issue (https://github.com/ansible/ansible/pull/42247)
- ios_linkagg - fix picking correct interface names issue (https://github.com/ansible/ansible/pull/42557)
- get_capabilities in nxapi module_utils should not return empty dictionary (https://github.com/ansible/ansible/pull/42688).
- Enforcing NXAPI default HTTP behavior (https://github.com/ansible/ansible/pull/41817).
- pause - do not set stdout to raw mode when redirecting to a file (https://github.com/ansible/ansible/issues/41717)
- pause - nest try except when importing curses to gracefully fail if curses is not present (https://github.com/ansible/ansible/issues/42004)
.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.6:
v2.5.6

@ -1,2 +1,2 @@
- bugfixes:
- ios_vlan - fix unable to identify correct vlan issue (https://github.com/ansible/ansible/pull/42247)
bugfixes:
- ios_vlan - fix unable to identify correct vlan issue (https://github.com/ansible/ansible/pull/42247)

@ -1,2 +1,2 @@
- bugfixes:
- ios_linkagg - fix picking correct interface names issue (https://github.com/ansible/ansible/pull/42557)
bugfixes:
- ios_linkagg - fix picking correct interface names issue (https://github.com/ansible/ansible/pull/42557)

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2018-07-26
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.5.6'
__version__ = '2.5.7'
__author__ = 'Ansible, Inc.'
__codename__ = 'Kashmir'

Loading…
Cancel
Save