File tree 2 files changed +13
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel
2 files changed +13
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ in 5.2 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.2.0...v5.2.1
9
9
10
+ * 5.2.10 (2021-06-01)
11
+
12
+ * bug #41000 [ Form] Use !isset for checks cause this doesn't falsely include 0 (Kai Dederichs)
13
+ * bug #41407 [ DependencyInjection] keep container.service_subscriber tag on the decorated definition (xabbuh)
14
+ * bug #40866 [ Filesystem] fix readlink() for Windows (a1812)
15
+ * bug #41394 [ Form] fix support for years outside of the 32b range on x86 arch (nicolas-grekas)
16
+ * bug #41380 Make Mailgun Header compatible with other Bridges (jderusse)
17
+ * bug #39847 [ Messenger] Fix merging PrototypedArrayNode associative values (svityashchuk)
18
+ * bug #41346 [ WebProfilerBundle] Wrapping exception js in Sfjs check and also loading base_js Sfjs if needed (weaverryan)
19
+ * bug #41344 [ VarDumper] Don't pass null to parse_url() (derrabus)
20
+
10
21
* 5.2.9 (2021-05-19)
11
22
12
23
* security #cve-2021 -21424 [ Security\Core] Fix user enumeration via response body on invalid credentials (chalasr)
Original file line number Diff line number Diff line change @@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
74
74
75
75
private static $ freshCache = [];
76
76
77
- public const VERSION = '5.2.10-DEV ' ;
77
+ public const VERSION = '5.2.10 ' ;
78
78
public const VERSION_ID = 50210 ;
79
79
public const MAJOR_VERSION = 5 ;
80
80
public const MINOR_VERSION = 2 ;
81
81
public const RELEASE_VERSION = 10 ;
82
- public const EXTRA_VERSION = 'DEV ' ;
82
+ public const EXTRA_VERSION = '' ;
83
83
84
84
public const END_OF_MAINTENANCE = '07/2021 ' ;
85
85
public const END_OF_LIFE = '07/2021 ' ;
You can’t perform that action at this time.
0 commit comments