From 6d178c15e0ccfd94757d7a3aee07d510746553a0 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 28 Nov 2022 19:27:13 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 6.2.0-RC2 --- CHANGELOG-6.2.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG-6.2.md b/CHANGELOG-6.2.md index 0870e46a6ab8f..14f9052059e73 100644 --- a/CHANGELOG-6.2.md +++ b/CHANGELOG-6.2.md @@ -7,6 +7,15 @@ in 6.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/v6.2.0...v6.2.1 +* 6.2.0-RC2 (2022-11-28) + + * bug #48366 [Mailer] Fix body renderer check (fabpot) + * bug #48347 [Clock] Autowire PSR interface (wouterj) + * bug #48341 [SecurityBundle] Fix `logout.csrf_token_generator` default value (MatTheCat) + * bug #48333 [Yaml] parse unquoted digits in tag values as integers (xabbuh) + * bug #48330 [FrameworkBundle] do not wire the MercureTransportFactory if the MercureBundle is not enabled (xabbuh) + * bug #48320 [Clock] Implement PSR-20 (nicolas-grekas) + * 6.2.0-RC1 (2022-11-25) * bug #48312 [VarExporter] Improve partial-initialization API for ghost objects (nicolas-grekas) From ca8452a5239c6da49f24a87e7c1831fa28f21929 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 28 Nov 2022 19:27:25 +0100 Subject: [PATCH 2/2] Update VERSION for 6.2.0-RC2 --- 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 3661c216a2c4b..1603af6aa1ec8 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 array $freshCache = []; - public const VERSION = '6.2.0-DEV'; + public const VERSION = '6.2.0-RC2'; public const VERSION_ID = 60200; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 2; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = 'RC2'; public const END_OF_MAINTENANCE = '07/2023'; public const END_OF_LIFE = '07/2023';