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

Skip to content

Commit cd4fd18

Browse files
authored
Merge pull request #49181 from fabpot/release-6.1.12
released v6.1.12
2 parents 04bc745 + 8ce5733 commit cd4fd18

File tree

2 files changed

+11
-2
lines changed

2 files changed

8000 +11
-2
lines changed

CHANGELOG-6.1.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ in 6.1 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/v6.1.0...v6.1.1
99

10+
* 6.1.12 (2023-02-01)
11+
12+
* bug #49141 [HttpFoundation] Fix bad return type in IpUtils::checkIp4() (tristankretzer)
13+
* bug #49126 [DependencyInjection] Fix order of arguments when mixing positional and named ones (nicolas-grekas)
14+
* bug #49104 [HttpClient] Fix collecting data non-late for the profiler (nicolas-grekas)
15+
* bug #49103 [Security/Http] Fix compat of persistent remember-me with legacy tokens (nicolas-grekas)
16+
* security #cve-2022-24895 [Security/Http] Remove CSRF tokens from storage on successful login (nicolas-grekas)
17+
* security #cve-2022-24894 [HttpKernel] Remove private headers before storing responses with HttpCache (nicolas-grekas)
18+
1019
* 6.1.11 (2023-01-24)
1120

1221
* bug #49078 [Security/Http] Check tokens before loading users from providers (nicolas-grekas)

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 array $freshCache = [];
8080

81-
public const VERSION = '6.1.12-DEV';
81+
public const VERSION = '6.1.12';
8282
public const VERSION_ID = 60112;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 1;
8585
public const RELEASE_VERSION = 12;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = '';
8787

8888
public const END_OF_MAINTENANCE = '01/2023';
8989
public const END_OF_LIFE = '01/2023';

0 commit comments

Comments
 (0)
0