From e025d9c6d0a0fe9b49a4ae3f2fc6d775a0ea9095 Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Tue, 10 Aug 2021 09:39:56 -0500 Subject: [PATCH] New release v2.10.13rc1 --- changelogs/CHANGELOG-v2.10.rst | 24 ++++++++++++++++ changelogs/changelog.yaml | 28 +++++++++++++++++++ changelogs/fragments/v2.10.13rc1_summary.yaml | 3 ++ lib/ansible/release.py | 2 +- 4 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.10.13rc1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst index 13fc9adb5c6..d94b7fe6b2c 100644 --- a/changelogs/CHANGELOG-v2.10.rst +++ b/changelogs/CHANGELOG-v2.10.rst @@ -5,6 +5,30 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes .. contents:: Topics +v2.10.13rc1 +=========== + +Release Summary +--------------- + +| Release Date: 2021-08-10 +| `Porting Guide `__ + + +Minor Changes +------------- + +- Allow unsafe_writes to be set on target via env var, for those targets that need a blanket setting. + +Bugfixes +-------- + +- Setup virtualization_facts - add RHV and oVirt type. This change will fully work for VMs in clusters at cluster level 4.4 or newer (https://github.com/ansible/ansible/pull/72876). +- ansible-test - allow to ignore ``rstcheck`` errors (https://github.com/ansible/ansible/pull/75272). +- callback default, now uses task delegate_to instead of delegate vars to display delegate to host +- callbacks, restores missing delegate_vars +- dnf module - Use all components of a package name to determine if it's installed (https://github.com/ansible/ansible/issues/75311). + v2.10.12 ======== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e80ca4ce820..4247a138776 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1932,6 +1932,34 @@ releases: - aws_tiny_prefix.yaml - v2.10.12rc1_summary.yaml release_date: '2021-07-13' + 2.10.13rc1: + changes: + bugfixes: + - Setup virtualization_facts - add RHV and oVirt type. This change will fully + work for VMs in clusters at cluster level 4.4 or newer (https://github.com/ansible/ansible/pull/72876). + - ansible-test - allow to ignore ``rstcheck`` errors (https://github.com/ansible/ansible/pull/75272). + - callback default, now uses task delegate_to instead of delegate vars to display + delegate to host + - callbacks, restores missing delegate_vars + - dnf module - Use all components of a package name to determine if it's installed + (https://github.com/ansible/ansible/issues/75311). + minor_changes: + - Allow unsafe_writes to be set on target via env var, for those targets that + need a blanket setting. + release_summary: '| Release Date: 2021-08-10 + + | `Porting Guide `__ + + ' + codename: When the Levee Breaks + fragments: + - 72876-setup-facts-add-redhat-vendor.yml + - ansible-test-rstcheck-ignore.yml + - fix-dnf-filtering-for-installed-package-name.yml + - missing_delegate_vars.yml + - unsafe_writes_env.yml + - v2.10.13rc1_summary.yaml + release_date: '2021-08-10' 2.10.1rc1: changes: bugfixes: diff --git a/changelogs/fragments/v2.10.13rc1_summary.yaml b/changelogs/fragments/v2.10.13rc1_summary.yaml new file mode 100644 index 00000000000..d11418b2622 --- /dev/null +++ b/changelogs/fragments/v2.10.13rc1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2021-08-10 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 0e4af5a8ddf..93748df5b71 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.12.post0' +__version__ = '2.10.13rc1' __author__ = 'Ansible, Inc.' __codename__ = 'When the Levee Breaks'