Skip to content

Commit

Permalink
Merge pull request #52534 from fabpot/release-4.4.51
Browse files Browse the repository at this point in the history
released v4.4.51
  • Loading branch information
fabpot committed Nov 10, 2023
2 parents 5d095d5 + 40eb71e commit 9926d13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG-4.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ in 4.4 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.4.0...v4.4.1

* 4.4.51 (2023-11-10)

* security #cve-2023-46734 [TwigBridge] Ensure CodeExtension's filters properly escape their input (nicolas-grekas, GromNaN)

* 4.4.50 (2023-02-01)

* security #cve-2022-24895 [Security/Http] Remove CSRF tokens from storage on successful login (nicolas-grekas)
Expand Down
6 changes: 3 additions & 3 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl

private static $freshCache = [];

public const VERSION = '4.4.50';
public const VERSION_ID = 40450;
public const VERSION = '4.4.51';
public const VERSION_ID = 40451;
public const MAJOR_VERSION = 4;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 50;
public const RELEASE_VERSION = 51;
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '11/2022';
Expand Down

0 comments on commit 9926d13

Please sign in to comment.