summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2021-03-29 19:31:47 -0500
committerGitHub <noreply@github.com>2021-03-29 19:31:47 -0500
commitae90774f2b252573f1f6a2f9f75458a677ff1335 (patch)
tree94ad9e082b74bac8808326856ccdd2903e508445
parent454c7e37eca922c2085c8e786b1a2e53f28b379a (diff)
downloadansible-ae90774f2b252573f1f6a2f9f75458a677ff1335.tar.gz
New release v2.11.0b4 (#74063)v2.11.0b4
-rw-r--r--changelogs/CHANGELOG-v2.11.rst27
-rw-r--r--changelogs/changelog.yaml37
-rw-r--r--changelogs/fragments/v2.11.0b4_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 68 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst
index 8f6aab761c..f65c43d542 100644
--- a/changelogs/CHANGELOG-v2.11.rst
+++ b/changelogs/CHANGELOG-v2.11.rst
@@ -5,6 +5,33 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes
.. contents:: Topics
+v2.11.0b4
+=========
+
+Release Summary
+---------------
+
+| Release Date: 2021-03-29
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ansible-galaxy CLI - ``collection verify`` command now exits with a non-zero exit code on verification failure
+- ansible-galaxy CLI - ``collection verify`` command now supports a ``--offline`` option for local-only verification
+
+Bugfixes
+--------
+
+- Correctly set template_path and template_fullpath for usage in template lookup and action plugins.
+- Try to avoid kernel 'blocking' state on reading files while fact gathering.
+- apt - fix policy_rc_d parameter throwing an exception when restoring original file (https://github.com/ansible/ansible/issues/66211)
+- 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).
+- pause - do not accept enter to continue when a timeout is set (https://github.com/ansible/ansible/issues/73948)
+- setup module, fix error handling on bad subset given
+- wait_for module, move missing socket into function to get proper comparrison in time.
+
v2.11.0b3
=========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 768685a07f..4ba155d2b1 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1549,3 +1549,40 @@ releases:
- use-validator-in-ansiblemodule.yml
- v2.11.0b3_summary.yaml
release_date: '2021-03-19'
+ 2.11.0b4:
+ changes:
+ bugfixes:
+ - Correctly set template_path and template_fullpath for usage in template lookup
+ and action plugins.
+ - Try to avoid kernel 'blocking' state on reading files while fact gathering.
+ - apt - fix policy_rc_d parameter throwing an exception when restoring original
+ file (https://github.com/ansible/ansible/issues/66211)
+ - 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).
+ - pause - do not accept enter to continue when a timeout is set (https://github.com/ansible/ansible/issues/73948)
+ - setup module, fix error handling on bad subset given
+ - wait_for module, move missing socket into function to get proper comparrison
+ in time.
+ minor_changes:
+ - ansible-galaxy CLI - ``collection verify`` command now exits with a non-zero
+ exit code on verification failure
+ - ansible-galaxy CLI - ``collection verify`` command now supports a ``--offline``
+ option for local-only verification
+ release_summary: '| Release Date: 2021-03-29
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Hey Hey, What Can I Do
+ fragments:
+ - 73840_apt-policy-rc-d.yml
+ - 73948-pause-no-enter-with-timeout.yml
+ - 74029-argspec-apply_defaults.yml
+ - fix_setup_bad_subset.yml
+ - galaxy_verify_exitcode.yml
+ - galaxy_verify_local.yml
+ - less_blocks_on_facts.yml
+ - template_temp_vars_fix.yml
+ - v2.11.0b4_summary.yaml
+ - wait_for_fix.yml
+ release_date: '2021-03-29'
diff --git a/changelogs/fragments/v2.11.0b4_summary.yaml b/changelogs/fragments/v2.11.0b4_summary.yaml
new file mode 100644
index 0000000000..f5af0c269f
--- /dev/null
+++ b/changelogs/fragments/v2.11.0b4_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-03-29
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 38843eaeb6..685f84be79 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.11.0b3.post0'
+__version__ = '2.11.0b4'
__author__ = 'Ansible, Inc.'
__codename__ = 'Hey Hey, What Can I Do'