Merge pull request #37288 from fabpot/release-5.1.2

released v5.1.2
This commit is contained in:
Fabien Potencier 2020-06-15 15:51:55 +02:00 committed by GitHub
commit b551cb4c45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -7,6 +7,16 @@ in 5.1 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/v5.1.0...v5.1.1
* 5.1.2 (2020-06-15)
* bug #37265 [HttpFoundation] use InputBag for Request::$request only if data is coming from a form (nicolas-grekas)
* bug #37283 [SecurityBundle] Fix CookieClearingLogoutListener DI configuration (wouterj)
* bug #37160 Reset question validator attempts only for actual stdin (ostrolucky)
* bug #36975 [PropertyInfo] Make PhpDocExtractor compatible with phpDocumentor v5 (DerManoMann)
* bug #37279 [Form] Fixed prototype block prefixes hierarchy of the CollectionType (yceruto)
* bug #37276 [Form] Fixed block prefixes hierarchy of the CollectionType (yceruto)
* bug #37261 Fix register csrf protection listener (Ne-Lexa)
* 5.1.1 (2020-06-12)
* bug #37227 [DependencyInjection][CheckTypeDeclarationsPass] Handle unresolved parameters pointing to environment variables (fancyweb)

View File

@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private static $freshCache = [];
const VERSION = '5.1.2-DEV';
const VERSION = '5.1.2';
const VERSION_ID = 50102;
const MAJOR_VERSION = 5;
const MINOR_VERSION = 1;
const RELEASE_VERSION = 2;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';
const END_OF_MAINTENANCE = '01/2021';
const END_OF_LIFE = '01/2021';