New release v2.6.15

pull/53843/head v2.6.15
Toshio Kuratomi 7 years ago
parent 2cae458ba9
commit dd6a174ff0

@ -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:

@ -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
=======

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2019-03-14
| `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.6.14.post0'
__version__ = '2.6.15'
__author__ = 'Ansible, Inc.'
__codename__ = 'Heartbreaker'

Loading…
Cancel
Save