Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7c23f76

Browse filesBrowse files
committed
Merge pull request #18739 from fabpot/release-2.7.13
released v2.7.13
2 parents 9a0e299 + d0c233e commit 7c23f76
Copy full SHA for 7c23f76

File tree

Expand file treeCollapse file tree

2 files changed

+10
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+10
-2
lines changed

‎CHANGELOG-2.7.md

Copy file name to clipboardExpand all lines: CHANGELOG-2.7.md
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ in 2.7 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.7.0...v2.7.1
99

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+
1018
* 2.7.12 (2016-04-29)
1119

1220
* bug #18180 [Form] fixed BC break with pre selection of choices with `ChoiceType` and its children (HeahDude)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5858
protected $startTime;
5959
protected $loadClassCache;
6060

61-
const VERSION = '2.7.13-DEV';
61+
const VERSION = '2.7.13';
6262
const VERSION_ID = 20713;
6363
const MAJOR_VERSION = 2;
6464
const MINOR_VERSION = 7;
6565
const RELEASE_VERSION = 13;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '05/2018';
6969
const END_OF_LIFE = '05/2019';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.