Skip to content

Commit 8fb1fcd

Browse files
committed
Merge pull request #18329 from fabpot/release-2.8.4
released v2.8.4
2 parents 9e14f9f + f5c0298 commit 8fb1fcd

File tree

2 files changed

+58
-2
lines changed

2 files changed

+58
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,62 @@ 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.4 (2016-03-27)
11+
12+
* bug #18298 [Validator] do not treat payload as callback (xabbuh)
13+
* bug #18275 [Form] Fix BC break introduced in #14403 (HeahDude)
14+
* bug #18271 [FileSystem] Google app engine filesystem (swordbeta)
15+
* bug #18255 [HttpFoundation] Fix support of custom mime types with parameters (Ener-Getick)
16+
* bug #18272 [Bridge\PhpUnit] Workaround old phpunit bug, no colors in weak mode, add tests (nicolas-grekas)
17+
* bug #18259 [PropertyAccess] Backport fixes from 2.7 (nicolas-grekas)
18+
* bug #18261 [PropertyAccess] Fix isPropertyWritable not using the reflection cache (nicolas-grekas)
19+
* bug #18224 [PropertyAccess] Remove most ref mismatches to improve perf (nicolas-grekas)
20+
* bug #18237 [WebProfilerBundle] Added table-layout property to AJAX toolbar css (kevintweber)
21+
* bug #18209 [PropertyInfo] Support Doctrine custom mapping type in DoctrineExtractor (teohhanhui)
22+
* bug #18210 [PropertyAccess] Throw an UnexpectedTypeException when the type do not match (dunglas, nicolas-grekas)
23+
* bug #18216 [Intl] Fix invalid numeric literal on PHP 7 (nicolas-grekas)
24+
* bug #18147 [Validator] EmailValidator cannot extract hostname if email contains multiple @ symbols (natechicago)
25+
* bug #18023 [Process] getIncrementalOutput should work without calling getOutput (romainneutron)
26+
* bug #18175 [Translation] Add support for fuzzy tags in PoFileLoader (nud)
27+
* bug #18179 [Form] Fix NumberToLocalizedStringTransformer::reverseTransform with big integers (ovrflo, nicolas-grekas)
28+
* bug #18164 [HttpKernel] set s-maxage only if all responses are cacheable (xabbuh)
29+
* bug #18150 [Process] Wait a bit less on Windows (nicolas-grekas)
30+
* bug #18130 [Debug] Replaced logic for detecting filesystem case sensitivity (Dan Blows)
31+
* bug #18137 Autowiring the concrete class too - consistent with behavior of other services (weaverryan)
32+
* bug #18087 [WebProfiler] Sidebar button padding (rvanlaak)
33+
* bug #18080 [HttpFoundation] Set the Content-Range header if the requested Range is unsatisfied (jakzal)
34+
* bug #18084 [HttpFoundation] Avoid warnings when checking malicious IPs (jakzal)
35+
* bug #18066 [Process] Fix pipes handling (nicolas-grekas)
36+
* bug #18078 [Console] Fix an autocompletion question helper issue with non-sequentially indexed choices (jakzal)
37+
* bug #18048 [HttpKernel] Fix mem usage when stripping the prod container (nicolas-grekas)
38+
* bug #18065 [Finder] Partially revert #17134 to fix a regression (jakzal)
39+
* bug #18018 [HttpFoundation] exception when registering bags for started sessions (xabbuh)
40+
* bug #18054 [Filesystem] Fix false positive in ->remove() (nicolas-grekas)
41+
* bug #18049 [Validator] Fix the locale validator so it treats a locale alias as a valid locale (jakzal)
42+
* bug #18019 [Intl] Update ICU to version 55 (jakzal)
43+
* bug #18015 [Process] Fix memory issue when using large input streams (romainneutron)
44+
* bug #16656 [HttpFoundation] automatically generate safe fallback filename (xabbuh)
45+
* bug #15794 [Console] default to stderr in the console helpers (alcohol)
46+
* bug #17984 Allow to normalize \Traversable when serializing xml (Ener-Getick)
47+
* bug #17434 Improved the error message when a template is not found (rvanginneken, javiereguiluz)
48+
* bug #17687 Improved the error message when using "@" in a decorated service (javiereguiluz)
49+
* bug #17744 Improve error reporting in router panel of web profiler (javiereguiluz)
50+
* bug #17894 [FrameworkBundle] Fix a regression in handling absolute template paths (jakzal)
51+
* bug #17990 [DoctrineBridge][Form] Fix performance regression in EntityType (kimlai)
52+
* bug #17595 [HttpKernel] Remove _path from query parameters when fragment is a subrequest (cmenning)
53+
* bug #17986 [DomCrawler] Dont use LIBXML_PARSEHUGE by default (nicolas-grekas)
54+
* bug #17668 add 'guid' to list of exception to filter out (garak)
55+
* bug #17615 Ensure backend slashes for symlinks on Windows systems (cpsitgmbh)
56+
* bug #17626 Try to delete broken symlinks (IchHabRecht)
57+
* bug #17978 [Yaml] ensure dump indentation to be greather than zero (xabbuh)
58+
* bug #16886 [Form] [ChoiceType] Prefer placeholder to empty_value (boite)
59+
* bug #17976 [WebProfilerBundle] fix debug toolbar rendering by removing inadvertently added links (craue)
60+
* bug #17971 Variadic controller params (NiR-, fabpot)
61+
* bug #17876 [DependencyInjection] Fixing autowiring bug when some args are set (weaverryan)
62+
* bug #17568 Improved Bootstrap form theme for hidden fields (javiereguiluz)
63+
* bug #17561 [WebProfilerBundle] Fix design issue in profiler when having errors in forms (Pierstoval)
64+
* bug #17925 [Bridge] The WebProcessor now forwards the client IP (magnetik)
65+
1066
* 2.8.3 (2016-02-28)
1167

1268
* bug #17947 Fix - #17676 (backport #17919 to 2.3) (Ocramius)

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.4-DEV';
62+
const VERSION = '2.8.4';
6363
const VERSION_ID = 20804;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 4;
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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy