We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f68e2 commit 126b2c9Copy full SHA for 126b2c9
CHANGELOG
@@ -1,5 +1,6 @@
1
-# 3.14.0 (2024-XX-XX)
+# 3.14.0 (2024-09-09)
2
3
+ * Fix a security issue when an included sandboxed template has been loaded before without the sandbox context
4
* Add the possibility to reset globals via `Environment::resetGlobals()`
5
* Deprecate `Environment::mergeGlobals()`
6
src/Environment.php
@@ -43,12 +43,12 @@
43
*/
44
class Environment
45
{
46
- public const VERSION = '3.14.0-DEV';
+ public const VERSION = '3.14.0';
47
public const VERSION_ID = 31400;
48
public const MAJOR_VERSION = 3;
49
public const MINOR_VERSION = 14;
50
public const RELEASE_VERSION = 0;
51
- public const EXTRA_VERSION = 'DEV';
+ public const EXTRA_VERSION = '';
52
53
private $charset;
54
private $loader;
0 commit comments