summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2019-10-17 09:56:06 -0700
committerToshio Kuratomi <a.badger@gmail.com>2019-10-17 09:56:06 -0700
commit289cdb6ea07e5b1a3872abd6400cd6796830b947 (patch)
treeb6124a95f553ffc2c4e6043fd51777a14aafeb18
parentab8f9969af4cee82017af219867b1530bad3ee59 (diff)
downloadansible-2.9.0rc4.tar.gz
New release v2.9.0rc4v2.9.0rc4
-rw-r--r--changelogs/.changes.yaml12
-rw-r--r--changelogs/CHANGELOG-v2.9.rst26
-rw-r--r--changelogs/fragments/v2.9.0rc4_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 42 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index db81b66a84..133965efce 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1283,3 +1283,15 @@ releases:
- galaxy_api_config.yaml
- v2.9.0rc3_summary.yaml
release_date: '2019-10-10'
+ 2.9.0rc4:
+ codename: Immigrant Song
+ fragments:
+ - 63628-ansible-galaxy-fix-version.yml
+ - ansible-galaxy-handle-import-task-url-changes.yml
+ - ansible-test-default-test-container-1.10.1.yml
+ - ansile-galaxy-preserve-api-append.yml
+ - dont-template-cli-passwords.yml
+ - firewalld-version-0_7_0.yml
+ - no-log-sub-options-invalid-parameter.yaml
+ - v2.9.0rc4_summary.yaml
+ release_date: '2019-10-17'
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index 798d314ca3..c8eaceec94 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,32 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.0rc4
+=========
+
+Release Summary
+---------------
+
+| Release Date: 2019-10-17
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- update ansible-test default-test-container from version 1.9.3 to 1.10.1
+
+Bugfixes
+--------
+
+- **security issue** - Convert CLI provided passwords to text initially, to prevent unsafe context being lost when converting from bytes->text during post processing of PlayContext. This prevents CLI provided passwords from being incorrectly templated (CVE-2019-14856)
+
+- **security issue** - properly hide parameters marked with ``no_log`` in suboptions when invalid parameters are passed to the module (CVE-2019-14858)
+- ansible-galaxy - Ensure we preserve the new URL when appending ``/api`` for the case where the GET succeeds on galaxy.ansible.com
+- ansible-galaxy - Handle the different task resource urls in API responses from publishing collection artifacts to galaxy servers using v2 and v3 APIs.
+- ansible-galaxy cli - fixed ``--version`` argument
+- firewalld - enable the firewalld module to function offline with firewalld version 0.7.0 and newer (https://github.com/ansible/ansible/issues/63254)
+
v2.9.0rc3
=========
diff --git a/changelogs/fragments/v2.9.0rc4_summary.yaml b/changelogs/fragments/v2.9.0rc4_summary.yaml
new file mode 100644
index 0000000000..b136c13811
--- /dev/null
+++ b/changelogs/fragments/v2.9.0rc4_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2019-10-17
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 686bb43684..787f767485 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.9.0rc3.post0'
+__version__ = '2.9.0rc4'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'