File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ in 2.7 minor versions.
7
7
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
8
8
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.7.0...v2.7.1
9
9
10
+ * 2.7.13 (2016-05-09)
11
+
12
+ * security #18733 limited the maximum length of a submitted username (fabpot)
13
+ * bug #18730 [ FrameworkBundle] prevent calling get() for service_container service (xabbuh)
14
+ * bug #18709 [ DependencyInjection] top-level anonymous services must be public (xabbuh)
15
+ * bug #18692 add @Event annotation for KernelEvents (Haehnchen)
16
+ * bug #18246 [ DependencyInjection] fix ambiguous services schema (backbone87)
17
+
10
18
* 2.7.12 (2016-04-29)
11
19
12
20
* bug #18180 [ Form] fixed BC break with pre selection of choices with ` ChoiceType ` and its children (HeahDude)
Original file line number Diff line number Diff line change @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
58
58
protected $ startTime ;
59
59
protected $ loadClassCache ;
60
60
61
- const VERSION = '2.7.13-DEV ' ;
61
+ const VERSION = '2.7.13 ' ;
62
62
const VERSION_ID = 20713 ;
63
63
const MAJOR_VERSION = 2 ;
64
64
const MINOR_VERSION = 7 ;
65
65
const RELEASE_VERSION = 13 ;
66
- const EXTRA_VERSION = 'DEV ' ;
66
+ const EXTRA_VERSION = '' ;
67
67
68
68
const END_OF_MAINTENANCE = '05/2018 ' ;
69
69
const END_OF_LIFE = '05/2019 ' ;
You can’t perform that action at this time.
0 commit comments