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 5.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/v5.4.0...v5.4.1
9
9
10
+ * 5.4.6 (2022-03-05)
11
+
12
+ * bug #45619 [ redis-messenger] remove undefined array key warnings (PhilETaylor)
13
+ * bug #45637 [ Cache] do not pass DBAL connections to PDO adapters (xabbuh)
14
+ * bug #45631 [ HttpFoundation] Fix PHP 8.1 deprecation in ` Response::isNotModified ` (HypeMC)
15
+ * bug #45610 [ HttpKernel] Guard against bad profile data (nicolas-grekas)
16
+ * bug #45532 Fix deprecations on PHP 8.2 (nicolas-grekas)
17
+ * bug #45595 [ FrameworkBundle] Fix resetting container between tests (nicolas-grekas)
18
+ * bug #45590 [ Console] Revert StringInput bc break from #45088 (bobthecow)
19
+ * bug #45585 [ HttpClient] fix checking for unset property on PHP <= 7.1.4 (nicolas-grekas)
20
+ * bug #45583 [ WebProfilerBundle] Fixes HTML syntax regression introduced by #44570 (xavismeh)
21
+
10
22
* 5.4.5 (2022-02-28)
11
23
12
24
* bug #45351 [ WebProfilerBundle] Log section minor fixes (missing "notice" filter, log priority, accessibility) (Amunak)
Original file line number Diff line number Diff line change @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
78
78
*/
79
79
private static $ freshCache = [];
80
80
81
- public const VERSION = '5.4.6-DEV ' ;
81
+ public const VERSION = '5.4.6 ' ;
82
82
public const VERSION_ID = 50406 ;
83
83
public const MAJOR_VERSION = 5 ;
84
84
public const MINOR_VERSION = 4 ;
85
85
public const RELEASE_VERSION = 6 ;
86
- public const EXTRA_VERSION = 'DEV ' ;
86
+ public const EXTRA_VERSION = '' ;
87
87
88
88
public const END_OF_MAINTENANCE = '11/2024 ' ;
89
89
public const END_OF_LIFE = '11/2025 ' ;
You can’t perform that action at this time.
0 commit comments