From fc18c2ed3069f8ed6699cfc4dfc141af1b59b94e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 28 Sep 2022 10:39:41 +0200 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 317ae0f13e0..51712223b6f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ -# 2.15.3 (2022-XX-XX) +# 2.15.3 (2022-09-28) - * n/a + * Fix a security issue on filesystem loader (possibility to load a template outside a configured directory) # 2.15.2 (2022-08-12) From ab402673db8746cb3a4c46f3869d6253699f614a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 28 Sep 2022 10:40:08 +0200 Subject: [PATCH 2/2] Prepare the 2.15.3 release --- src/Environment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Environment.php b/src/Environment.php index c5040a345a4..13ce511f4fe 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ */ class Environment { - public const VERSION = '2.15.3-DEV'; + public const VERSION = '2.15.3'; public const VERSION_ID = 21503; public const MAJOR_VERSION = 2; public const MINOR_VERSION = 15; public const RELEASE_VERSION = 3; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; private $charset; private $loader;