From 175769fac950e2e1dd1f3b63e1cac4189e1b5233 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 30 Nov 2022 18:37:54 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 6.2.0 --- CHANGELOG-6.2.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG-6.2.md b/CHANGELOG-6.2.md index 14f9052059e73..6e7c970da65a8 100644 --- a/CHANGELOG-6.2.md +++ b/CHANGELOG-6.2.md @@ -7,6 +7,12 @@ 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 (2022-11-30) + + * bug #48395 [String] Fix AsciiSlugger with emojis (fancyweb) + * bug #48385 [Security] Reuse `AbstractFactory`'s config tree in `AccessTokenFactory` (chalasr) + * bug #48292 [Security] [LoginLink] Throw InvalidLoginLinkException on missing parameter (MatTheCat) + * 6.2.0-RC2 (2022-11-28) * bug #48366 [Mailer] Fix body renderer check (fabpot) From 8264f7ee96bbb519a67dd31dc9e0b077ce894f76 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 30 Nov 2022 18:37:58 +0100 Subject: [PATCH 2/2] Update VERSION for 6.2.0 --- 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..5db0cf505e49d 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'; 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 = ''; public const END_OF_MAINTENANCE = '07/2023'; public const END_OF_LIFE = '07/2023';