New release v2.7.13

pull/61428/head v2.7.13
Toshio Kuratomi 6 years ago
parent 62138612c8
commit 24007b5d4b

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

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

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2019-08-15
| `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.7.12.post0'
__version__ = '2.7.13'
__author__ = 'Ansible, Inc.'
__codename__ = 'In the Light'

Loading…
Cancel
Save