From 2d6bf2e689cbaf6500ed21a6ccfd45bcd5f3c931 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 13 Nov 2019 09:35:55 +0100 Subject: [PATCH 1/3] Fix CHANGELOG --- CHANGELOG-2.8.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-2.8.md b/CHANGELOG-2.8.md index 09cee379e3525..66822b4cdd0a6 100644 --- a/CHANGELOG-2.8.md +++ b/CHANGELOG-2.8.md @@ -7,6 +7,10 @@ in 2.8 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/v2.8.0...v2.8.1 +* 2.8.51 (2019-04-17) + + * no changes + * 2.8.50 (2019-04-17) * security #cve-2019-10910 [DI] Check service IDs are valid (nicolas-grekas) From be612fe316924132f286db6374c656dbcc564242 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 13 Nov 2019 09:36:05 +0100 Subject: [PATCH 2/3] updated CHANGELOG for 2.8.52 --- CHANGELOG-2.8.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG-2.8.md b/CHANGELOG-2.8.md index 66822b4cdd0a6..aa13e1f9f1b12 100644 --- a/CHANGELOG-2.8.md +++ b/CHANGELOG-2.8.md @@ -7,6 +7,11 @@ in 2.8 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/v2.8.0...v2.8.1 +* 2.8.52 (2019-11-13) + + * security #cve-2019-18888 [HttpFoundation] fix guessing mime-types of files with leading dash (nicolas-grekas) + * security #cve-2019-18887 [HttpKernel] Use constant time comparison in UriSigner (stof) + * 2.8.51 (2019-04-17) * no changes From 44dbe046a56b1e510b40ab7ecdeb946e7388d709 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 13 Nov 2019 09:36:16 +0100 Subject: [PATCH 3/3] updated VERSION for 2.8.52 --- src/Symfony/Component/HttpKernel/Kernel.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 2e5c99b2353ea..d4207ac9fa963 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -59,11 +59,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '2.8.51'; - const VERSION_ID = 20851; + const VERSION = '2.8.52'; + const VERSION_ID = 20852; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; - const RELEASE_VERSION = 51; + const RELEASE_VERSION = 52; const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2018';