Skip to content

Commit d512cc1

Browse files
authored
Merge pull request symfony#24012 from fabpot/release-2.8.27
released v2.8.27
2 parents d3692ce + 527e171 commit d512cc1

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ 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.27 (2017-08-28)
11+
12+
* bug #23989 [Debug] Remove false-positive check in DebugClassLoader (nicolas-grekas)
13+
* bug #23982 [VarDumper] Strengthen dumped JS (nicolas-grekas)
14+
* bug #23925 [Validator] Fix use of GroupSequenceProvider in child classes (linniksa)
15+
* bug #23945 [Validator] Fix Greek translation (azhurb)
16+
* bug #23909 [Console] Initialize lazily to render exceptions properly (nicolas-grekas)
17+
* bug #23856 [DI] Fix dumping abstract with YamlDumper (nicolas-grekas)
18+
* bug #23752 Ignore memcached missing key error on session destroy (jderusse)
19+
* bug #23658 [HttpFoundation] Generate safe fallback filename for wrongly encoded filename (xelaris)
20+
* bug #23783 Avoid infinite loops when profiler data is malformed (javiereguiluz)
21+
* bug #23729 [Bridge\ProxyManager] Dont call __destruct() on non-instantiated services (nicolas-grekas)
22+
1023
* 2.8.26 (2017-08-01)
1124

1225
* bug #22244 [Console] Fix passing options with defaultCommand (Jakub Sacha)

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.27-DEV';
62+
const VERSION = '2.8.27';
6363
const VERSION_ID = 20827;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 27;
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)