New release 2.7.0rc3
This commit is contained in:
parent
6e6825e79f
commit
2a33276385
4 changed files with 27 additions and 1 deletions
|
@ -430,3 +430,10 @@ releases:
|
|||
strategy:
|
||||
- host_pinned
|
||||
release_date: '2018-09-13'
|
||||
2.7.0rc3:
|
||||
codename: In the Light
|
||||
fragments:
|
||||
- ec2_group_fix_target_containing_list_within_list.yaml
|
||||
- fix_nxos_facts_indefinite_hang.yaml
|
||||
- v2.7.0rc3_summary.yaml
|
||||
release_date: '2018-09-20'
|
||||
|
|
|
@ -5,6 +5,22 @@ Ansible 2.7 "In the Light" Release Notes
|
|||
.. contents:: Topics
|
||||
|
||||
|
||||
v2.7.0rc3
|
||||
=========
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
| Release Date: 2018-09-20
|
||||
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
|
||||
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- ec2_group - Sanitize the ingress and egress rules before operating on them by flattening any lists within lists describing the target CIDR(s) into a list of strings. Prior to Ansible 2.6 the ec2_group module accepted a list of strings, a list of lists, or a combination of strings and lists within a list. https://github.com/ansible/ansible/pull/45594
|
||||
- fix nxos_facts indefinite hang for text based output (https://github.com/ansible/ansible/pull/45845).
|
||||
|
||||
v2.7.0rc2
|
||||
=========
|
||||
|
||||
|
|
3
changelogs/fragments/v2.7.0rc3_summary.yaml
Normal file
3
changelogs/fragments/v2.7.0rc3_summary.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
release_summary: |
|
||||
| Release Date: 2018-09-20
|
||||
| `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.0rc2.post0'
|
||||
__version__ = '2.7.0rc3'
|
||||
__author__ = 'Ansible, Inc.'
|
||||
__codename__ = 'In the Light'
|
||||
|
|
Loading…
Add table
Reference in a new issue