summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Savineau <dsavinea@redhat.com>2022-01-31 15:19:57 -0500
committerGitHub <noreply@github.com>2022-01-31 15:19:57 -0500
commit6c75cf5c83da044d1fd69bc444ce4de50d728d09 (patch)
tree7f2892e55a5ee8993ad186314fbd14a11f8cc096
parente81005e910b8724142b4e2cbe53057b9bc4cfce8 (diff)
downloadansible-6c75cf5c83da044d1fd69bc444ce4de50d728d09.tar.gz
New release v2.12.2 (#76892)v2.12.2
-rw-r--r--changelogs/CHANGELOG-v2.12.rst7
-rw-r--r--changelogs/changelog.yaml15
-rw-r--r--changelogs/fragments/v2.12.2_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 23 insertions, 4 deletions
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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
@@ -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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ 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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
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'