summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/CHANGELOG-v2.14.rst29
-rw-r--r--changelogs/changelog.yaml45
-rw-r--r--changelogs/fragments/v2.14.3rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 78 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index 16bc0ac09f..5496220a75 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -5,6 +5,35 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
+v2.14.3rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2023-02-20
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Make using blocks as handlers a parser error (https://github.com/ansible/ansible/issues/79968)
+- ansible-test - Specify the configuration file location required by test plugins when the config file is not found. This resolves issue: https://github.com/ansible/ansible/issues/79411
+- ansible-test - Update error handling code to use Python 3.x constructs, avoiding direct use of ``errno``.
+- ansible-test acme test container - update version to update used Pebble version, underlying Python and Go base containers, and Python requirements (https://github.com/ansible/ansible/pull/79783).
+
+Bugfixes
+--------
+
+- Ansible.Basic.cs - Ignore compiler warning (reported as an error) when running under PowerShell 7.3.x.
+- Fix conditionally notifying ``include_tasks` handlers when ``force_handlers`` is used (https://github.com/ansible/ansible/issues/79776)
+- TaskExecutor - don't ignore templated _raw_params that k=v parser failed to parse (https://github.com/ansible/ansible/issues/79862)
+- ansible-galaxy - fix installing collections in git repositories/directories which contain a MANIFEST.json file (https://github.com/ansible/ansible/issues/79796).
+- ansible-test - Support Podman 4.4.0+ by adding the ``SYS_CHROOT`` capability when running containers.
+- ansible-test - fix warning message about failing to run an image to include the image name
+- strategy plugins now correctly identify bad registered variables, even on skip.
+
v2.14.2
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index e6c582396b..41e016e255 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1061,3 +1061,48 @@ releases:
- v2.14.2rc1_summary.yaml
- validate-module-ps-cmdlet.yml
release_date: '2023-01-23'
+ 2.14.3rc1:
+ changes:
+ bugfixes:
+ - Ansible.Basic.cs - Ignore compiler warning (reported as an error) when running
+ under PowerShell 7.3.x.
+ - Fix conditionally notifying ``include_tasks` handlers when ``force_handlers``
+ is used (https://github.com/ansible/ansible/issues/79776)
+ - TaskExecutor - don't ignore templated _raw_params that k=v parser failed to
+ parse (https://github.com/ansible/ansible/issues/79862)
+ - ansible-galaxy - fix installing collections in git repositories/directories
+ which contain a MANIFEST.json file (https://github.com/ansible/ansible/issues/79796).
+ - ansible-test - Support Podman 4.4.0+ by adding the ``SYS_CHROOT`` capability
+ when running containers.
+ - ansible-test - fix warning message about failing to run an image to include
+ the image name
+ - strategy plugins now correctly identify bad registered variables, even on
+ skip.
+ minor_changes:
+ - Make using blocks as handlers a parser error (https://github.com/ansible/ansible/issues/79968)
+ - 'ansible-test - Specify the configuration file location required by test plugins
+ when the config file is not found. This resolves issue: https://github.com/ansible/ansible/issues/79411'
+ - ansible-test - Update error handling code to use Python 3.x constructs, avoiding
+ direct use of ``errno``.
+ - ansible-test acme test container - update version to update used Pebble version,
+ underlying Python and Go base containers, and Python requirements (https://github.com/ansible/ansible/pull/79783).
+ release_summary: '| Release Date: 2023-02-20
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: C'mon Everybody
+ fragments:
+ - 79776-fix-force_handlers-cond-include.yml
+ - 79783-acme-test-container.yml
+ - 79862-fix-varargs.yml
+ - 79968-blocks-handlers-error.yml
+ - ansible-galaxy-install-git-src-manifest.yml
+ - ansible-test-errno.yml
+ - ansible-test-fix-warning-msg.yml
+ - ansible-test-podman-chroot.yml
+ - ansible-test-test-plugin-error-message.yml
+ - powershell-7.3-fix.yml
+ - strategy_badid_fix.yml
+ - v2.14.3rc1_summary.yaml
+ release_date: '2023-02-20'
diff --git a/changelogs/fragments/v2.14.3rc1_summary.yaml b/changelogs/fragments/v2.14.3rc1_summary.yaml
new file mode 100644
index 0000000000..edba4a1914
--- /dev/null
+++ b/changelogs/fragments/v2.14.3rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2023-02-20
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index e4855fbe30..5592bc4489 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.2.post0'
+__version__ = '2.14.3rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"