8000 Merge pull request #19831 from fabpot/release-2.8.10 · symfony/symfony@84e8eb7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 84e8eb7

Browse files
authored
Merge pull request #19831 from fabpot/release-2.8.10
released v2.8.10
2 parents 59d6784 + 84fee0c commit 84e8eb7

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ 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.10 (2016-09-02)
11+
12+
* bug #19786 Update profiler's layout to use flexbox (javiereguiluz)
13+
* bug #19794 [VarDumper] Various minor fixes & cleanups (nicolas-grekas)
14+
* bug #19751 Fixes the calendar in constructor to handle null (wakqasahmed)
15+
* bug #19388 [Validator][GroupSequence] fixed GroupSequence validation ignores PropetyMetadata of parent classes (Sandro Hopf)
16+
* bug #19601 [FrameworkBundle] Added friendly exception when constraint validator class does not exist (yceruto)
17+
* bug #19580 [Validator] fixed duplicate constraints with parent class interfaces (dmaicher)
18+
* bug #19647 [Debug] Swap dumper services at bootstrap (lyrixx)
19+
* bug #19685 [DI] Include dynamic services in alternatives (ro0NL)
20+
* bug #19702 [Debug][HttpKernel][VarDumper] Prepare for committed 7.2 changes (aka "small-bc-breaks") (nicolas-grekas)
21+
* bug #19704 [DependencyInjection] PhpDumper::isFrozen inconsistency (allflame)
22+
* bug #19643 [DependencyInjection] Fix service autowiring inheritance (chalasr)
23+
* bug #19667 [SecurityBundle] Add missing deprecation notice for form_login.intention (ro0NL)
24+
* bug #19666 Verify explicitly that the request IP is a valid IPv4 address (nesk)
25+
* bug #19660 Disable CLI color for Windows 10 greater than 10.0.10586 (mlocati)
26+
* bug #19663 Exception details break the layout (Dionysis Arvanitis)
27+
* bug #19651 [HttpKernel] Fix HttpCache validation HTTP method (tgalopin)
28+
* bug #19623 [VarDumper] Fix dumping continuations (nicolas-grekas)
29+
* bug #19549 [HttpFoundation] fixed Request::getContent() reusage bug (1ma)
30+
* bug #19373 [Form] Skip CSRF validation on form when POST max size is exceeded (jameshalsall)
31+
* bug #19541 Fix #19531 [Form] DateType fails parsing when midnight is not a valid time (mbeccati)
32+
* bug #19579 [Process] Strengthen Windows pipe files opening (again...) (nicolas-grekas)
33+
* bug #19564 Added class existence check if is_subclass_of() fails in compiler passes (SCIF)
34+
* bug #19522 [SwiftMailerBridge] Fix flawed deprecation message (chalasr)
35+
* bug #19510 [Process] Fix double-fread() when reading unix pipes (nicolas-grekas)
36+
* bug #19508 [Process] Fix AbstractPipes::write() for a situation seen on HHVM (at least) (nicolas-grekas)
37+
1038
* 2.8.9 (2016-07-30)
1139

1240
* bug #19470 undefined offset fix (#19406) (ReenExe)

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