New release v2.5.2

This commit is contained in:
Matt Davis 2018-04-26 10:37:39 -07:00
parent f529d75865
commit 48b75cad8e
8 changed files with 79 additions and 1 deletions

View file

@ -4,6 +4,7 @@ Ansible Releases at a Glance
VERSION RELEASE CODE NAME
++++++++++++++++++++++++++++++
2.5.2 2018-04-26 "Kashmir"
2.5.1 2018-04-18 "Kashmir"
2.5.0 2018-03-22 "Kashmir"
2.4.4 2018-04-04 "Dancing Days"

View file

@ -2,6 +2,56 @@
Ansible 2.5 "Kashmir" Release Notes
===================================
v2.5.2
======
Release Summary
---------------
| Release Date: 2018-04-26
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_
Minor Changes
-------------
- Return virtual_facts after VMware platform detection, otherwise we're falling back to 'NA' for virtualization type and virtualization role.
Bugfixes
--------
- copy - fixed copy to only follow symlinks for files in the non-recursive case
- file - fixed the default follow behaviour of file to be true
- docker modules - Error with useful message is both docker and docker-py are found to both be installed (https://github.com/ansible/ansible/pull/38884)
- dynamic includes - Improved performance by fixing re-parenting on copy (https://github.com/ansible/ansible/pull/38747)
- dynamic includes - Fix IncludedFile comparison for free strategy (https://github.com/ansible/ansible/pull/37083)
- dynamic includes - Allow inheriting attributes from static parents (https://github.com/ansible/ansible/pull/38827)
- Fix ios and iosxr terminal prompt regex (https://github.com/ansible/ansible/pull/39063)
- set_fact/include_vars - allow incremental update for vars in loop (https://github.com/ansible/ansible/pull/38302)
- cloudfront_distribution - support missing protocol versions (https://github.com/ansible/ansible/pull/38990)
- slice filter - removed Ansible-provided impl in favor of Jinja builtin (https://github.com/ansible/ansible/pull/37944)
- ovirt_host_networks - fix removing of network attachments (https://github.com/ansible/ansible/pull/38816)
- ovirt_disk - support removing unmanaged networks (https://github.com/ansible/ansible/pull/38726)
- ovirt_disk - FCP storage domains don't have to have target (https://github.com/ansible/ansible/pull/38882)
- Ansible.ModuleUtils.FileUtil - support using Test-AnsiblePath with non file system providers (https://github.com/ansible/ansible/pull/39200)
- win_get_url - Compare the UTC time of the web file to the local UTC time (https://github.com/ansible/ansible/pull/39152)
v2.5.1
======
@ -209,6 +259,12 @@ Bugfixes
v2.5.0
======
Release Summary
---------------
| Release Date: 2018-03-22
Major Changes
-------------

View file

@ -0,0 +1,7 @@
bugfixes:
- cloudfront_distribution - support missing protocol versions (https://github.com/ansible/ansible/pull/38990)
- slice filter - removed Ansible-provided impl in favor of Jinja builtin (https://github.com/ansible/ansible/pull/37944)
- ovirt_host_networks - fix removing of network attachments (https://github.com/ansible/ansible/pull/38816)
- ovirt_disk - support removing unmanaged networks (https://github.com/ansible/ansible/pull/38726)
- ovirt_disk - FCP storage domains don't have to have target (https://github.com/ansible/ansible/pull/38882)

View file

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

View file

@ -19,5 +19,5 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.5.1'
__version__ = '2.5.2'
__author__ = 'Ansible, Inc.'

View file

@ -5,6 +5,13 @@ ansible (%VERSION%-%RELEASE%~%DIST%) %DIST%; urgency=low
-- Ansible, Inc. <info@ansible.com> %DATE%
ansible (2.5.1-1) unstable; urgency=low
* 2.5.1-1
-- Ansible, Inc. <info@ansible.com> Thu, 19 Apr 2018 00:02:15 +0000
ansible (2.5.0-1) unstable; urgency=low
* 2.5.0-1

View file

@ -4,6 +4,7 @@ versions:
releases:
- "0": "03-22-2018"
- "1": "04-18-2018"
- "2": "04-26-2018"
- "2.4":
code_name: "Dancing Days"
releases:

View file

@ -135,6 +135,9 @@ rm -rf %{buildroot}
%changelog
* Thu Apr 26 2018 Ansible, Inc. <info@ansible.com> - 2.5.2-1
- Release 2.5.2-1
* Thu Apr 18 2018 Ansible, Inc. <info@ansible.com> - 2.5.1-1
- Release 2.5.1-1