summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Adams <chadams@redhat.com>2023-01-30 10:54:22 -0500
committerGitHub <noreply@github.com>2023-01-30 10:54:22 -0500
commitad9867ca5eb8ba27f827d5d5a7999cfb96ae0986 (patch)
treed6f8d2139bc58184cfe7e0c45493d693fbd2609c
parentd42313bb600b3c1b5a3a49e3983bf26edebcc292 (diff)
downloadansible-ad9867ca5eb8ba27f827d5d5a7999cfb96ae0986.tar.gz
New release v2.14.2 (#79843)v2.14.2
-rw-r--r--changelogs/CHANGELOG-v2.14.rst7
-rw-r--r--changelogs/changelog.yaml15
-rw-r--r--changelogs/fragments/v2.14.2_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 23 insertions, 4 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index fb3f16ae80..16bc0ac09f 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -5,13 +5,13 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
-v2.14.2rc1
-==========
+v2.14.2
+=======
Release Summary
---------------
-| Release Date: 2023-01-23
+| Release Date: 2023-01-30
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
@@ -49,6 +49,7 @@ Bugfixes
--------
- Correctly count rescued tasks in play recap (https://github.com/ansible/ansible/issues/79711)
+- Fix traceback when using the ``template`` module and running with ``ANSIBLE_DEBUG=1`` (https://github.com/ansible/ansible/issues/79763)
- Fix using ``GALAXY_IGNORE_CERTS`` in conjunction with collections in requirements files which specify a specific ``source`` that isn't in the configured servers.
- Fix using ``GALAXY_IGNORE_CERTS`` when downloading tarballs from Galaxy servers (https://github.com/ansible/ansible/issues/79557).
- Module and role argument validation - include the valid suboption choices in the error when an invalid suboption is provided.
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index ebdffd28a2..e6c582396b 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -885,6 +885,21 @@ releases:
- mention_acl.yml
- v2.14.1rc1_summary.yaml
release_date: '2022-11-28'
+ 2.14.2:
+ changes:
+ bugfixes:
+ - Fix traceback when using the ``template`` module and running with ``ANSIBLE_DEBUG=1``
+ (https://github.com/ansible/ansible/issues/79763)
+ release_summary: '| Release Date: 2023-01-30
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: C'mon Everybody
+ fragments:
+ - 79763-ansible_debug_template_tb_fix.yml
+ - v2.14.2_summary.yaml
+ release_date: '2023-01-30'
2.14.2rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.14.2_summary.yaml b/changelogs/fragments/v2.14.2_summary.yaml
new file mode 100644
index 0000000000..5e149088ec
--- /dev/null
+++ b/changelogs/fragments/v2.14.2_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2023-01-30
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 71e8e7ea5d..7a2e435b6a 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.14.2rc1.post0'
+__version__ = '2.14.2'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"