New release v2.9.0rc5
This commit is contained in:
parent
07fa9b5187
commit
149ff0d3ad
4 changed files with 32 additions and 1 deletions
|
@ -1295,3 +1295,11 @@ releases:
|
|||
- no-log-sub-options-invalid-parameter.yaml
|
||||
- v2.9.0rc4_summary.yaml
|
||||
release_date: '2019-10-17'
|
||||
2.9.0rc5:
|
||||
codename: Immigrant Song
|
||||
fragments:
|
||||
- ansible-test-fix-import-sanity-test.yml
|
||||
- fix-ansible-galaxy-server.yml
|
||||
- mqtt-ssl-protocols.yml
|
||||
- v2.9.0rc5_summary.yaml
|
||||
release_date: '2019-10-23'
|
||||
|
|
|
@ -5,6 +5,26 @@ Ansible 2.9 "Immigrant Song" Release Notes
|
|||
.. contents:: Topics
|
||||
|
||||
|
||||
v2.9.0rc5
|
||||
=========
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
| Release Date: 2019-10-23
|
||||
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
|
||||
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- Fix SSL protcol references in the ``mqtt`` module to prevent failures on Python 2.6.
|
||||
- The ansible-galaxy publish command was using an incorrect URL for v3 servers. The configuration for v3 servers includes part of the path fragment that was added in the new test.
|
||||
- ansible-test import sanity test now consistently reports errors against the file being tested.
|
||||
- ansible-test import sanity test now consistently reports warnings as errors.
|
||||
- ansible-test import sanity test now properly handles relative imports.
|
||||
- ansible-test import sanity test now properly invokes Ansible modules as scripts.
|
||||
|
||||
v2.9.0rc4
|
||||
=========
|
||||
|
||||
|
|
3
changelogs/fragments/v2.9.0rc5_summary.yaml
Normal file
3
changelogs/fragments/v2.9.0rc5_summary.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
release_summary: |
|
||||
| Release Date: 2019-10-23
|
||||
| `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.0rc4.post0'
|
||||
__version__ = '2.9.0rc5'
|
||||
__author__ = 'Ansible, Inc.'
|
||||
__codename__ = 'Immigrant Song'
|
||||
|
|
Loading…
Reference in a new issue