From 7dcd5b1426b79d63bf412df559854f84f6fbb41ac59c2496cfbebf37b4bb1f59 Mon Sep 17 00:00:00 2001
From: Matej Cepl <mcepl@suse.com>
Date: Wed, 26 Jun 2024 20:34:48 +0000
Subject: [PATCH] Add CVE-2024-0397 to changelog.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python312?expand=0&rev=52
---
 python312.changes | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python312.changes b/python312.changes
index 987716f..c0fa746 100644
--- a/python312.changes
+++ b/python312.changes
@@ -268,7 +268,7 @@ Wed Apr 10 14:41:07 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
     - gh-114572: ssl.SSLContext.cert_store_stats() and
       ssl.SSLContext.get_ca_certs() now correctly lock access to
       the certificate store, when the ssl.SSLContext is shared
-      across multiple threads.
+      across multiple threads (bsc#1226447, CVE-2024-0397).
   - Core and Builtins
     - gh-109120: Added handle of incorrect star expressions, e.g
       f(3, *). Patch by Grigoryev Semyon