Skip to content

Commit 6c75cf5

Browse files
authored
New release v2.12.2 (#76892)
1 parent e81005e commit 6c75cf5

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

changelogs/CHANGELOG-v2.12.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ ansible-core 2.12 "Dazed and Confused" Release Notes
55
.. contents:: Topics
66

77

8-
v2.12.2rc1
9-
==========
8+
v2.12.2
9+
=======
1010

1111
Release Summary
1212
---------------
1313

14-
| Release Date: 2022-01-24
14+
| Release Date: 2022-01-31
1515
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
1616
1717

@@ -28,6 +28,7 @@ Bugfixes
2828
- ansible-test - Fix the ``import`` sanity test to work properly when Ansible's built-in vendoring support is in use.
2929
- ansible-test - Fix traceback in the ``validate-modules`` sanity test when testing an Ansible module without any callables.
3030
- ansible-test - Fix traceback when running from an install and delegating execution to a different Python interpreter.
31+
- ansible-test - Show an error message instead of a traceback when running outside of a supported directory.
3132
- ansible-test - Update help links to reference ``ansible-core`` instead of ``ansible``.
3233
- ansible-test - Update unit tests to use the ``--forked`` option instead of the deprecated ``--boxed`` option.
3334
- async - Improve performance of sending async callback events by never sending the full task through the queue (https://github.com/ansible/ansible/issues/76729)

changelogs/changelog.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,6 +1141,21 @@ releases:
11411141
- v2.12.1rc1_summary.yaml
11421142
- win_LinkUtil-ignore-LIB.yml
11431143
release_date: '2021-11-29'
1144+
2.12.2:
1145+
changes:
1146+
bugfixes:
1147+
- ansible-test - Show an error message instead of a traceback when running outside
1148+
of a supported directory.
1149+
release_summary: '| Release Date: 2022-01-31
1150+
1151+
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
1152+
1153+
'
1154+
codename: Dazed and Confused
1155+
fragments:
1156+
- ansible-test-unsupported-directory-traceback.yaml
1157+
- v2.12.2_summary.yaml
1158+
release_date: '2022-01-31'
11441159
2.12.2rc1:
11451160
changes:
11461161
bugfixes:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
release_summary: |
2+
| Release Date: 2022-01-31
3+
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

lib/ansible/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
from __future__ import (absolute_import, division, print_function)
2020
__metaclass__ = type
2121

22-
__version__ = '2.12.2rc1.post0'
22+
__version__ = '2.12.2'
2323
__author__ = 'Ansible, Inc.'
2424
__codename__ = 'Dazed and Confused'

0 commit comments

Comments
 (0)