summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/.changes.yaml7
-rw-r--r--changelogs/CHANGELOG-v2.7.rst22
-rw-r--r--changelogs/fragments/v2.7.18_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 32 insertions, 2 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 5f45fb18de..1e54ab82b6 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -699,6 +699,13 @@ releases:
- vault_tmp_race_fix.yml
- win-unzip-check-extraction-path.yml
release_date: '2020-04-16'
+ 2.7.18:
+ codename: In the Light
+ fragments:
+ - 68592-pip-check_mode-prereleases.yml
+ - inventory_docs_fix.yml
+ - v2.7.18_summary.yaml
+ release_date: '2020-05-11'
2.7.2:
codename: In the Light
fragments:
diff --git a/changelogs/CHANGELOG-v2.7.rst b/changelogs/CHANGELOG-v2.7.rst
index 74288f9949..06ca565c39 100644
--- a/changelogs/CHANGELOG-v2.7.rst
+++ b/changelogs/CHANGELOG-v2.7.rst
@@ -5,6 +5,26 @@ Ansible 2.7 "In the Light" Release Notes
.. contents:: Topics
+v2.7.18
+=======
+
+Release Summary
+---------------
+
+| Release Date: 2020-05-11
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Point inventory script location to their respective version rather than devel version in documentation.
+
+Bugfixes
+--------
+
+- pip - check_mode with ``state: present`` now returns the correct state for pre-release versioned packages
+
v2.7.17
=======
@@ -37,7 +57,7 @@ Bugfixes
- Ensure DataLoader temp files are removed at appropriate times and that we observe the LOCAL_TMP setting.
- Ensure we don't allow ansible_facts subkey of ansible_facts to override top level, also fix 'deprefixing' to prevent key transforms.
- Ensure we get an error when creating a remote tmp if it already exists. CVE-2020-1733
-- In fetch action, avoid using slurp return to set up dest, also ensure no dir traversal CVE-2019-3828.
+- In fetch action, avoid using slurp return to set up dest, also ensure no dir traversal CVE-2020-1735.
- ansible-test - Use ``virtualenv`` versions before 20 on provisioned macOS instances to remain compatible with an older pip install.
- ansible-test now limits Jinja2 installs to version 2.10 and earlier on Python 2.6
diff --git a/changelogs/fragments/v2.7.18_summary.yaml b/changelogs/fragments/v2.7.18_summary.yaml
new file mode 100644
index 0000000000..fd6bf5738d
--- /dev/null
+++ b/changelogs/fragments/v2.7.18_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-05-11
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 16450ab7de..805d9db370 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.17.post0'
+__version__ = '2.7.18'
__author__ = 'Ansible, Inc.'
__codename__ = 'In the Light'