From c9441969b764e0869f6efb44d5f2949895c97e0a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 29 Jul 2021 09:06:21 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 5.3.6 --- CHANGELOG-5.3.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG-5.3.md b/CHANGELOG-5.3.md index 2c38dab5ba2c1..76537968a1c3c 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.6 (2021-07-29) + + * bug #42307 [Mailer] Fixed decode exception when sendgrid response is 202 (rubanooo) + * bug #42296 [Dotenv][Yaml] Remove PHP 8.0 polyfill (derrabus) + * bug #42274 [VarDumper] `HtmlDumper::setDumpHeader()` accepts `null` (rrpadilla) + * bug #42289 [HttpFoundation] Fixed type mismatch (Toflar) + * bug #42259 [Security] fix Check if it has session before getSession() (mousezheng) + * 5.3.5 (2021-07-27) * bug #42270 [WebProfilerBundle] [WebProfiler] "empty" filter bugfix. Filter with name "empty" is not … (luzrain) From db86819e6c652e5a45fcee338776877aeb5c11c2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 29 Jul 2021 09:06:27 +0200 Subject: [PATCH 2/2] Update VERSION for 5.3.6 --- 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 2d718f35e78c0..0d0332d21703f 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.6-DEV'; + public const VERSION = '5.3.6'; public const VERSION_ID = 50306; public const MAJOR_VERSION = 5; public const MINOR_VERSION = 3; public const RELEASE_VERSION = 6; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2022'; public const END_OF_LIFE = '01/2022';