Skip to content

Release v2.8.2 #17368

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions CHANGELOG-2.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,43 @@ in 2.8 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.8.0...v2.8.1

* 2.8.2 (2016-01-14)

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

* 2.8.1 (2015-12-26)

* bug #16864 [Yaml] fix indented line handling in folded blocks (xabbuh)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;

const VERSION = '2.8.2-DEV';
const VERSION = '2.8.2';
const VERSION_ID = 20802;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 8;
const RELEASE_VERSION = 2;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '11/2018';
const END_OF_LIFE = '11/2019';
Expand Down