From 71dca4e392e80d05d3bbfcdc24dc37f04e44d63d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 25 Nov 2022 11:37:24 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 6.2.0-RC1 --- CHANGELOG-6.2.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG-6.2.md b/CHANGELOG-6.2.md index 94acdbdcfc990..0870e46a6ab8f 100644 --- a/CHANGELOG-6.2.md +++ b/CHANGELOG-6.2.md @@ -7,6 +7,18 @@ 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-RC1 (2022-11-25) + + * bug #48312 [VarExporter] Improve partial-initialization API for ghost objects (nicolas-grekas) + * bug #48285 [Security] Support loading UserBadge directly from accessToken (Jeroeny) + * bug #48262 [Notifier] [SMSBiuras] `true`/`false` mismatch for `test_mode` option (StaffNowa) + * bug #48273 [HttpKernel] Fix message for unresovable arguments of invokable controllers (fancyweb) + * bug #48251 [PropertyInfo] ignore const expressions read by phpdocumentor (xabbuh) + * bug #48224 [DependencyInjection] Process bindings in `ServiceLocatorTagPass` (MatTheCat) + * bug #48271 [WebProfilerBundle] Fix form panel when there are no view vars (nicolas-grekas) + * bug #48274 Add more #[\SensitiveParameter] (fancyweb) + * bug #48179 [Console] Support completion for bash functions (Chi-teck) + * 6.2.0-BETA3 (2022-11-19) * bug #48217 [Console] Improve error message when shell is not detected in completion command (GromNaN) From 5f03eb8a91259a8dc08ac1e0bb1d2889b57f8bc1 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 25 Nov 2022 11:37:29 +0100 Subject: [PATCH 2/2] Update VERSION for 6.2.0-RC1 --- 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..52a61b868d73c 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-RC1'; 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 = 'RC1'; public const END_OF_MAINTENANCE = '07/2023'; public const END_OF_LIFE = '07/2023';