We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2102dd1 commit 1918594Copy full SHA for 1918594
CHANGELOG
@@ -1,5 +1,9 @@
1
**Twig 2 is not maintained anymore**
2
3
+# 2.16.1 (2024-09-09)
4
+
5
+ * Fix a security issue when an included sandboxed template has been loaded before without the sandbox context
6
7
# 2.16.0 (2023-12-22)
8
9
* Last version for the 2.x series
src/Environment.php
@@ -38,11 +38,11 @@
38
*/
39
class Environment
40
{
41
- public const VERSION = '2.16.0';
42
- public const VERSION_ID = 21600;
+ public const VERSION = '2.16.1';
+ public const VERSION_ID = 21601;
43
public const MAJOR_VERSION = 2;
44
public const MINOR_VERSION = 16;
45
- public const RELEASE_VERSION = 0;
+ public const RELEASE_VERSION = 1;
46
public const EXTRA_VERSION = '';
47
48
private $charset;
0 commit comments