New release v2.14.11rc1 (#81862)

pull/81871/head v2.14.11rc1
Matt Martz 1 year ago committed by GitHub
parent b51538ffbe
commit 95b1e0b022
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,34 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics .. contents:: Topics
v2.14.11rc1
===========
Release Summary
---------------
| Release Date: 2023-10-03
| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
Minor Changes
-------------
- ansible-galaxy dependency resolution messages have changed the unexplained 'virtual' collection for the specific type ('scm', 'dir', etc) that is more user friendly
Security Fixes
--------------
- ansible-galaxy - Prevent roles from using symlinks to overwrite files outside of the installation directory (CVE-2023-5115)
Bugfixes
--------
- PluginLoader - fix Jinja plugin performance issues (https://github.com/ansible/ansible/issues/79652)
- ansible-galaxy error on dependency resolution will not error itself due to 'virtual' collections not having a name/namespace.
- ansible-galaxy info - fix reporting no role found when lookup_role_by_name returns None.
- winrm - Better handle send input failures when communicating with hosts under load
v2.14.10 v2.14.10
======== ========

@ -896,6 +896,37 @@ releases:
- freebsd-12.3-replacement.yml - freebsd-12.3-replacement.yml
- tarfile_extract_warn.yml - tarfile_extract_warn.yml
release_date: '2023-09-05' release_date: '2023-09-05'
2.14.11rc1:
changes:
bugfixes:
- PluginLoader - fix Jinja plugin performance issues (https://github.com/ansible/ansible/issues/79652)
- ansible-galaxy error on dependency resolution will not error itself due to
'virtual' collections not having a name/namespace.
- ansible-galaxy info - fix reporting no role found when lookup_role_by_name
returns None.
- winrm - Better handle send input failures when communicating with hosts under
load
minor_changes:
- ansible-galaxy dependency resolution messages have changed the unexplained
'virtual' collection for the specific type ('scm', 'dir', etc) that is more
user friendly
release_summary: '| Release Date: 2023-10-03
| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__
'
security_fixes:
- ansible-galaxy - Prevent roles from using symlinks to overwrite files outside
of the installation directory (CVE-2023-5115)
codename: C'mon Everybody
fragments:
- 2.14.11rc1_summary.yaml
- cve-2023-5115.yml
- fix-ansible-galaxy-info-no-role-found.yml
- galaxy_dep_res_msgs.yml
- jinja_plugin_cache_cleanup.yml
- winrm-send-input.yml
release_date: '2023-10-03'
2.14.1rc1: 2.14.1rc1:
changes: changes:
bugfixes: bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2023-10-03
| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function) from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
__version__ = '2.14.10.post0' __version__ = '2.14.11rc1'
__author__ = 'Ansible, Inc.' __author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody" __codename__ = "C'mon Everybody"

Loading…
Cancel
Save