From 6c75cf5c83da044d1fd69bc444ce4de50d728d09 Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Mon, 31 Jan 2022 15:19:57 -0500 Subject: New release v2.12.2 (#76892) --- changelogs/CHANGELOG-v2.12.rst | 7 ++++--- changelogs/changelog.yaml | 15 +++++++++++++++ changelogs/fragments/v2.12.2_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 changelogs/fragments/v2.12.2_summary.yaml diff --git a/changelogs/CHANGELOG-v2.12.rst b/changelogs/CHANGELOG-v2.12.rst index a5ff0ec1ae..f2a89edf1f 100644 --- a/changelogs/CHANGELOG-v2.12.rst +++ b/changelogs/CHANGELOG-v2.12.rst @@ -5,13 +5,13 @@ ansible-core 2.12 "Dazed and Confused" Release Notes .. contents:: Topics -v2.12.2rc1 -========== +v2.12.2 +======= Release Summary --------------- -| Release Date: 2022-01-24 +| Release Date: 2022-01-31 | `Porting Guide `__ @@ -28,6 +28,7 @@ Bugfixes - ansible-test - Fix the ``import`` sanity test to work properly when Ansible's built-in vendoring support is in use. - ansible-test - Fix traceback in the ``validate-modules`` sanity test when testing an Ansible module without any callables. - ansible-test - Fix traceback when running from an install and delegating execution to a different Python interpreter. +- ansible-test - Show an error message instead of a traceback when running outside of a supported directory. - ansible-test - Update help links to reference ``ansible-core`` instead of ``ansible``. - ansible-test - Update unit tests to use the ``--forked`` option instead of the deprecated ``--boxed`` option. - async - Improve performance of sending async callback events by never sending the full task through the queue (https://github.com/ansible/ansible/issues/76729) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8bb32b0ac0..3d094699ba 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1141,6 +1141,21 @@ releases: - v2.12.1rc1_summary.yaml - win_LinkUtil-ignore-LIB.yml release_date: '2021-11-29' + 2.12.2: + changes: + bugfixes: + - ansible-test - Show an error message instead of a traceback when running outside + of a supported directory. + release_summary: '| Release Date: 2022-01-31 + + | `Porting Guide `__ + + ' + codename: Dazed and Confused + fragments: + - ansible-test-unsupported-directory-traceback.yaml + - v2.12.2_summary.yaml + release_date: '2022-01-31' 2.12.2rc1: changes: bugfixes: diff --git a/changelogs/fragments/v2.12.2_summary.yaml b/changelogs/fragments/v2.12.2_summary.yaml new file mode 100644 index 0000000000..1f7b84e41a --- /dev/null +++ b/changelogs/fragments/v2.12.2_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2022-01-31 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 4b8efe6a8b..1bf5511dc6 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.12.2rc1.post0' +__version__ = '2.12.2' __author__ = 'Ansible, Inc.' __codename__ = 'Dazed and Confused' -- cgit v1.2.1