From 85dd907d0f2dbf0edbff039672bddf315a567084 Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Mon, 17 May 2021 16:56:55 -0500 Subject: [PATCH] New release v2.10.10rc1 --- changelogs/CHANGELOG-v2.10.rst | 22 ++++++++++++ changelogs/changelog.yaml | 34 +++++++++++++++++++ changelogs/fragments/v2.10.10rc1_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.10.10rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst index 339c579b946..7fa6185a550 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 `__ + + +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 27c8f896262..40457752301 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 `__ + + ' + 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 00000000000..235b987adf6 --- /dev/null +++ b/changelogs/fragments/v2.10.10rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2021-05-17 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 26802d192a2..591f722f99b 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'