From f93f6b3e52a590749994cc23d8fb879472ceb76c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 31 Aug 2020 08:09:42 +0200 Subject: [PATCH 1/5] Update VERSION for 4.4.12 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index 7c89e610fa..77806d80ca 100644 --- a/Kernel.php +++ b/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '4.4.12-DEV'; + const VERSION = '4.4.12'; const VERSION_ID = 40412; const MAJOR_VERSION = 4; const MINOR_VERSION = 4; const RELEASE_VERSION = 12; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2022'; const END_OF_LIFE = '11/2023'; From a5ed890bd448a456a592e14b46996140eeface4b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 31 Aug 2020 08:14:12 +0200 Subject: [PATCH 2/5] Bump Symfony version to 4.4.13 --- Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel.php b/Kernel.php index 77806d80ca..e7c70c8fd4 100644 --- a/Kernel.php +++ b/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - const VERSION = '4.4.12'; - const VERSION_ID = 40412; + const VERSION = '4.4.13-DEV'; + const VERSION_ID = 40413; const MAJOR_VERSION = 4; const MINOR_VERSION = 4; - const RELEASE_VERSION = 12; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 13; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '11/2022'; const END_OF_LIFE = '11/2023'; From 05293dddb5d44bbadfa95aec4c5755a0d8eac7cd Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 31 Aug 2020 08:22:19 +0200 Subject: [PATCH 3/5] Bump Symfony version to 5.1.5 --- Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel.php b/Kernel.php index 421b68d895..b6788a4046 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.4'; - const VERSION_ID = 50104; + const VERSION = '5.1.5-DEV'; + const VERSION_ID = 50105; const MAJOR_VERSION = 5; const MINOR_VERSION = 1; - const RELEASE_VERSION = 4; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 5; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '01/2021'; const END_OF_LIFE = '01/2021'; From 8e8d0edc74a13fe592ca5b1c392b41c63f519ecc Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Mon, 15 Jun 2020 07:28:47 +0000 Subject: [PATCH 4/5] Remove headers with internal meaning from HttpClient responses --- HttpClientKernel.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HttpClientKernel.php b/HttpClientKernel.php index 912ce313f8..2056a673a6 100644 --- a/HttpClientKernel.php +++ b/HttpClientKernel.php @@ -58,6 +58,10 @@ public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQ $response = new Response($response->getContent(!$catch), $response->getStatusCode(), $response->getHeaders(!$catch)); + $response->headers->remove('X-Body-File'); + $response->headers->remove('X-Body-Eval'); + $response->headers->remove('X-Content-Digest'); + $response->headers = new class($response->headers->all()) extends ResponseHeaderBag { protected function computeCacheControlValue(): string { From 3e32676e6cb5d2081c91a56783471ff8a7f7110b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 2 Sep 2020 10:15:18 +0200 Subject: [PATCH 5/5] Update VERSION for 5.1.5 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index b6788a4046..c90c77ae77 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.5-DEV'; + const VERSION = '5.1.5'; const VERSION_ID = 50105; const MAJOR_VERSION = 5; const MINOR_VERSION = 1; const RELEASE_VERSION = 5; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '01/2021'; const END_OF_LIFE = '01/2021';