summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2019-08-15 14:07:21 -0700
committerToshio Kuratomi <a.badger@gmail.com>2019-08-15 14:07:21 -0700
commit24007b5d4b191642c5a5a976caad4d7d4a795ebe (patch)
tree6635f5a178ba39b921f6ca2e1771fa3abb0a3064
parent62138612c8eb0b1e767bc9c7ef118d7897eae77f (diff)
downloadansible-24007b5d4b191642c5a5a976caad4d7d4a795ebe.tar.gz
New release v2.7.13v2.7.13
-rw-r--r--changelogs/.changes.yaml6
-rw-r--r--changelogs/CHANGELOG-v2.7.rst15
-rw-r--r--changelogs/fragments/v2.7.13_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 25 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index e12fbb32b7..afc18f8375 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -650,6 +650,12 @@ releases:
- fix_safe_eval.yml
- v2.7.12_summary.yaml
release_date: '2019-07-03'
+ 2.7.13:
+ codename: In the Light
+ fragments:
+ - dont_template_passwords_from_prompt.yml
+ - v2.7.13_summary.yaml
+ release_date: '2019-08-15'
2.7.2:
codename: In the Light
fragments:
diff --git a/changelogs/CHANGELOG-v2.7.rst b/changelogs/CHANGELOG-v2.7.rst
index 32ff6705eb..25333065db 100644
--- a/changelogs/CHANGELOG-v2.7.rst
+++ b/changelogs/CHANGELOG-v2.7.rst
@@ -5,6 +5,21 @@ Ansible 2.7 "In the Light" Release Notes
.. contents:: Topics
+v2.7.13
+=======
+
+Release Summary
+---------------
+
+| Release Date: 2019-08-15
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- resolves CVE-2019-10206, by avoiding templating passwords from prompt as it is probable they have special characters.
+
v2.7.12
=======
diff --git a/changelogs/fragments/v2.7.13_summary.yaml b/changelogs/fragments/v2.7.13_summary.yaml
new file mode 100644
index 0000000000..e587d49db4
--- /dev/null
+++ b/changelogs/fragments/v2.7.13_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2019-08-15
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index a16d1dec4f..fd2ad5cd0b 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.7.12.post0'
+__version__ = '2.7.13'
__author__ = 'Ansible, Inc.'
__codename__ = 'In the Light'