summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/.changes.yaml13
-rw-r--r--changelogs/CHANGELOG-v2.6.rst26
-rw-r--r--changelogs/fragments/v2.6.14_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 43 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index c59df3e878..ffced2dec2 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -389,6 +389,19 @@ releases:
- vmware_guest-documentation_fix.yaml
- win_power_plan-windows10.yaml
release_date: '2019-02-07'
+ 2.6.14:
+ codename: Heartbreaker
+ fragments:
+ - 45378-fix-sql-tags.yml
+ - 51781-fixing-managed-disk-facts.yaml
+ - 52130-win_psmodule-update_nuget.yaml
+ - 52388-postgresqldatabase-fix-force-update.yml
+ - 52389-mysqldatabase-fix-force-update.yaml
+ - disallow-relative-homedir.yaml
+ - v2.6.14_summary.yaml
+ - win-become-elevation.yaml
+ - winrm-ansible-conn-error.yaml
+ release_date: '2019-02-21'
2.6.2:
codename: Heartbreaker
fragments:
diff --git a/changelogs/CHANGELOG-v2.6.rst b/changelogs/CHANGELOG-v2.6.rst
index ab73fb0fe9..28265aeceb 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.14
+=======
+
+Release Summary
+---------------
+
+| Release Date: 2019-02-21
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Raise AnsibleConnectionError on winrm connnection errors
+
+Bugfixes
+--------
+
+- azure_rm_managed_disk_facts - added missing implementation of listing managed disks by resource group
+- azure_rm_postgresqldatabase - fix force_update bug (https://github.com/ansible/ansible/issues/50978).
+- azure_rm_postgresqldatabase - fix force_update bug.
+- azure_rm_sqlserver - fix for tags support
+- remote home directory - Disallow use of remote home directories that include relative pathing by means of `..` (CVE-2019-3828) (https://github.com/ansible/ansible/pull/52133)
+- win become - Fix some scenarios where become failed to create an elevated process
+- win_psmodule - the NuGet package provider will be updated, if needed, to avoid issue under adding a repository
+
v2.6.13
=======
diff --git a/changelogs/fragments/v2.6.14_summary.yaml b/changelogs/fragments/v2.6.14_summary.yaml
new file mode 100644
index 0000000000..2942df6ff1
--- /dev/null
+++ b/changelogs/fragments/v2.6.14_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2019-02-21
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 16b207563a..a8a85604d7 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.13.post0'
+__version__ = '2.6.14'
__author__ = 'Ansible, Inc.'
__codename__ = 'Heartbreaker'