File tree 2 files changed +14
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel
2 files changed +14
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,18 @@ in 4.4 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/v4.4.0...v4.4.1
9
9
10
+ * 4.4.7 (2020-03-30)
11
+
12
+ * security #cve-2020 -5255 [ HttpFoundation] Do not set the default Content-Type based on the Accept header (yceruto)
13
+ * security #cve-2020 -5275 [ Security] Fix access_control behavior with unanimous decision strategy (chalasr)
14
+ * bug #36262 [ DI] fix generating TypedReference from PriorityTaggedServiceTrait (nicolas-grekas)
15
+ * bug #36252 [ Security/Http] Allow setting cookie security settings for delete_cookies (wouterj)
16
+ * bug #36261 [ FrameworkBundle] revert to legacy wiring of the session when circular refs are detected (nicolas-grekas)
17
+ * bug #36259 [ DomCrawler] Fix BC break in assertions breaking Panther (dunglas)
18
+ * bug #36181 [ BrowserKit] fixed missing post request parameters in file uploads (codebay)
19
+ * bug #36216 [ Validator] Assert Valid with many groups (phucwan91)
20
+ * bug #36222 [ Console] Fix OutputStream for PHP 7.4 (guillbdx)
21
+
10
22
* 4.4.6 (2020-03-27)
11
23
12
24
* bug #36169 [ HttpKernel] fix locking for PHP 7.4+ (nicolas-grekas)
Original file line number Diff line number Diff line change @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
76
76
77
77
private static $ freshCache = [];
78
78
79
- const VERSION = '4.4.7-DEV ' ;
79
+ const VERSION = '4.4.7 ' ;
80
80
const VERSION_ID = 40407 ;
81
81
const MAJOR_VERSION = 4 ;
82
82
const MINOR_VERSION = 4 ;
83
83
const RELEASE_VERSION = 7 ;
84
- const EXTRA_VERSION = 'DEV ' ;
84
+ const EXTRA_VERSION = '' ;
85
85
86
86
const END_OF_MAINTENANCE = '11/2022 ' ;
87
87
const END_OF_LIFE = '11/2023 ' ;
You can’t perform that action at this time.
0 commit comments