From ae90774f2b252573f1f6a2f9f75458a677ff1335 Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Mon, 29 Mar 2021 19:31:47 -0500 Subject: [PATCH] New release v2.11.0b4 (#74063) --- changelogs/CHANGELOG-v2.11.rst | 27 +++++++++++++++ changelogs/changelog.yaml | 37 +++++++++++++++++++++ changelogs/fragments/v2.11.0b4_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.11.0b4_summary.yaml diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst index 8f6aab761c1..f65c43d5423 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 `__ + + +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 768685a07f9..4ba155d2b17 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 `__ + + ' + 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 00000000000..f5af0c269fd --- /dev/null +++ b/changelogs/fragments/v2.11.0b4_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2021-03-29 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 38843eaeb62..685f84be791 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'