From ee30c3957acddc275924718dd99cf3d220be9fba Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 5 May 2020 19:11:24 +0200 Subject: [PATCH 1/3] bumped Symfony version to 5.1.0 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index 738f913886..b66dba0d3b 100644 --- a/Kernel.php +++ b/Kernel.php @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '5.1.0-BETA1'; + const VERSION = '5.1.0-DEV'; const VERSION_ID = 50100; const MAJOR_VERSION = 5; const MINOR_VERSION = 1; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'BETA1'; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '01/2021'; const END_OF_LIFE = '01/2021'; From b9dcde9571b45ee7eac70faf634ae6c398ff8efe Mon Sep 17 00:00:00 2001 From: Marc Weistroff Date: Tue, 12 May 2020 14:07:21 +0200 Subject: [PATCH 2/3] Change priority of KernelEvents::RESPONSE subscriber --- EventListener/ProfilerListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EventListener/ProfilerListener.php b/EventListener/ProfilerListener.php index b8464f1627..fec89c3ed3 100644 --- a/EventListener/ProfilerListener.php +++ b/EventListener/ProfilerListener.php @@ -119,7 +119,7 @@ public function onKernelTerminate(PostResponseEvent $event) public static function getSubscribedEvents() { return [ - KernelEvents::RESPONSE => ['onKernelResponse', -100], + KernelEvents::RESPONSE => ['onKernelResponse', -1012], KernelEvents::EXCEPTION => ['onKernelException', 0], KernelEvents::TERMINATE => ['onKernelTerminate', -1024], ]; From 7441fbe98ea8b412cbc554132412a6eb7ae7ffe6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 16 May 2020 14:31:53 +0200 Subject: [PATCH 3/3] updated VERSION for 5.1.0-RC1 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index b66dba0d3b..163e112077 100644 --- a/Kernel.php +++ b/Kernel.php @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '5.1.0-DEV'; + const VERSION = '5.1.0-RC1'; const VERSION_ID = 50100; const MAJOR_VERSION = 5; const MINOR_VERSION = 1; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = 'RC1'; const END_OF_MAINTENANCE = '01/2021'; const END_OF_LIFE = '01/2021';