New release v2.9.0rc4

pull/63644/head v2.9.0rc4
Toshio Kuratomi 6 years ago
parent ab8f9969af
commit 289cdb6ea0

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

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

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2019-10-17
| `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.9.0rc3.post0'
__version__ = '2.9.0rc4'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'

Loading…
Cancel
Save