Skip to content

Commit

Permalink
Merge pull request #41276 from fabpot/release-3.4.49
Browse files Browse the repository at this point in the history
released v3.4.49
  • Loading branch information
fabpot committed May 19, 2021
2 parents 1ad13fe + 13af892 commit ba0e346
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG-3.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ in 3.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/v3.4.0...v3.4.1

* 3.4.49 (2021-05-19)

* security #cve-2021-21424 [Security\Core] Fix user enumeration via response body on invalid credentials (chalasr)

* 3.4.48 (2021-05-12)

* security #cve-2021-21424 [Security][Guard] Prevent user enumeration (chalasr)
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 @@ -67,11 +67,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private $requestStackSize = 0;
private $resetServices = false;

const VERSION = '3.4.48';
const VERSION_ID = 30448;
const VERSION = '3.4.49';
const VERSION_ID = 30449;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 4;
const RELEASE_VERSION = 48;
const RELEASE_VERSION = 49;
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '11/2020';
Expand Down

0 comments on commit ba0e346

Please sign in to comment.