File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ in 5.3 minor versions.
7
7
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
8
8
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.3.0...v5.3.1
9
9
10
+ * 5.3.12 (2021-11-24)
11
+
12
+ * security #cve-2021 -41268 [ SecurityBundle] Default signature_properties to the previous behavior (wouterj)
13
+ * security #cve-2021 -41267 [ HttpKernel] Fix missing extra trusted header in sub-request (jderusse)
14
+ * security #cve-2021 -41270 [ Serializer] Use single quote to escape formulas (jderusse)
15
+ * bug #44232 [ Cache] fix connecting to local Redis sockets (nicolas-grekas)
16
+ * bug #44204 [ HttpClient] fix closing curl multi handle when destructing client (nicolas-grekas)
17
+ * bug #44208 [ Process] exclude argv/argc from possible default env vars (nicolas-grekas)
18
+
10
19
* 5.3.11 (2021-11-22)
11
20
12
21
* bug #44188 [ VarExporter] fix exporting declared but unset properties when __ sleep() is implemented (nicolas-grekas)
Original file line number Diff line number Diff line change @@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
75
75
76
76
private static $ freshCache = [];
77
77
78
- public const VERSION = '5.3.12-DEV ' ;
78
+ public const VERSION = '5.3.12 ' ;
79
79
public const VERSION_ID = 50312 ;
80
80
public const MAJOR_VERSION = 5 ;
81
81
public const MINOR_VERSION = 3 ;
82
82
public const RELEASE_VERSION = 12 ;
83
- public const EXTRA_VERSION = 'DEV ' ;
83
+ public const EXTRA_VERSION = '' ;
84
84
85
85
public const END_OF_MAINTENANCE = '01/2022 ' ;
86
86
public const END_OF_LIFE = '01/2022 ' ;
You can’t perform that action at this time.
0 commit comments