summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/CHANGELOG-v2.14.rst26
-rw-r--r--changelogs/changelog.yaml51
-rw-r--r--changelogs/fragments/2.14.5rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 81 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index c88a069e9b..fc66b2c83b 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -5,6 +5,32 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
+v2.14.5rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2023-04-17
+| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
+
+
+Bugfixes
+--------
+
+- Windows - Display a warning if the module failed to cleanup any temporary files rather than failing the task. The warning contains a brief description of what failed to be deleted.
+- Windows - Ensure the module temp directory contains more unique values to avoid conflicts with concurrent runs - https://github.com/ansible/ansible/issues/80294
+- Windows - Improve temporary file cleanup used by modules. Will use a more reliable delete operation on Windows Server 2016 and newer to delete files that might still be open by other software like Anti Virus scanners. There are still scenarios where a file or directory cannot be deleted but the new method should work in more scenarios.
+- ansible-doc - stop generating wrong module URLs for module see-alsos. The URLs for modules in ansible.builtin do now work, and URLs for modules outside ansible.builtin are no longer added (https://github.com/ansible/ansible/pull/80280).
+- ansible-galaxy - Improve retries for collection installs, to properly retry, and extend retry logic to common URL related connection errors (https://github.com/ansible/ansible/issues/80170 https://github.com/ansible/ansible/issues/80174)
+- ansible-galaxy - reduce API calls to servers by fetching signatures only for final candidates.
+- ansible-test - Add support for ``argcomplete`` version 3.
+- jinja2_native - fix intermittent 'could not find job' failures when a value of ``ansible_job_id`` from a result of an async task was inadvertently changed during execution; to prevent this a format of ``ansible_job_id`` was changed.
+- password lookup now correctly reads stored ident fields.
+- pep517 build backend - Use the documented ``import_module`` import from ``importlib``.
+- roles - Fix templating ``public``, ``allow_duplicates`` and ``rolespec_validate`` (https://github.com/ansible/ansible/issues/80304).
+- syntax check - Limit ``--syntax-check`` to ``ansible-playbook`` only, as that is the only CLI affected by this argument (https://github.com/ansible/ansible/issues/80506)
+
v2.14.4
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 3cf2490cc7..7eb58101eb 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1190,3 +1190,54 @@ releases:
- ansible_eval_concat-remove-redundant-unsafe-wrap.yml
- fix-manifest.yml
release_date: '2023-03-21'
+ 2.14.5rc1:
+ changes:
+ bugfixes:
+ - Windows - Display a warning if the module failed to cleanup any temporary
+ files rather than failing the task. The warning contains a brief description
+ of what failed to be deleted.
+ - Windows - Ensure the module temp directory contains more unique values to
+ avoid conflicts with concurrent runs - https://github.com/ansible/ansible/issues/80294
+ - Windows - Improve temporary file cleanup used by modules. Will use a more
+ reliable delete operation on Windows Server 2016 and newer to delete files
+ that might still be open by other software like Anti Virus scanners. There
+ are still scenarios where a file or directory cannot be deleted but the new
+ method should work in more scenarios.
+ - ansible-doc - stop generating wrong module URLs for module see-alsos. The
+ URLs for modules in ansible.builtin do now work, and URLs for modules outside
+ ansible.builtin are no longer added (https://github.com/ansible/ansible/pull/80280).
+ - ansible-galaxy - Improve retries for collection installs, to properly retry,
+ and extend retry logic to common URL related connection errors (https://github.com/ansible/ansible/issues/80170
+ https://github.com/ansible/ansible/issues/80174)
+ - ansible-galaxy - reduce API calls to servers by fetching signatures only for
+ final candidates.
+ - ansible-test - Add support for ``argcomplete`` version 3.
+ - jinja2_native - fix intermittent 'could not find job' failures when a value
+ of ``ansible_job_id`` from a result of an async task was inadvertently changed
+ during execution; to prevent this a format of ``ansible_job_id`` was changed.
+ - password lookup now correctly reads stored ident fields.
+ - pep517 build backend - Use the documented ``import_module`` import from ``importlib``.
+ - roles - Fix templating ``public``, ``allow_duplicates`` and ``rolespec_validate``
+ (https://github.com/ansible/ansible/issues/80304).
+ - syntax check - Limit ``--syntax-check`` to ``ansible-playbook`` only, as that
+ is the only CLI affected by this argument (https://github.com/ansible/ansible/issues/80506)
+ release_summary: '| Release Date: 2023-04-17
+
+ | `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
+
+ '
+ codename: C'mon Everybody
+ fragments:
+ - 2.14.5rc1_summary.yaml
+ - 80280-ansible-doc-seealso-urls.yml
+ - 80334-reduce-ansible-galaxy-api-calls.yml
+ - 80506-syntax-check-playbook-only.yml
+ - ansible-basic-tmpdir-uniqueness.yml
+ - ansible-test-argcomplete-3.yml
+ - fix-templating-private-role-FA.yml
+ - fix_jinja_native_async.yml
+ - galaxy-improve-retries.yml
+ - password_lookup_file_fix.yml
+ - pep517-backend-import-fix.yml
+ - win-temp-cleanup.yml
+ release_date: '2023-04-17'
diff --git a/changelogs/fragments/2.14.5rc1_summary.yaml b/changelogs/fragments/2.14.5rc1_summary.yaml
new file mode 100644
index 0000000000..3f83074f36
--- /dev/null
+++ b/changelogs/fragments/2.14.5rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2023-04-17
+ | `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 885781396e..20f65275f0 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.4.post0'
+__version__ = '2.14.5rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"