Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG-2.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down