Browse code

New release v2.11.0b4 (#74063)

Rick Elrod authored on 2021/03/30 09:31:47
Showing 4 changed files
... ...
@@ -5,6 +5,33 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes
5 5
 .. contents:: Topics
6 6
 
7 7
 
8
+v2.11.0b4
9
+=========
10
+
11
+Release Summary
12
+---------------
13
+
14
+| Release Date: 2021-03-29
15
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
16
+
17
+
18
+Minor Changes
19
+-------------
20
+
21
+- ansible-galaxy CLI - ``collection verify`` command now exits with a non-zero exit code on verification failure
22
+- ansible-galaxy CLI - ``collection verify`` command now supports a ``--offline`` option for local-only verification
23
+
24
+Bugfixes
25
+--------
26
+
27
+- Correctly set template_path and template_fullpath for usage in template lookup and action plugins.
28
+- Try to avoid kernel 'blocking' state on reading files while fact gathering.
29
+- apt - fix policy_rc_d parameter throwing an exception when restoring original file (https://github.com/ansible/ansible/issues/66211)
30
+- argument spec validation - fix behavior of ``apply_defaults=True`` when an empty dictionary is specified for such an option (https://github.com/ansible/ansible/pull/74029).
31
+- pause - do not accept enter to continue when a timeout is set (https://github.com/ansible/ansible/issues/73948)
32
+- setup module, fix error handling on bad subset given
33
+- wait_for module, move missing socket into function to get proper comparrison in time.
34
+
8 35
 v2.11.0b3
9 36
 =========
10 37
 
... ...
@@ -1549,3 +1549,40 @@ releases:
1549 1549
     - use-validator-in-ansiblemodule.yml
1550 1550
     - v2.11.0b3_summary.yaml
1551 1551
     release_date: '2021-03-19'
1552
+  2.11.0b4:
1553
+    changes:
1554
+      bugfixes:
1555
+      - Correctly set template_path and template_fullpath for usage in template lookup
1556
+        and action plugins.
1557
+      - Try to avoid kernel 'blocking' state on reading files while fact gathering.
1558
+      - apt - fix policy_rc_d parameter throwing an exception when restoring original
1559
+        file (https://github.com/ansible/ansible/issues/66211)
1560
+      - argument spec validation - fix behavior of ``apply_defaults=True`` when an
1561
+        empty dictionary is specified for such an option (https://github.com/ansible/ansible/pull/74029).
1562
+      - pause - do not accept enter to continue when a timeout is set (https://github.com/ansible/ansible/issues/73948)
1563
+      - setup module, fix error handling on bad subset given
1564
+      - wait_for module, move missing socket into function to get proper comparrison
1565
+        in time.
1566
+      minor_changes:
1567
+      - ansible-galaxy CLI - ``collection verify`` command now exits with a non-zero
1568
+        exit code on verification failure
1569
+      - ansible-galaxy CLI - ``collection verify`` command now supports a ``--offline``
1570
+        option for local-only verification
1571
+      release_summary: '| Release Date: 2021-03-29
1572
+
1573
+        | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
1574
+
1575
+        '
1576
+    codename: Hey Hey, What Can I Do
1577
+    fragments:
1578
+    - 73840_apt-policy-rc-d.yml
1579
+    - 73948-pause-no-enter-with-timeout.yml
1580
+    - 74029-argspec-apply_defaults.yml
1581
+    - fix_setup_bad_subset.yml
1582
+    - galaxy_verify_exitcode.yml
1583
+    - galaxy_verify_local.yml
1584
+    - less_blocks_on_facts.yml
1585
+    - template_temp_vars_fix.yml
1586
+    - v2.11.0b4_summary.yaml
1587
+    - wait_for_fix.yml
1588
+    release_date: '2021-03-29'
1552 1589
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+release_summary: |
1
+   | Release Date: 2021-03-29
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.11.0b3.post0'
22
+__version__ = '2.11.0b4'
23 23
 __author__ = 'Ansible, Inc.'
24 24
 __codename__ = 'Hey Hey, What Can I Do'