New release v2.6.0rc5

pull/42015/head v2.6.0rc5
Matt Clay 6 years ago
parent bd1ecd016b
commit 478ab3f8b1

@ -316,3 +316,13 @@ releases:
- win_updates-async-fix.yml - win_updates-async-fix.yml
- winrm_kinit-remove-pass-log.yml - winrm_kinit-remove-pass-log.yml
release_date: '2018-06-25' release_date: '2018-06-25'
2.6.0rc5:
codename: Heartbreaker
fragments:
- fix_options.yml
- fix_password_lookup_loading.yaml
- group_by_localhost.yaml
- lineinfile-insertbefore-bof-bugfix.yaml
- v2.6.0rc5_summary.yaml
- win_iis_webapppool-output-fix.yml
release_date: '2018-06-26'

@ -2,6 +2,25 @@
Ansible 2.6 "Heartbreaker" Release Notes Ansible 2.6 "Heartbreaker" Release Notes
======================================== ========================================
v2.6.0rc5
=========
Release Summary
---------------
| Release Date: 2018-06-26
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_
Bugfixes
--------
- allow set_options to be called multiple times https://github.com/ansible/ansible/pull/41913
- group_by - support implicit localhost (https://github.com/ansible/ansible/pull/41860)
- lineinfile - fix insertbefore when used with BOF to not insert duplicate lines (https://github.com/ansible/ansible/issues/38219)
- password lookup - Do not load password lookup in network filters, allowing the password lookup to be overriden (https://github.com/ansible/ansible/pull/41907)
- win_iis_webapppool - redirect some module output to null so Ansible can read the output JSON https://github.com/ansible/ansible/issues/40874
v2.6.0rc4 v2.6.0rc4
========= =========

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2018-06-26
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`_

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function) from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
__version__ = '2.6.0rc4.dev0' __version__ = '2.6.0rc5'
__author__ = 'Ansible, Inc.' __author__ = 'Ansible, Inc.'
__codename__ = 'Heartbreaker' __codename__ = 'Heartbreaker'

Loading…
Cancel
Save