From 40d955f286fc5ed9b60a890abaef67e6cc1c5760 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 10 Mar 2021 18:07:21 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 5.2.5 --- CHANGELOG-5.2.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG-5.2.md b/CHANGELOG-5.2.md index b77697fd01f15..68a57b4be09f1 100644 --- a/CHANGELOG-5.2.md +++ b/CHANGELOG-5.2.md @@ -7,6 +7,17 @@ in 5.2 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/v5.2.0...v5.2.1 +* 5.2.5 (2021-03-10) + + * bug #40415 Fix `ConstraintViolation#getPropertyPath()` to always return `string` (Ocramius) + * bug #40421 [FrameworkBundle] fix XSD (nicolas-grekas) + * bug #39685 [Mailer][Mime][TwigBridge][Validator] Allow egulias/email-validator 3.x (derrabus) + * bug #40398 [FrameworkBundle] : Fix method name compare in ResolveControllerNameSubscriber (glensc) + * bug #39733 [TwigBridge] Render email once (jderusse) + * bug #40386 [DependencyInjection][Security] Backport psr/container 1.1/2.0 compatibility (derrabus) + * bug #40376 [Messenger] Don't lock tables or start transactions (Nyholm) + * bug #40378 Changing ZulipTransportFactory tag to prevent the exception UnsupportedSchemeException (big-r81) + * 5.2.4 (2021-03-04) * bug #40336 [Messenger] Doctrine setup with migrations (Nyholm) From 3da617f52c62c0a808d5818f210fff5a4237d2b9 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 10 Mar 2021 18:07:35 +0100 Subject: [PATCH 2/2] Update VERSION for 5.2.5 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 6661ed26c17a8..24573ec5aba7a 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '5.2.5-DEV'; + public const VERSION = '5.2.5'; public const VERSION_ID = 50205; public const MAJOR_VERSION = 5; public const MINOR_VERSION = 2; public const RELEASE_VERSION = 5; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '07/2021'; public const END_OF_LIFE = '07/2021';