summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Davis <mrd@redhat.com>2018-09-27 14:08:51 -0700
committerMatt Davis <mrd@redhat.com>2018-09-27 16:30:06 -0700
commit37ca38bf67a37265b9c3e15fecf088a47427c017 (patch)
tree4e4b5bcbca41299df1bb7be405da526a6b2d5504
parent954bf74158864efecdc2cb78f6d220ea64bf5a19 (diff)
downloadansible-37ca38bf67a37265b9c3e15fecf088a47427c017.tar.gz
New release v2.5.10v2.5.10
-rw-r--r--changelogs/CHANGELOG-v2.5.rst60
-rw-r--r--changelogs/fragments/no-dynamic-import-tasks.yaml3
-rw-r--r--changelogs/fragments/v2.5.10_summary.yaml4
-rw-r--r--lib/ansible/release.py2
4 files changed, 68 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.5.rst b/changelogs/CHANGELOG-v2.5.rst
index 4bb8868729..ea8a08fd0b 100644
--- a/changelogs/CHANGELOG-v2.5.rst
+++ b/changelogs/CHANGELOG-v2.5.rst
@@ -2,11 +2,71 @@
Ansible 2.5 "Kashmir" Release Notes
===================================
+.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.10:
+
+v2.5.10
+=======
+
+.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.10_Release Summary:
+
+Release Summary
+---------------
+
+| Release Date: 2018-09-27
+| **Final scheduled release in 2.5 series**; future releases will be for critical security fixes only
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_
+
+
+.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.10_Bugfixes:
+
+Bugfixes
+--------
+
+- docker connection - Support empty files with copying to target (https://github.com/ansible/ansible/issues/36725)
+
+- chroot connection - Support empty files with copying to target (https://github.com/ansible/ansible/issues/36725)
+
+- jail connection - Support empty files with copying to target (https://github.com/ansible/ansible/issues/36725)
+
+- kubectl connection - Support empty files with copying to target (https://github.com/ansible/ansible/issues/36725)
+
+- libvirt_lxc connection - Support empty files with copying to target (https://github.com/ansible/ansible/issues/36725)
+
+- zone connection - Support empty files with copying to target (https://github.com/ansible/ansible/issues/36725)
+
+- cloudfront - fix bug when CloudFrontOriginAccessIdentityList is missing (https://github.com/ansible/ansible/pull/44984)
+
+- vyos_facts - fix vyos_facts not returning version number issue (https://github.com/ansible/ansible/pull/39115)
+
+- get_url - Don't re-download files unnecessarily when force=no (https://github.com/ansible/ansible/issues/45491)
+
+- loop - Ensure that a loop with a when condition that evaluates to false and delegate_to, will short circuit if the loop references an undefined variable. This matches the behavior in the same scenario without delegate_to (https://github.com/ansible/ansible/issues/45189)
+
+- mysql_*, proxysql_* - PyMySQL (a pure-Python MySQL driver) is now a preferred dependency also supporting Python 3.X.
+
+- nxos terminal plugin - fix python2.6 `nothing to repeat` bug (https://github.com/ansible/ansible/pull/45271).
+
+- ssh connection - Support empty files with piped transfer_method (https://github.com/ansible/ansible/issues/45426)
+
+- PLUGIN_FILTERS_CFG - Ensure that the value is treated as type=path, and that we use the standard section of ``defaults`` instead of ``default`` (https://github.com/ansible/ansible/pull/45994)
+
+- script inventory plugin - Don't pass file_name to DataLoader.load, which will prevent misleading error messages (https://github.com/ansible/ansible/issues/34164)
+
+
.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.9:
v2.5.9
======
+.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.9_Release Summary:
+
+Release Summary
+---------------
+
+| Release Date: 2018-09-10
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_
+
+
.. _Ansible 2.5 "Kashmir" Release Notes_v2.5.9_Minor Changes:
Minor Changes
diff --git a/changelogs/fragments/no-dynamic-import-tasks.yaml b/changelogs/fragments/no-dynamic-import-tasks.yaml
index b1bab23e9c..08ce504d52 100644
--- a/changelogs/fragments/no-dynamic-import-tasks.yaml
+++ b/changelogs/fragments/no-dynamic-import-tasks.yaml
@@ -1,2 +1,5 @@
minor_changes:
- import_tasks - Do not allow import_tasks to transition to dynamic if the file is missing (https://github.com/ansible/ansible/issues/44822)
+release_summary: |
+ | Release Date: 2018-09-10
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_
diff --git a/changelogs/fragments/v2.5.10_summary.yaml b/changelogs/fragments/v2.5.10_summary.yaml
new file mode 100644
index 0000000000..f0e06a738b
--- /dev/null
+++ b/changelogs/fragments/v2.5.10_summary.yaml
@@ -0,0 +1,4 @@
+release_summary: |
+ | Release Date: 2018-09-27
+ | **Final scheduled release in 2.5 series**; future releases will be for critical security fixes only
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 5ad3fc37f5..725918aaec 100644
--- a/lib/ansible/release.py
+++ b/lib/ansible/release.py
@@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
-__version__ = '2.5.9'
+__version__ = '2.5.10'
__author__ = 'Ansible, Inc.'
__codename__ = 'Kashmir'