summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2021-05-17 16:56:55 -0500
committerRick Elrod <rick@elrod.me>2021-05-17 16:56:55 -0500
commit85dd907d0f2dbf0edbff039672bddf315a567084 (patch)
treec8ad2ead685a19f8e96414a63f97831182664db1
parent093986dfaff20295a2e8dfb90bb4063900a8c6ee (diff)
downloadansible-2.10.10rc1.tar.gz
New release v2.10.10rc1v2.10.10rc1
-rw-r--r--changelogs/CHANGELOG-v2.10.rst22
-rw-r--r--changelogs/changelog.yaml34
-rw-r--r--changelogs/fragments/v2.10.10rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 60 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst
index 339c579b94..7fa6185a55 100644
--- a/changelogs/CHANGELOG-v2.10.rst
+++ b/changelogs/CHANGELOG-v2.10.rst
@@ -5,6 +5,28 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
+v2.10.10rc1
+===========
+
+Release Summary
+---------------
+
+| Release Date: 2021-05-17
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- Correctly set template_path and template_fullpath for usage in template lookup and action plugins.
+- Fix fileglob bug where it could return different results for different order of parameters (https://github.com/ansible/ansible/issues/72873).
+- Improve resilience of ``ansible-galaxy collection`` by increasing the page size to make fewer requests overall and retrying queries with a jittered exponential backoff when rate limiting HTTP codes (520 and 429) occur. (https://github.com/ansible/ansible/issues/74191)
+- ansible-test - Use documented API to retrieve build information from Azure Pipelines.
+- ansible.builtin.cron - Keep non-empty crontabs, when removing cron jobs (https://github.com/ansible/ansible/pull/74497).
+- ansible_test - add constraint for ``MarkupSafe`` (https://github.com/ansible/ansible/pull/74666)
+- filter plugins - patch new versions of Jinja2 to prevent warnings/errors on renamed filter decorators (https://github.com/ansible/ansible/issues/74667)
+- service - compare version without LooseVersion API (https://github.com/ansible/ansible/issues/74488).
+
v2.10.9
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 27c8f89626..4045775230 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1810,6 +1810,40 @@ releases:
fragments:
- v2.10.1_summary.yaml
release_date: '2020-09-14'
+ 2.10.10rc1:
+ changes:
+ bugfixes:
+ - Correctly set template_path and template_fullpath for usage in template lookup
+ and action plugins.
+ - Fix fileglob bug where it could return different results for different order
+ of parameters (https://github.com/ansible/ansible/issues/72873).
+ - Improve resilience of ``ansible-galaxy collection`` by increasing the page
+ size to make fewer requests overall and retrying queries with a jittered exponential
+ backoff when rate limiting HTTP codes (520 and 429) occur. (https://github.com/ansible/ansible/issues/74191)
+ - ansible-test - Use documented API to retrieve build information from Azure
+ Pipelines.
+ - ansible.builtin.cron - Keep non-empty crontabs, when removing cron jobs (https://github.com/ansible/ansible/pull/74497).
+ - ansible_test - add constraint for ``MarkupSafe`` (https://github.com/ansible/ansible/pull/74666)
+ - filter plugins - patch new versions of Jinja2 to prevent warnings/errors on
+ renamed filter decorators (https://github.com/ansible/ansible/issues/74667)
+ - service - compare version without LooseVersion API (https://github.com/ansible/ansible/issues/74488).
+ release_summary: '| Release Date: 2021-05-17
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: When the Levee Breaks
+ fragments:
+ - 72873-fix-fileglob-ordering.yml
+ - 74240-ansible-galaxy-increase-pagesize-and-handle-throttling.yml
+ - 74488_solaris_looseversion.yml
+ - 74497-keep-non-empty-crontabs.yml
+ - ansible-test-azp-build-api.yml
+ - ansible-test-markupsafe-constraint.yml
+ - jinja2_decorator_renames.yml
+ - template_temp_vars_fix.yml
+ - v2.10.10rc1_summary.yaml
+ release_date: '2021-05-17'
2.10.1rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.10.10rc1_summary.yaml b/changelogs/fragments/v2.10.10rc1_summary.yaml
new file mode 100644
index 0000000000..235b987adf
--- /dev/null
+++ b/changelogs/fragments/v2.10.10rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-05-17
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 26802d192a..591f722f99 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.10.9.post0'
+__version__ = '2.10.10rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'