Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9c76074

Browse filesBrowse files
authored
Merge pull request #45654 from fabpot/release-5.4.6
released v5.4.6
2 parents 924b5ba + 11bb129 commit 9c76074
Copy full SHA for 9c76074

File tree

2 files changed

+14
-2
lines changed
Filter options

2 files changed

+14
-2
lines changed

‎CHANGELOG-5.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.4.md
+12Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ in 5.4 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.4.0...v5.4.1
99

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+
1022
* 5.4.5 (2022-02-28)
1123

1224
* bug #45351 [WebProfilerBundle] Log section minor fixes (missing "notice" filter, log priority, accessibility) (Amunak)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static $freshCache = [];
8080

81-
public const VERSION = '5.4.6-DEV';
81+
public const VERSION = '5.4.6';
8282
public const VERSION_ID = 50406;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
8585
public const RELEASE_VERSION = 6;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = '';
8787

8888
public const END_OF_MAINTENANCE = '11/2024';
8989
public const END_OF_LIFE = '11/2025';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.