Merge pull request #18739 from fabpot/release-2.7.13

released v2.7.13
This commit is contained in:
Fabien Potencier 2016-05-09 22:35:47 +02:00
commit 7c23f76ba7
2 changed files with 10 additions and 2 deletions

View File

@ -7,6 +7,14 @@ in 2.7 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/v2.7.0...v2.7.1
* 2.7.13 (2016-05-09)
* security #18733 limited the maximum length of a submitted username (fabpot)
* bug #18730 [FrameworkBundle] prevent calling get() for service_container service (xabbuh)
* bug #18709 [DependencyInjection] top-level anonymous services must be public (xabbuh)
* bug #18692 add @Event annotation for KernelEvents (Haehnchen)
* bug #18246 [DependencyInjection] fix ambiguous services schema (backbone87)
* 2.7.12 (2016-04-29)
* bug #18180 [Form] fixed BC break with pre selection of choices with `ChoiceType` and its children (HeahDude)

View File

@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;
const VERSION = '2.7.13-DEV';
const VERSION = '2.7.13';
const VERSION_ID = 20713;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 7;
const RELEASE_VERSION = 13;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';
const END_OF_MAINTENANCE = '05/2018';
const END_OF_LIFE = '05/2019';