New release v2.12.2 (#76892)

pull/76896/head v2.12.2
Dimitri Savineau 4 years ago committed by GitHub
parent e81005e910
commit 6c75cf5c83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

@ -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:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2022-01-31
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

@ -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'

Loading…
Cancel
Save