New release v2.5.0rc3

pull/37699/head v2.5.0rc3
Matt Davis 7 years ago
parent 3b1df95798
commit 144e5ae65a

@ -2,17 +2,32 @@
Ansible 2.5 "Kashmir" Release Notes
===================================
v2.5.0rc2
v2.5.0rc3
=========
Release Summary
---------------
| Release Date: 2018-03-08
| Estimated Final Release: 2018-03-15
| Release Date: 2018-03-15
| Estimated Final Release: 2018-03-22
| `Porting Guide <http://docs.ansible.com/ansible/devel/porting_guides.html>`_
Bugfixes
--------
- Connection error messages may contain characters that jinja2 would interpret as a template. Wrap the error string so this doesn't happen (https://github.com/ansible/ansible/pull/37329)
- Fix onyx_linkagg module writing debugging information to a tempfile on the remote machine (https://github.com/ansible/ansible/pull/37308)
- terraform - fixed typo in module result stdout value (https://github.com/ansible/ansible/pull/37253)
- setup - ensure that `ansible_lo` is properly nested under ansible_facts (https://github.com/ansible/ansible/pull/37360)
v2.5.0rc2
=========
Major Changes
-------------
@ -157,12 +172,6 @@ Bugfixes
v2.5.0b2
========
Release Summary
---------------
| Release Date: 2018-02-15
Major Changes
-------------

@ -1,3 +1,2 @@
---
bugfixes:
- Fix onyx_linkagg module writing debugging information to a tempfile on the remote machine: https://github.com/ansible/ansible/pull/37308
- Fix onyx_linkagg module writing debugging information to a tempfile on the remote machine (https://github.com/ansible/ansible/pull/37308)

@ -1,2 +0,0 @@
release_summary: |
| Release Date: 2018-02-15

@ -0,0 +1,3 @@
bugfixes:
- terraform - fixed typo in module result stdout value (https://github.com/ansible/ansible/pull/37253)
- setup - ensure that `ansible_lo` is properly nested under ansible_facts (https://github.com/ansible/ansible/pull/37360)

@ -1,4 +1,4 @@
release_summary: |
| Release Date: 2018-03-08
| Estimated Final Release: 2018-03-15
| Release Date: 2018-03-15
| Estimated Final Release: 2018-03-22
| `Porting Guide <http://docs.ansible.com/ansible/devel/porting_guides.html>`_

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

Loading…
Cancel
Save