8000 Merge pull request #48826 from fabpot/release-5.4.18 · symfony/symfony@cb7c443 · GitHub
[go: up one dir, main page]

Skip to content

Commit cb7c443

Browse files
authored
Merge pull request #48826 from fabpot/release-5.4.18
released v5.4.18
2 parents 4cf1a38 + 33cfc8c commit cb7c443

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG-5.4.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.18 (2022-12-29)
11+
12+
* bug #48823 [Cache] Fix possibly null value passed to preg_match() in RedisTrait (chalasr)
13+
* bug #48816 [Cache] Fix for RedisAdapter without auth parameter (rikvdh)
14+
1015
* 5.4.17 (2022-12-28)
1116

1217
* bug #48787 [PhpUnitBridge] Use verbose deprecation output for quiet types only when it reaches the threshold (ogizanagi)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.18-DEV';
81+
public const VERSION = '5.4.18';
8282
public const VERSION_ID = 50418;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
8585
public const RELEASE_VERSION = 18;
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