Compare commits

...
This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.

3 Commits
5.4 ... 3.4

Author SHA1 Message Date
Fabien Potencier ba0e346e3a
Merge pull request #41276 from fabpot/release-3.4.49
released v3.4.49
2021-05-19 14:07:19 +02:00
Fabien Potencier 13af892141 Update VERSION for 3.4.49 2021-05-19 14:06:59 +02:00
Fabien Potencier 184bd684f9 Update CHANGELOG for 3.4.49 2021-05-19 14:06:48 +02:00
2 changed files with 7 additions and 3 deletions

View File

@ -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)

View File

@ -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';