From 22d7b7e5f218cfd01327f0be9f70d515316a5762 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 1 May 2019 05:55:38 -0700 Subject: New release v2.8.0rc2 --- changelogs/.changes.yaml | 8 ++++++++ changelogs/CHANGELOG-v2.8.rst | 17 +++++++++++++++++ changelogs/fragments/v2.8.0rc2_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.8.0rc2_summary.yaml diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml index 5207d7f0c6..5fc37d7840 100644 --- a/changelogs/.changes.yaml +++ b/changelogs/.changes.yaml @@ -1513,3 +1513,11 @@ releases: - win_reboot-psrp-command.yaml - win_region-format.yaml release_date: '2019-04-25' + 2.8.0rc2: + codename: How Many More Times + fragments: + - 55515-use-active-state-for-any_errors_fatal.yaml + - bad_empty_play.yml + - ps-basic-json.yaml + - v2.8.0rc2_summary.yaml + release_date: '2019-05-01' diff --git a/changelogs/CHANGELOG-v2.8.rst b/changelogs/CHANGELOG-v2.8.rst index 2e20fdb6a9..63d30d4d90 100644 --- a/changelogs/CHANGELOG-v2.8.rst +++ b/changelogs/CHANGELOG-v2.8.rst @@ -5,6 +5,23 @@ Ansible 2.8 "How Many More Times" Release Notes .. contents:: Topics +v2.8.0rc2 +========= + +Release Summary +--------------- + +| Release Date: 2019-05-01 +| `Porting Guide `__ + + +Bugfixes +-------- + +- Ansible.Basic - Fix issue when deserilizing a JSON string that is not a dictionary - https://github.com/ansible/ansible/pull/55691 +- Be sure to use the active state when checking for any_errors_fatal +- re allow empty plays for now, but add deprecation msg. + v2.8.0rc1 ========= diff --git a/changelogs/fragments/v2.8.0rc2_summary.yaml b/changelogs/fragments/v2.8.0rc2_summary.yaml new file mode 100644 index 0000000000..7150d04af2 --- /dev/null +++ b/changelogs/fragments/v2.8.0rc2_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2019-05-01 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 6670ea696f..03b5b7ca27 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.8.0rc1.post0' +__version__ = '2.8.0rc2' __author__ = 'Ansible, Inc.' __codename__ = 'How Many More Times' -- cgit v1.2.1