File tree 2 files changed +19
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel
2 files changed +19
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,23 @@ in 5.1 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.1.0...v5.1.1
9
9
10
+ * 5.1.0 (2020-05-31)
11
+
12
+ * bug #37009 [ Validator] use "allowedVariables" to configure the ExpressionLanguageSyntax constraint (xabbuh)
13
+ * bug #37008 [ Security] Fixed AbstractToken::hasUserChanged() (wouterj)
14
+ * bug #36894 [ Validator] never directly validate Existence (Required/Optional) constraints (xabbuh)
15
+ * bug #37007 [ Console] Fix QuestionHelper::disableStty() (chalasr)
16
+ * bug #36865 [ Form] validate subforms in all validation groups (xabbuh)
17
+ * bug #36907 Fixes sprintf(): Too few arguments in form transformer (pedrocasado)
18
+ * bug #36868 [ Validator] Use Mime component to determine mime type for file validator (pierredup)
19
+ * bug #37000 Add meaningful message when using ProcessHelper and Process is not installed (l-vo)
20
+ * bug #36990 [ Messenger] Change the default notify timeout value for PostgreSQL (fabpot)
21
+ * bug #36995 [ TwigBridge] fix fallback html-to-txt body converter (nicolas-grekas)
22
+ * bug #36993 [ ErrorHandler] fix setting $trace to null in FatalError (nicolas-grekas)
23
+ * bug #36987 Handle fetch mode deprecation of DBAL 2.11. (derrabus)
24
+ * bug #36984 [ SecurityBundle] Fixed version constraint on security-core and security-guard (wouterj)
25
+ * bug #36974 [ Security] Fixed handling of CSRF logout error (wouterj)
26
+
10
27
* 5.1.0-RC2 (2020-05-26)
11
28
12
29
* bug #36966 Fix extra SQL support in Doctrine migrations (fabpot)
Original file line number Diff line number Diff line change @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
73
73
74
74
private static $ freshCache = [];
75
75
76
- const VERSION = '5.1.0-DEV ' ;
76
+ const VERSION = '5.1.0 ' ;
77
77
const VERSION_ID = 50100 ;
78
78
const MAJOR_VERSION = 5 ;
79
79
const MINOR_VERSION = 1 ;
80
80
const RELEASE_VERSION = 0 ;
81
- const EXTRA_VERSION = 'DEV ' ;
81
+ const EXTRA_VERSION = '' ;
82
82
83
83
const END_OF_MAINTENANCE = '01/2021 ' ;
84
84
const END_OF_LIFE = '01/2021 ' ;
You can’t perform that action at this time.
0 commit comments