From 8268f8ce66dce4d09c57ff358f9284d3a17a3e3f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 29 Oct 2021 10:35:52 +0200 Subject: [PATCH 1/5] Bump Symfony version to 4.4.34 --- Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel.php b/Kernel.php index 53386fc119..e9af358a6c 100644 --- a/Kernel.php +++ b/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '4.4.33'; - public const VERSION_ID = 40433; + public const VERSION = '4.4.34-DEV'; + public const VERSION_ID = 40434; public const MAJOR_VERSION = 4; public const MINOR_VERSION = 4; - public const RELEASE_VERSION = 33; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 34; + public const EXTRA_VERSION = 'DEV'; public const END_OF_MAINTENANCE = '11/2022'; public const END_OF_LIFE = '11/2023'; From 5b255801a669f12d3db5e20829588360a2ff4f76 Mon Sep 17 00:00:00 2001 From: arend Date: Thu, 14 Oct 2021 13:51:22 +0200 Subject: [PATCH 2/5] fix ErrorExcception in CacheWarmerAggregate --- CacheWarmer/CacheWarmerAggregate.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CacheWarmer/CacheWarmerAggregate.php b/CacheWarmer/CacheWarmerAggregate.php index baecfc5d30..3083225935 100644 --- a/CacheWarmer/CacheWarmerAggregate.php +++ b/CacheWarmer/CacheWarmerAggregate.php @@ -102,7 +102,9 @@ public function warmUp($cacheDir) if (file_exists($this->deprecationLogsFilepath)) { $previousLogs = unserialize(file_get_contents($this->deprecationLogsFilepath)); - $collectedLogs = array_merge($previousLogs, $collectedLogs); + if (\is_array($previousLogs)) { + $collectedLogs = array_merge($previousLogs, $collectedLogs); + } } file_put_contents($this->deprecationLogsFilepath, serialize(array_values($collectedLogs))); From 73636d99823f515f4fc3f51e3fba8ecbae59e84e Mon Sep 17 00:00:00 2001 From: Antoine Makdessi Date: Wed, 3 Nov 2021 09:04:42 +0100 Subject: [PATCH 3/5] Fix typos --- DataCollector/ConfigDataCollector.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DataCollector/ConfigDataCollector.php b/DataCollector/ConfigDataCollector.php index c32c71b747..2d3ad5ce4a 100644 --- a/DataCollector/ConfigDataCollector.php +++ b/DataCollector/ConfigDataCollector.php @@ -180,7 +180,7 @@ public function isSymfonyLts(): bool } /** - * Returns the human redable date when this Symfony version ends its + * Returns the human readable date when this Symfony version ends its * maintenance period. * * @return string @@ -191,7 +191,7 @@ public function getSymfonyEom() } /** - * Returns the human redable date when this Symfony version reaches its + * Returns the human readable date when this Symfony version reaches its * "end of life" and won't receive bugs or security fixes. * * @return string From 39035d50d538a2629c9770dd0abab4ec395239b9 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 13 Nov 2021 15:39:10 +0100 Subject: [PATCH 4/5] Never rely on dynamic properties --- Tests/Fixtures/KernelForTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Fixtures/KernelForTest.php b/Tests/Fixtures/KernelForTest.php index f3b1951b83..9b0ca43d1e 100644 --- a/Tests/Fixtures/KernelForTest.php +++ b/Tests/Fixtures/KernelForTest.php @@ -19,7 +19,7 @@ class KernelForTest extends Kernel { public function getBundleMap() { - return $this->bundleMap; + return []; } public function registerBundles(): iterable From 4780598f9d85620c37e83ec45dd29da45c5c6746 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 22 Nov 2021 15:10:53 +0100 Subject: [PATCH 5/5] Update VERSION for 4.4.34 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index e9af358a6c..ec602df723 100644 --- a/Kernel.php +++ b/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '4.4.34-DEV'; + public const VERSION = '4.4.34'; public const VERSION_ID = 40434; public const MAJOR_VERSION = 4; public const MINOR_VERSION = 4; public const RELEASE_VERSION = 34; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '11/2022'; public const END_OF_LIFE = '11/2023'; pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy