Skip to content

Commit f588c92

Browse files
authored
Merge pull request symfony#19877 from fabpot/release-2.8.11
released v2.8.11
2 parents 9e9b41d + af440e3 commit f588c92

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ in 2.8 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.8.0...v2.8.1
99

10+
* 2.8.11 (2016-09-07)
11+
12+
* bug #19859 [ClassLoader] Fix ClassCollectionLoader inlining with declare(strict_types=1) (nicolas-grekas)
13+
* bug #19780 [FrameworkBundle] Incorrect line break in exception message (500 debug page) (pedroresende)
14+
* bug #19595 [form] lazy trans `post_max_size_message`. (aitboudad)
15+
* bug #19870 [DI] Fix setting synthetic services on ContainerBuilder (nicolas-grekas)
16+
* bug #19848 Revert "minor #19689 [DI] Cleanup array_key_exists (ro0NL)" (nicolas-grekas)
17+
* bug #19842 [FrameworkBundle] Check for class existence before is_subclass_of (chalasr)
18+
* bug #19827 [BrowserKit] Fix cookie expiration on 32 bit systems (jameshalsall)
19+
1020
* 2.8.10 (2016-09-02)
1121

1222
* bug #19786 Update profiler's layout to use flexbox (javiereguiluz)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '2.8.11-DEV';
62+
const VERSION = '2.8.11';
6363
const VERSION_ID = 20811;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 11;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';
7070
const END_OF_LIFE = '11/2019';

0 commit comments

Comments
 (0)