From 4f25330c216b7bb178603b2e25fb7a9325015507 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 30 Sep 2022 09:40:28 +0200 Subject: [PATCH 1/7] Update VERSION for 5.4.13 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index 7a7e678a4f..93068eda13 100644 --- a/Kernel.php +++ b/Kernel.php @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static $freshCache = []; - public const VERSION = '5.4.13-DEV'; + public const VERSION = '5.4.13'; public const VERSION_ID = 50413; public const MAJOR_VERSION = 5; public const MINOR_VERSION = 4; public const RELEASE_VERSION = 13; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '11/2024'; public const END_OF_LIFE = '11/2025'; From 44218cabab6c6887231e6b92d3d81b683bae186b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 30 Sep 2022 10:03:03 +0200 Subject: [PATCH 2/7] Bump Symfony version to 5.4.14 --- Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel.php b/Kernel.php index 93068eda13..6e20f90721 100644 --- a/Kernel.php +++ b/Kernel.php @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static $freshCache = []; - public const VERSION = '5.4.13'; - public const VERSION_ID = 50413; + public const VERSION = '5.4.14-DEV'; + public const VERSION_ID = 50414; public const MAJOR_VERSION = 5; public const MINOR_VERSION = 4; - public const RELEASE_VERSION = 13; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 14; + public const EXTRA_VERSION = 'DEV'; public const END_OF_MAINTENANCE = '11/2024'; public const END_OF_LIFE = '11/2025'; From 5939a039103580d8d86a4c80e245258ad50c91b2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 30 Sep 2022 10:03:37 +0200 Subject: [PATCH 3/7] Update VERSION for 6.0.13 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index eb53328f2c..9bddd8202f 100644 --- a/Kernel.php +++ b/Kernel.php @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static array $freshCache = []; - public const VERSION = '6.0.13-DEV'; + public const VERSION = '6.0.13'; public const VERSION_ID = 60013; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 0; public const RELEASE_VERSION = 13; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2023'; public const END_OF_LIFE = '01/2023'; From f1b9eab86c9b747cf4f1ec27817f1e5389a78095 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 30 Sep 2022 10:10:11 +0200 Subject: [PATCH 4/7] Bump Symfony version to 6.0.14 --- Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel.php b/Kernel.php index 9bddd8202f..29da5629cf 100644 --- a/Kernel.php +++ b/Kernel.php @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static array $freshCache = []; - public const VERSION = '6.0.13'; - public const VERSION_ID = 60013; + public const VERSION = '6.0.14-DEV'; + public const VERSION_ID = 60014; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 0; - public const RELEASE_VERSION = 13; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 14; + public const EXTRA_VERSION = 'DEV'; public const END_OF_MAINTENANCE = '01/2023'; public const END_OF_LIFE = '01/2023'; From 9da43a53bd53156def5bcecd8ae974a111e04779 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 30 Sep 2022 10:16:45 +0200 Subject: [PATCH 5/7] Bump Symfony version to 6.1.6 --- Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel.php b/Kernel.php index 67145a2ed7..8b757fcd51 100644 --- a/Kernel.php +++ b/Kernel.php @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static array $freshCache = []; - public const VERSION = '6.1.5'; - public const VERSION_ID = 60105; + public const VERSION = '6.1.6-DEV'; + public const VERSION_ID = 60106; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 1; - public const RELEASE_VERSION = 5; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 6; + public const EXTRA_VERSION = 'DEV'; public const END_OF_MAINTENANCE = '01/2023'; public const END_OF_LIFE = '01/2023'; From bc58e5408d72b0d8af2e11ef569e26e7001a42fa Mon Sep 17 00:00:00 2001 From: Andrii Dembitskyi Date: Fri, 30 Sep 2022 10:59:54 +0300 Subject: [PATCH 6/7] [FrameworkBundle] Allow to specify `null` for exception mapping configuration values --- EventListener/ErrorListener.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/EventListener/ErrorListener.php b/EventListener/ErrorListener.php index 9dc3871c25..b6fd0a357d 100644 --- a/EventListener/ErrorListener.php +++ b/EventListener/ErrorListener.php @@ -33,8 +33,14 @@ class ErrorListener implements EventSubscriberInterface protected $controller; protected $logger; protected $debug; + /** + * @var array|null}> + */ protected $exceptionsMapping; + /** + * @param array|null}> $exceptionsMapping + */ public function __construct($controller, LoggerInterface $logger = null, bool $debug = false, array $exceptionsMapping = []) { $this->controller = $controller; From 102f99bf81799e93f61b9a73b2f38b309c587a94 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 12 Oct 2022 09:48:47 +0200 Subject: [PATCH 7/7] Update VERSION for 6.1.6 --- Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel.php b/Kernel.php index 8b757fcd51..3c8c4068dc 100644 --- a/Kernel.php +++ b/Kernel.php @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static array $freshCache = []; - public const VERSION = '6.1.6-DEV'; + public const VERSION = '6.1.6'; public const VERSION_ID = 60106; public const MAJOR_VERSION = 6; public const MINOR_VERSION = 1; public const RELEASE_VERSION = 6; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2023'; public const END_OF_LIFE = '01/2023';