From 8dd3be02a07e5d6c13a5809aeaef12d724c7a10f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 2 Jun 2021 12:07:04 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 5.3.1 --- CHANGELOG-5.3.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG-5.3.md b/CHANGELOG-5.3.md index d15bc4b4b1ab6..3f2c56d63ac9b 100644 --- a/CHANGELOG-5.3.md +++ b/CHANGELOG-5.3.md @@ -7,6 +7,14 @@ in 5.3 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.3.0...v5.3.1 +* 5.3.1 (2021-06-02) + + * bug #41463 [Serializer][Validator] Fix not null return from "getCollectionValueTypes" (jderusse) + * bug #41493 [Security] Readd deprecated methods to the interfaces (wouterj) + * bug #41495 [HttpFoundation] Add ReturnTypeWillChange to SessionHandlers (nikic) + * bug #41485 [HttpKernel] fix ArgumentMetadataFactory messes up controller arguments with attributes (sgehrig) + * bug #41461 Fix Symfony 5.3 end of maintenance date (jmsche) + * 5.3.0 (2021-05-31) * bug #41458 [FrameworkBundle] fix ConfigBuilderCacheWarmer (nicolas-grekas) From cd901601f59cb71a48419035f8b432334db0d165 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 2 Jun 2021 12:07:12 +0200 Subject: [PATCH 2/2] Update VERSION for 5.3.1 --- 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 85842a80dffb8..a50521454f36f 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '5.3.1-DEV'; + public const VERSION = '5.3.1'; public const VERSION_ID = 50301; public const MAJOR_VERSION = 5; public const MINOR_VERSION = 3; public const RELEASE_VERSION = 1; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2022'; public const END_OF_LIFE = '01/2022';