Skip to content

Commit

Permalink
Merge pull request #37288 from fabpot/release-5.1.2
Browse files Browse the repository at this point in the history
released v5.1.2
  • Loading branch information
fabpot committed Jun 15, 2020
2 parents d472983 + 04f054e commit b551cb4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG-5.1.md
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -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';
Expand Down

0 comments on commit b551cb4

Please sign in to comment.