From 8552386f0be5d089435ddee94291689af7284713 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 6 Dec 2018 14:43:09 +0000 Subject: [PATCH 1/2] updated CHANGELOG for 2.8.49 --- CHANGELOG-2.8.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG-2.8.md b/CHANGELOG-2.8.md index aa884108b6dd..d5f2b66fdf71 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.49 (2018-12-06) + + * security #cve-2018-19790 [Security\Http] detect bad redirect targets using backslashes (xabbuh) + * security #cve-2018-19789 [Form] Filter file uploads out of regular form types (nicolas-grekas) + * 2.8.48 (2018-11-26) * bug #28917 [DoctrineBridge] catch errors while converting to db values in data collector (alekitto) From adeee139cfa80087f1a9bff3967c818d8e502cea Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 6 Dec 2018 14:45:07 +0000 Subject: [PATCH 2/2] bumped version --- 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 b35ddef8b1cc..e49e4b792c6f 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.48'; - const VERSION_ID = 20848; + const VERSION = '2.8.49'; + const VERSION_ID = 20849; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; - const RELEASE_VERSION = 48; + const RELEASE_VERSION = 49; const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2018';