Skip to content

Commit 6bc1c2e

Browse files
authored
Merge pull request symfony#49178 from fabpot/release-4.4.50
released v4.4.50
2 parents c75c569 + d0f26e7 commit 6bc1c2e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG-4.4.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.50 (2023-02-01)
11+
12+
* security #cve-2022-24895 [Security/Http] Remove CSRF tokens from storage on successful login (nicolas-grekas)
13+
* security #cve-2022-24894 [HttpKernel] Remove private headers before storing responses with HttpCache (nicolas-grekas)
14+
1015
* 4.4.49 (2022-11-28)
1116

1217
* bug #48273 [HttpKernel] Fix message for unresovable arguments of invokable controllers (fancyweb)

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.49';
80-
public const VERSION_ID = 40449;
79+
public const VERSION = '4.4.50';
80+
public const VERSION_ID = 40450;
8181
public const MAJOR_VERSION = 4;
8282
public const MINOR_VERSION = 4;
83-
public const RELEASE_VERSION = 49;
83+
public const RELEASE_VERSION = 50;
8484
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '11/2022';

0 commit comments

Comments
 (0)