From 414813e895cfe45c8e1b2a92349ae2815eda9d26 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 17 Jun 2021 16:18:11 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 5.3.2 --- CHANGELOG-5.3.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/CHANGELOG-5.3.md b/CHANGELOG-5.3.md index 3f2c56d63ac9b..25c4691a7fbd8 100644 --- a/CHANGELOG-5.3.md +++ b/CHANGELOG-5.3.md @@ -7,6 +7,41 @@ 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.2 (2021-06-17) + + * security #cve-2021-32693 [SecurityHttp] Fix "Authentication granted with multiple firewalls" (wouterj) + * bug #41693 [Uid] fix performance and prevent collisions with the real clock_seq (nicolas-grekas) + * bug #41700 [Security] Fix deprecation notice on TokenInterface::getUser() stringable return (tscni) + * bug #41703 [Security] Restore extension point in MessageDigestPasswordEncoder (derrabus) + * bug #41716 [Messenger] Fix RequestContext not updated (jderusse) + * bug #41616 [Messenger] Remove TLS related options when not using TLS (odolbeau) + * bug #41719 [FrameworkBundle] fix Could not find service "test.service_container" (smilesrg) + * bug #41686 [Console] Fix using #[AsCommand] without DI (nicolas-grekas) + * bug #41673 [DependencyInjection] fix parsing classes for attributes (nicolas-grekas) + * bug #41675 [Runtime] fix overriding --env|-e with single-command apps (nicolas-grekas) + * bug #41674 [HttpClient] fix compat with cURL <= 7.37 (nicolas-grekas) + * bug #41680 [Console] fix managing signals when commands are lazy loaded (nicolas-grekas) + * bug #41678 [PasswordHasher] Fix missing PasswordHasherAwareInterface allowed type (chalasr) + * bug #41656 [HttpClient] throw exception when AsyncDecoratorTrait gets an already consumed response (nicolas-grekas) + * bug #41600 [Notifier] Escape `.` char for Telegram transport (Clément) + * bug #41644 [Config] fix tracking attributes in ReflectionClassResource (nicolas-grekas) + * bug #41621 [Process] Fix incorrect parameter type (bch36) + * bug #41624 [HttpClient] Revert bindto workaround for unaffected PHP versions (derrabus) + * bug #41597 [DependencyInjection] fix `when@{env}` inside imported files (nusje2000) + * bug #41553 [Messenger] fix BC for FrameworkBundle 4.4 with a non-existence alias being used (monteiro) + * bug #41582 Fix not null get collection key types (dragosprotung) + * bug #41572 [PasswordHasher] Prevent PHP fatal error when using auto algorithm (matason) + * bug #41549 [Security] Fix opcache preload with alias classes (jderusse) + * bug #41491 [Serializer] Do not allow to denormalize string with spaces only to valid a DateTime object (sidz) + * bug #41535 [Console] Fix negated options not accessible (jderusse) + * bug #41472 [Validator] remove service if its class doesn't exist (xabbuh) + * bug #41218 [DependencyInjection] Update loader’s directory when calling ContainerConfigurator::withPath (MatTheCat) + * bug #41505 [FrameworkBundle] fix KernelBrowser::loginUser with a stateless firewall (dunglas) + * bug #41509 [SecurityBundle] Link UserProviderListener to correct firewall dispatcher (Matth--) + * bug #41386 [Console] Escape synopsis output (jschaedl) + * bug #41523 [Notifier] [Bridge] Remove hidden dependency on HttpFoundation for SmsBiurasTransport (fre5h) + * bug #41512 Relax requirement on symfony/runtime (lyrixx) + * 5.3.1 (2021-06-02) * bug #41463 [Serializer][Validator] Fix not null return from "getCollectionValueTypes" (jderusse) From 1e7649fb30a218b405d716c9a334cadb6b8b8e93 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 17 Jun 2021 16:18:27 +0200 Subject: [PATCH 2/2] Update VERSION for 5.3.2 --- 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 5cf810d862c64..1793992a9f451 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.2-DEV'; + public const VERSION = '5.3.2'; public const VERSION_ID = 50302; public const MAJOR_VERSION = 5; public const MINOR_VERSION = 3; public const RELEASE_VERSION = 2; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2022'; public const END_OF_LIFE = '01/2022';