Skip to content

Commit ba0e346

Browse files
authored
Merge pull request #41276 from fabpot/release-3.4.49
released v3.4.49
2 parents 1ad13fe + 13af892 commit ba0e346

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG-3.4.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ in 3.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/v3.4.0...v3.4.1
99

10+
* 3.4.49 (2021-05-19)
11+
12+
* security #cve-2021-21424 [Security\Core] Fix user enumeration via response body on invalid credentials (chalasr)
13+
1014
* 3.4.48 (2021-05-12)
1115

1216
* security #cve-2021-21424 [Security][Guard] Prevent user enumeration (chalasr)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6767
private $requestStackSize = 0;
6868
private $resetServices = false;
6969

70-
const VERSION = '3.4.48';
71-
const VERSION_ID = 30448;
70+
const VERSION = '3.4.49';
71+
const VERSION_ID = 30449;
7272
const MAJOR_VERSION = 3;
7373
const MINOR_VERSION = 4;
74-
const RELEASE_VERSION = 48;
74+
const RELEASE_VERSION = 49;
7575
const EXTRA_VERSION = '';
7676

7777
const END_OF_MAINTENANCE = '11/2020';

0 commit comments

Comments
 (0)