8000 Merge pull request #17368 from fabpot/release-2.8.2 · fervo/symfony@f3e6a82 · GitHub
[go: up one dir, main page]

Skip to content

Commit f3e6a82

Browse files
committed
Merge pull request symfony#17368 from fabpot/release-2.8.2
released v2.8.2
2 parents 2918fdf + 1c3b1c7 commit f3e6a82

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ 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.2 (2016-01-14)
11+
12+
* security #17359 do not ship with a custom rng implementation (xabbuh, fabpot)
13+
* bug #17253 [Console] HHVM read input stream bug (mbutkereit)
14+
* bug #17314 Fix max width for multibyte keys in choice question (mheki)
15+
* bug #17326 [Console] Display console application name even when no version set (polc)
16+
* bug #17328 [Serializer] Allow to use proxies in object_to_populate (dunglas)
17+
* bug #17202 [FrameworkBundle] Don't log twice with the error handler (nicolas-grekas)
18+
* bug #17347 Workaround https://bugs.php.net/63206 (nicolas-grekas)
19+
* bug #17199 [Serializer] Allow context to contain not serializable data (dunglas, nicolas-grekas)
20+
* bug #17334 [WebProfiler] Fixed sf-minitoolbar height (yceruto)
21+
* bug #17140 [Serializer] Remove normalizer cache in Serializer class (jvasseur)
22+
* bug #17320 [Debug] Fixed erroneous deprecation notice for extended Interfaces (peterrehm)
23+
* bug #17307 [FrameworkBundle] Fix paths with % in it (like urlencoded) (scaytrase)
24+
* bug #17078 [Bridge] [Doctrine] [Validator] Added support \IteratorAggregate for UniqueEntityValidator (Disparity)
25+
* bug #17298 [FrameworkBundle] Use proper class to fetch $versionStrategy property (dosten)
26+
* bug #17287 [HttpKernel] Forcing string comparison on query parameters sort in UriSigner (Tim van Densen)
27+
* bug #17279 [FrameworkBundle] Add case in Kernel directory guess for PHPUnit (tgalopin)
28+
* bug #17278 [FrameworkBundle] Add case in Kernel directory guess for PHPUnit (tgalopin)
29+
* bug #17283 [WebProfilerBundle] Remove loading status from AJAX toolbar after error (kucharovic)
30+
* bug #17275 [PhpUnitBridge] Re-enable the garbage collector (nicolas-grekas)
31+
* bug #17276 [Process] Fix potential race condition (nicolas-grekas)
32+
* bug #17261 [FrameworkBundle] Allow to autowire service_container (dunglas)
33+
* bug #17183 [FrameworkBundle] Set the kernel.name properly after a cache warmup (jakzal)
34+
* bug #17197 [Yaml] cast arrays to objects after parsing has finished (xabbuh)
35+
* bug #17247 Fix toolbar display when nvd3 is loaded on page (Seldaek)
36+
* bug #17159 [Yaml] recognize when a block scalar is left (xabbuh)
37+
* bug #17195 bug #14246 [Filesystem] dumpFile() non atomic (Hidde Boomsma)
38+
* feature #16747 [Form] Improved performance of ChoiceType and its subtypes (webmozart)
39+
* bug #17179 [WebProfiler] Removed an object as route generator argument (iltar)
40+
* bug #17177 [Process] Fix potential race condition leading to transient tests (nicolas-grekas)
41+
* bug #17163 [Form] fix Catchable Fatal Error if choices is not an array (Gladhon, nicolas-grekas)
42+
* bug #17152 [DoctrineBridge] [PropertyInfo] Catch Doctrine\ORM\Mapping\MappingException (dunglas)
43+
* bug #17119 [Form] improve deprecation message for "empty_value" and "choice_list" options. (hhamon)
44+
* bug #17156 [HttpFoundation] add missing symfony/polyfill-php55 dependency (xabbuh)
45+
* bug #17162 [Form] Fix regression on Collection type (hason)
46+
1047
* 2.8.1 (2015-12-26)
1148

1249
* bug #16864 [Yaml] fix indented line handling in folded blocks (xabbuh)

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