Skip to content

Commit 9926d13

Browse files
authored
Merge pull request symfony#52534 from fabpot/release-4.4.51
released v4.4.51
2 parents 5d095d5 + 40eb71e commit 9926d13

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG-4.4.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ in 4.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/v4.4.0...v4.4.1
99

10+
* 4.4.51 (2023-11-10)
11+
12+
* security #cve-2023-46734 [TwigBridge] Ensure CodeExtension's filters properly escape their input (nicolas-grekas, GromNaN)
13+
1014
* 4.4.50 (2023-02-01)
1115

1216
* security #cve-2022-24895 [Security/Http] Remove CSRF tokens from storage on successful login (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676

7777
private static $freshCache = [];
7878

79-
public const VERSION = '4.4.50';
80-
public const VERSION_ID = 40450;
79+
public const VERSION = '4.4.51';
80+
public const VERSION_ID = 40451;
8181
public const MAJOR_VERSION = 4;
8282
public const MINOR_VERSION = 4;
83-
public const RELEASE_VERSION = 50;
83+
public const RELEASE_VERSION = 51;
8484
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '11/2022';

0 commit comments

Comments
 (0)