From 684ab1f40c1616b305c79d539fe6e9f65b106333 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 12 May 2021 15:00:55 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 3.4.48 --- CHANGELOG-3.4.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index 23e1671360..00f1df4aaf 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -7,6 +7,10 @@ in 3.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/v3.4.0...v3.4.1 +* 3.4.48 (2021-05-12) + + * security #cve-2021-21424 [Security][Guard] Prevent user enumeration (chalasr) + * 3.4.47 (2020-11-27) * bug #38628 [DoctrineBridge] indexBy could reference to association columns (juanmiguelbesada) From fd84b535a8b1a2815c963896cbfbb04825587ab8 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 12 May 2021 15:01:01 +0200 Subject: [PATCH 2/2] Update VERSION for 3.4.48 --- 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 280401e919..63c96abd3a 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,11 +67,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.47'; - const VERSION_ID = 30447; + const VERSION = '3.4.48'; + const VERSION_ID = 30448; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; - const RELEASE_VERSION = 47; + const RELEASE_VERSION = 48; const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2020';