Merge pull request #41193 from fabpot/release-3.4.48

released v3.4.48
This commit is contained in:
Fabien Potencier 2021-05-12 15:01:18 +02:00 committed by GitHub
commit d0d17db1c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.48 (2021-05-12)
* security #cve-2021-21424 [Security][Guard] Prevent user enumeration (chalasr)
* 3.4.47 (2020-11-27)
* bug #38628 [DoctrineBridge] indexBy could reference to association columns (juanmiguelbesada)

View File

@ -67,11 +67,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private $requestStackSize = 0;
private $resetServices = false;
const VERSION = '3.4.47';
const VERSION_ID = 30447;
const VERSION = '3.4.48';
const VERSION_ID = 30448;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 4;
const RELEASE_VERSION = 47;
const RELEASE_VERSION = 48;
const EXTRA_VERSION = '';
const END_OF_MAINTENANCE = '11/2020';