From fc84efbfeb53c2d849f2ae2a270c0b95426c9259 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 10 Nov 2023 14:31:23 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 4.4.51 --- CHANGELOG-4.4.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-4.4.md b/CHANGELOG-4.4.md index 5a261d439826d..7ef838934633d 100644 --- a/CHANGELOG-4.4.md +++ b/CHANGELOG-4.4.md @@ -7,6 +7,10 @@ in 4.4 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.4.0...v4.4.1 +* 4.4.51 (2023-11-10) + + * security #cve-2023-46734 [TwigBridge] Ensure CodeExtension's filters properly escape their input (nicolas-grekas, GromNaN) + * 4.4.50 (2023-02-01) * security #cve-2022-24895 [Security/Http] Remove CSRF tokens from storage on successful login (nicolas-grekas) From 40eb71ed9a2712ed64f9a90ef0ea05a7a1616535 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 10 Nov 2023 14:31:29 +0100 Subject: [PATCH 2/2] Update VERSION for 4.4.51 --- src/Symfony/Component/HttpKernel/Kernel.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 7064edefbe456..3268a06310eb2 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -76,11 +76,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '4.4.50'; - public const VERSION_ID = 40450; + public const VERSION = '4.4.51'; + public const VERSION_ID = 40451; public const MAJOR_VERSION = 4; public const MINOR_VERSION = 4; - public const RELEASE_VERSION = 50; + public const RELEASE_VERSION = 51; public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '11/2022';