Browse code

New release v2.8.0rc2

Toshio Kuratomi authored on 2019/05/01 21:55:38
Showing 4 changed files
... ...
@@ -1513,3 +1513,11 @@ releases:
1513 1513
     - win_reboot-psrp-command.yaml
1514 1514
     - win_region-format.yaml
1515 1515
     release_date: '2019-04-25'
1516
+  2.8.0rc2:
1517
+    codename: How Many More Times
1518
+    fragments:
1519
+    - 55515-use-active-state-for-any_errors_fatal.yaml
1520
+    - bad_empty_play.yml
1521
+    - ps-basic-json.yaml
1522
+    - v2.8.0rc2_summary.yaml
1523
+    release_date: '2019-05-01'
... ...
@@ -5,6 +5,23 @@ Ansible 2.8 "How Many More Times" Release Notes
5 5
 .. contents:: Topics
6 6
 
7 7
 
8
+v2.8.0rc2
9
+=========
10
+
11
+Release Summary
12
+---------------
13
+
14
+| Release Date: 2019-05-01
15
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
16
+
17
+
18
+Bugfixes
19
+--------
20
+
21
+- Ansible.Basic - Fix issue when deserilizing a JSON string that is not a dictionary - https://github.com/ansible/ansible/pull/55691
22
+- Be sure to use the active state when checking for any_errors_fatal
23
+- re allow empty plays for now, but add deprecation msg.
24
+
8 25
 v2.8.0rc1
9 26
 =========
10 27
 
11 28
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+release_summary: |
1
+   | Release Date: 2019-05-01
2
+   | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
... ...
@@ -19,6 +19,6 @@
19 19
 from __future__ import (absolute_import, division, print_function)
20 20
 __metaclass__ = type
21 21
 
22
-__version__ = '2.8.0rc1.post0'
22
+__version__ = '2.8.0rc2'
23 23
 __author__ = 'Ansible, Inc.'
24 24
 __codename__ = 'How Many More Times'