summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2021-03-19 22:08:27 -0500
committerGitHub <noreply@github.com>2021-03-19 22:08:27 -0500
commit88a1a85ff8c0bd98f10220c8fbb8b9064e0a63c1 (patch)
tree8c2e924c53ca86713e237984e27abf6bd02b2e87
parentc6cf7986ab33249bbf7d1fe68b8084bebbd938fb (diff)
downloadansible-88a1a85ff8c0bd98f10220c8fbb8b9064e0a63c1.tar.gz
New release v2.11.0b3 (#73977)v2.11.0b3
-rw-r--r--changelogs/CHANGELOG-v2.11.rst29
-rw-r--r--changelogs/changelog.yaml38
-rw-r--r--changelogs/fragments/v2.11.0b3_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 71 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst
index 59ca75329f..8f6aab761c 100644
--- a/changelogs/CHANGELOG-v2.11.rst
+++ b/changelogs/CHANGELOG-v2.11.rst
@@ -5,6 +5,35 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes
.. contents:: Topics
+v2.11.0b3
+=========
+
+Release Summary
+---------------
+
+| Release Date: 2021-03-19
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Major Changes
+-------------
+
+- AnsibleModule - use ``ArgumentSpecValidator`` class for validating argument spec and remove private methods related to argument spec validation. Any modules using private methods should now use the ``ArgumentSpecValidator`` class or the appropriate validation function.
+
+Minor Changes
+-------------
+
+- Callbacks - Migrate more places in the ``TaskExecutor`` to sending callbacks directly over the queue, instead of sending them as ``TaskResult`` and short circuiting in the Strategy to send the callback. This enables closer to real time callbacks of retries and loop results (https://github.com/ansible/ansible/issues/73899)
+- setup - fix distribution facts for Older Amazon Linux with ``/etc/os-release`` (https://github.com/ansible/ansible/issues/73946).
+
+Bugfixes
+--------
+
+- Fix adding unrelated candidate names to the plugin loader redirect list.
+- Strategy - When building the task in the Strategy from the Worker, ensure it is properly marked as finalized and squashed. Addresses an issue with ``ansible_failed_task``. (https://github.com/ansible/ansible/issues/57399)
+- ansible-pull - Run all playbooks that when multiple are supplied via the command line (https://github.com/ansible/ansible/issues/72708)
+- find module, fix default pattern when use_regex is true.
+
v2.11.0b2
=========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 57f4b6fc47..768685a07f 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1511,3 +1511,41 @@ releases:
- su_fix.yml
- v2.11.0b2_summary.yaml
release_date: '2021-03-15'
+ 2.11.0b3:
+ changes:
+ bugfixes:
+ - Fix adding unrelated candidate names to the plugin loader redirect list.
+ - Strategy - When building the task in the Strategy from the Worker, ensure
+ it is properly marked as finalized and squashed. Addresses an issue with ``ansible_failed_task``.
+ (https://github.com/ansible/ansible/issues/57399)
+ - ansible-pull - Run all playbooks that when multiple are supplied via the command
+ line (https://github.com/ansible/ansible/issues/72708)
+ - find module, fix default pattern when use_regex is true.
+ major_changes:
+ - AnsibleModule - use ``ArgumentSpecValidator`` class for validating argument
+ spec and remove private methods related to argument spec validation. Any modules
+ using private methods should now use the ``ArgumentSpecValidator`` class or
+ the appropriate validation function.
+ minor_changes:
+ - Callbacks - Migrate more places in the ``TaskExecutor`` to sending callbacks
+ directly over the queue, instead of sending them as ``TaskResult`` and short
+ circuiting in the Strategy to send the callback. This enables closer to real
+ time callbacks of retries and loop results (https://github.com/ansible/ansible/issues/73899)
+ - setup - fix distribution facts for Older Amazon Linux with ``/etc/os-release``
+ (https://github.com/ansible/ansible/issues/73946).
+ release_summary: '| Release Date: 2021-03-19
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Hey Hey, What Can I Do
+ fragments:
+ - 57399-finalize-task-in-strategy.yml
+ - 72708_ansible_pull_multiple_playbooks.yml
+ - 73863-fix-plugin-redirect-list.yaml
+ - 73899-more-te-callbacks.yml
+ - 73946_amazon_linux.yml
+ - fix_find_default.yml
+ - use-validator-in-ansiblemodule.yml
+ - v2.11.0b3_summary.yaml
+ release_date: '2021-03-19'
diff --git a/changelogs/fragments/v2.11.0b3_summary.yaml b/changelogs/fragments/v2.11.0b3_summary.yaml
new file mode 100644
index 0000000000..b6fafb113f
--- /dev/null
+++ b/changelogs/fragments/v2.11.0b3_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-03-19
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index bc3970c72c..cbedc2ee2b 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.0b2.post0'
+__version__ = '2.11.0b3'
__author__ = 'Ansible, Inc.'
__codename__ = 'Hey Hey, What Can I Do'