New release v2.7.16

pull/66834/head v2.7.16
Matt Davis 6 years ago
parent 7c7d334006
commit 8fd406ee8e

@ -672,6 +672,16 @@ releases:
- 63522-remove-args-from-sumologic-and-splunk-callbacks.yml
- v2.7.15_summary.yaml
release_date: '2019-11-13'
2.7.16:
codename: In the Light
fragments:
- ansible-test-coverage-constraint.yml
- ansible-test-ignore-pip-warnings.yml
- ansible-test-setuptools-constraint.yml
- nxos_file_copy_path_issue.yml
- solaris_zone_name_fix.yml
- v2.7.16_summary.yaml
release_date: '2020-01-15'
2.7.2:
codename: In the Light
fragments:

@ -5,6 +5,25 @@ Ansible 2.7 "In the Light" Release Notes
.. contents:: Topics
v2.7.16
=======
Release Summary
---------------
| Release Date: 2020-01-15
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
Bugfixes
--------
- **SECURITY** - CVE-2019-14904 - solaris_zone module accepts zone name and performs actions related to that. However, there is no user input validation done while performing actions. A malicious user could provide a crafted zone name which allows executing commands into the server manipulating the module behaviour. Adding user input validation as per Solaris Zone documentation fixes this issue.
- CVE-2019-14905 - nxos_file_copy module accepts remote_file parameter which is used for destination name and performs actions related to that on the device using the value of remote_file which is of string type However, there is no user input validation done while performing actions. A malicious code could crafts the filename parameter to take advantage by performing an OS command injection. This fix validates the option value if it is legitimate file path or not.
- ansible-test no longer tries to install ``coverage`` 5.0+ since those versions are unsupported
- ansible-test no longer tries to install ``setuptools`` 45+ on Python 2.x since those versions are unsupported
- ansible-test now ignores warnings when comparing pip versions before and after integration tests run
v2.7.15
=======

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2020-01-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.15.post0'
__version__ = '2.7.16'
__author__ = 'Ansible, Inc.'
__codename__ = 'In the Light'

Loading…
Cancel
Save