summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2019-05-01 05:55:38 -0700
committerToshio Kuratomi <a.badger@gmail.com>2019-05-01 06:27:52 -0700
commit22d7b7e5f218cfd01327f0be9f70d515316a5762 (patch)
tree32c55d0ce88448f00b94923b547694ce9d5c483e
parentf03d9c14506383aa3f4dc2c255d5ee0359921c5b (diff)
downloadansible-2.8.0rc2.tar.gz
New release v2.8.0rc2v2.8.0rc2
-rw-r--r--changelogs/.changes.yaml8
-rw-r--r--changelogs/CHANGELOG-v2.8.rst17
-rw-r--r--changelogs/fragments/v2.8.0rc2_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 29 insertions, 1 deletions
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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
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'