From e60288d7919a92960d6f9503c22a4dcda63fcc49 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 11 Nov 2019 17:38:48 +0100 Subject: [PATCH 1/2] updated CHANGELOG for 4.3.7 --- CHANGELOG-4.3.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG-4.3.md b/CHANGELOG-4.3.md index 5707e18c46..df5f4ef439 100644 --- a/CHANGELOG-4.3.md +++ b/CHANGELOG-4.3.md @@ -7,6 +7,26 @@ in 4.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/v4.3.0...v4.3.1 +* 4.3.7 (2019-11-11) + + * bug #34294 [Workflow] Fix error when we use ValueObject for the marking property (FabienSalles) + * bug #34297 [DI] fix locators with numeric keys (nicolas-grekas) + * bug #34282 [DI] Dont cache classes with missing parents (nicolas-grekas) + * bug #34287 [HttpClient] Fix a crash when calling CurlHttpClient::__destruct() (dunglas) + * bug #34129 [FrameworkBundle][Translation] Invalidate cached catalogues when the scanned directories change (fancyweb) + * bug #34246 [Serializer] Use context to compute MetadataAwareNameConverter cache (antograssiot) + * bug #34251 [HttpClient] expose only gzip when doing transparent compression (nicolas-grekas) + * bug #34244 [Inflector] add support for 'species' (jeffreymoelands) + * bug #34085 [Console] Detect dimensions using mode CON if vt100 is supported (rtek) + * bug #34199 [HttpClient] Retry safe requests using HTTP/1.1 when HTTP/2 fails (nicolas-grekas) + * bug #34192 [Routing] Fix URL generator instantiation (X-Coder264, HypeMC) + * bug #34134 [Messenger] fix retry of messages losing the routing key and properties (Tobion) + * bug #34181 [Stopwatch] Fixed bug in getDuration when counting multiple ongoing periods (TimoBakx) + * bug #34165 [PropertyInfo] Fixed type extraction for nullable collections of non-nullable elements (happyproff) + * bug #34179 [Stopwatch] Fixed a bug in StopwatchEvent::getStartTime (TimoBakx) + * bug #34203 [FrameworkBundle] [HttpKernel] fixed correct EOL and EOM month (erics86) + * bug #34035 [Serializer] Fix property name usage for denormalization (antograssiot) + * 4.3.6 (2019-11-01) * bug #34198 [HttpClient] Fix perf issue when doing thousands of requests with curl (nicolas-grekas) From a2fd583db3d35629d17c6e3806181512d4c9b1e6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 11 Nov 2019 17:38:54 +0100 Subject: [PATCH 2/2] updated VERSION for 4.3.7 --- 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 3857e20fd6..8656adcbb5 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '4.3.7-DEV'; + const VERSION = '4.3.7'; const VERSION_ID = 40307; const MAJOR_VERSION = 4; const MINOR_VERSION = 3; const RELEASE_VERSION = 7; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '01/2020'; const END_OF_LIFE = '07/2020';