From da048ae80d32eb150bcd818fff37eb19df692651 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 3 Apr 2019 15:38:52 -0700 Subject: [PATCH] New release v2.6.16 --- changelogs/.changes.yaml | 19 +++++++++++++ changelogs/CHANGELOG-v2.6.rst | 33 +++++++++++++++++++++++ changelogs/fragments/v2.6.16_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.6.16_summary.yaml diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml index 9ff410271b1..73990ba364a 100644 --- a/changelogs/.changes.yaml +++ b/changelogs/.changes.yaml @@ -414,6 +414,25 @@ releases: - winrm-send-input-check.yaml - zypper-python3.yaml release_date: '2019-03-14' + 2.6.16: + codename: Heartbreaker + fragments: + - 54192-openssl_publickey-openssh-passphrase.yml + - v2.6.16_summary.yaml + - win_acl-paths.yaml + - win_acl_inheritance-paths.yaml + - win_certificate_store-paths.yaml + - win_chocolatey-update.yaml + - win_copy-paths.yaml + - win_file-paths.yaml + - win_find-paths.yaml + - win_mod_utils-paths.yaml + - win_owner-paths.yaml + - win_slurp-paths.yaml + - win_tempfile-path.yaml + - win_user_right-output.yaml + - winrm-all-timeout-exceptions.yaml + release_date: '2019-04-03' 2.6.2: codename: Heartbreaker fragments: diff --git a/changelogs/CHANGELOG-v2.6.rst b/changelogs/CHANGELOG-v2.6.rst index 5267d9fe0c1..c752c302e6f 100644 --- a/changelogs/CHANGELOG-v2.6.rst +++ b/changelogs/CHANGELOG-v2.6.rst @@ -2,6 +2,39 @@ Ansible 2.6 "Heartbreaker" Release Notes ======================================== +v2.6.16 +======= + +Release Summary +--------------- + +| Release Date: 2019-04-03 +| `Porting Guide `__ + + +Minor Changes +------------- + +- Catch all connection timeout related exceptions and raise AnsibleConnectionError instead + +Bugfixes +-------- + +- openssl_publickey - fixed crash on Python 3 when OpenSSH private keys were used with passphrases. +- slurp - Fix issues when using paths on Windows with glob like characters, e.g. ``[``, ``]`` +- win_acl - Fix issues when using paths with glob like characters, e.g. ``[``, ``]`` +- win_acl_inheritance - Fix issues when using paths with glob like characters, e.g. ``[``, ``]`` +- win_certificate_store - Fix issues when using paths with glob like characters, e.g. ``[``, ``]`` +- win_chocolatey - Fix incompatibilities with the latest release of Chocolatey ``v0.10.12+`` +- win_copy - Fix issues when using paths with glob like characters, e.g. ``[``, ``]`` +- win_file - Fix issues when using paths with glob like characters, e.g. ``[``, ``]`` +- win_find - Ensure found files are sorted alphabetically by the path instead of it being random +- win_find - Fix issues when using paths with glob like characters, e.g. ``[``, ``]`` +- win_owner - Fix issues when using paths with glob like characters, e.g. ``[``, ``]`` +- win_tempfile - Always return the full NTFS absolute path and not a DOS 8.3 path. +- win_user_right - Fix output containing non json data - https://github.com/ansible/ansible/issues/54413 +- windows - Fixed various module utils that did not work with path that had glob like chars + v2.6.15 ======= diff --git a/changelogs/fragments/v2.6.16_summary.yaml b/changelogs/fragments/v2.6.16_summary.yaml new file mode 100644 index 00000000000..89a38182d03 --- /dev/null +++ b/changelogs/fragments/v2.6.16_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2019-04-03 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 423403133be..d58f0e2d1a4 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.15.post0' +__version__ = '2.6.16' __author__ = 'Ansible, Inc.' __codename__ = 'Heartbreaker'