From 0887422319889e442458e48e2f3d9add1a172ad5 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 28 Sep 2022 10:38:36 +0200 Subject: [PATCH] Prepare the 1.44.7 release --- CHANGELOG | 4 ++++ src/Environment.php | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ea1319a12ee..2662e09a912 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +# 1.44.7 (2022-09-28) + + * Fix a security issue on filesystem loader (possibility to load a template outside a configured directory) + # 1.44.6 (2021-11-25) * Last version for the 1.x series diff --git a/src/Environment.php b/src/Environment.php index ae7a8d7d77e..53c7405d4a7 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -41,11 +41,11 @@ */ class Environment { - public const VERSION = '1.44.6'; - public const VERSION_ID = 14406; + public const VERSION = '1.44.7'; + public const VERSION_ID = 14407; public const MAJOR_VERSION = 1; public const MINOR_VERSION = 44; - public const RELEASE_VERSION = 6; + public const RELEASE_VERSION = 7; public const EXTRA_VERSION = ''; protected $charset;