summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/.changes.yaml12
-rw-r--r--changelogs/CHANGELOG-v2.6.rst26
-rw-r--r--changelogs/fragments/v2.6.15_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 42 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index ffced2dec2..9ff410271b 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -402,6 +402,18 @@ releases:
- win-become-elevation.yaml
- winrm-ansible-conn-error.yaml
release_date: '2019-02-21'
+ 2.6.15:
+ codename: Heartbreaker
+ fragments:
+ - 40092-mysql_user-match-backticks.yml
+ - aws_ec2_inventory_integration_tests.yaml
+ - to_yaml-default_flow_style.yaml
+ - v2.6.15_summary.yaml
+ - win_domain-cred.yaml
+ - win_file-hidden.yaml
+ - winrm-send-input-check.yaml
+ - zypper-python3.yaml
+ release_date: '2019-03-14'
2.6.2:
codename: Heartbreaker
fragments:
diff --git a/changelogs/CHANGELOG-v2.6.rst b/changelogs/CHANGELOG-v2.6.rst
index 28265aeceb..5267d9fe0c 100644
--- a/changelogs/CHANGELOG-v2.6.rst
+++ b/changelogs/CHANGELOG-v2.6.rst
@@ -2,6 +2,32 @@
Ansible 2.6 "Heartbreaker" Release Notes
========================================
+v2.6.15
+=======
+
+Release Summary
+---------------
+
+| Release Date: 2019-03-14
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ``to_yaml`` filter updated to maintain formatting consistency when used with ``pyyaml`` versions 5.1 and later (https://github.com/ansible/ansible/pull/53772)
+
+Bugfixes
+--------
+
+- inventory_aws_ec2 - fix no_log indentation so AWS temporary credentials aren't displayed in tests
+- mysql_user: match backticks, single and double quotes when checking user privileges.
+- win_domain - Do not fail if DC is already promoted but a reboot is required, return ``reboot_required: True``
+- win_domain - Fix when running without credential delegated authentication - https://github.com/ansible/ansible/issues/53182
+- win_file - Fix issue when managing hidden files and directories - https://github.com/ansible/ansible/issues/42466
+- winrm - attempt to recover from a WinRM send input failure if possible
+- zypper - Fix Python 3 compatibility issues
+
v2.6.14
=======
diff --git a/changelogs/fragments/v2.6.15_summary.yaml b/changelogs/fragments/v2.6.15_summary.yaml
new file mode 100644
index 0000000000..f77f13658a
--- /dev/null
+++ b/changelogs/fragments/v2.6.15_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2019-03-14
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index ca7c67e482..00e583bab3 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.6.14.post0'
+__version__ = '2.6.15'
__author__ = 'Ansible, Inc.'
__codename__ = 'Heartbreaker'