From dbd734a5539c5723ba6fa7a740d24abf4ddc55fe Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 7 Nov 2024 13:34:21 +0100 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 6e62956410..525e2385c6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +# 3.11.3 (2024-11-07) + + * Fix an infinite recursion in the sandbox code + # 3.11.2 (2024-11-06) * [BC BREAK] Fix a security issue in the sandbox mode allowing an attacker to call attributes on Array-like objects From 3b06600ff3abefaf8ff55d5c336cd1c4253f8c7e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 7 Nov 2024 13:34:41 +0100 Subject: [PATCH 2/2] Prepare the 3.11.3 release --- src/Environment.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Environment.php b/src/Environment.php index 84dd1d3032..571b461411 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -43,11 +43,11 @@ */ class Environment { - public const VERSION = '3.11.2'; - public const VERSION_ID = 301102; + public const VERSION = '3.11.3'; + public const VERSION_ID = 301103; public const MAJOR_VERSION = 4; public const MINOR_VERSION = 11; - public const RELEASE_VERSION = 2; + public const RELEASE_VERSION = 3; public const EXTRA_VERSION = ''; private $charset;