Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release v2.13.13rc1 #81860

Merged
merged 1 commit into from Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions changelogs/CHANGELOG-v2.13.rst
Expand Up @@ -5,6 +5,26 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics


v2.13.13rc1
===========

Release Summary
---------------

| Release Date: 2023-10-03
| `Porting Guide <https://docs.ansible.com/ansible-core/2.13/porting_guides/porting_guide_core_2.13.html>`__


Security Fixes
--------------

- ansible-galaxy - Prevent roles from using symlinks to overwrite files outside of the installation directory (CVE-2023-5115)

Bugfixes
--------

- ansible-galaxy info - fix reporting no role found when lookup_role_by_name returns None.

v2.13.12
========

Expand Down
19 changes: 19 additions & 0 deletions changelogs/changelog.yaml
Expand Up @@ -957,6 +957,25 @@ releases:
- tarfile_extract_warn.yml
- urls-unit-test-latest-cryptography.yml
release_date: '2023-09-05'
2.13.13rc1:
changes:
bugfixes:
- ansible-galaxy info - fix reporting no role found when lookup_role_by_name
returns None.
release_summary: '| Release Date: 2023-10-03

| `Porting Guide <https://docs.ansible.com/ansible-core/2.13/porting_guides/porting_guide_core_2.13.html>`__

'
security_fixes:
- ansible-galaxy - Prevent roles from using symlinks to overwrite files outside
of the installation directory (CVE-2023-5115)
codename: Nobody's Fault but Mine
fragments:
- 2.13.13rc1_summary.yaml
- cve-2023-5115.yml
- fix-ansible-galaxy-info-no-role-found.yml
release_date: '2023-10-03'
2.13.1rc1:
changes:
bugfixes:
Expand Down
3 changes: 3 additions & 0 deletions changelogs/fragments/2.13.13rc1_summary.yaml
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2023-10-03
| `Porting Guide <https://docs.ansible.com/ansible-core/2.13/porting_guides/porting_guide_core_2.13.html>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Expand Up @@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

__version__ = '2.13.12.post0'
__version__ = '2.13.13rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"