Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 39ddd23

Browse files
committed
Merge pull request #18674 from fabpot/release-2.8.5
released v2.8.5
2 parents 745334e + 25d166b commit 39ddd23

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ 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.5 (2016-04-29)
11+
12+
* bug #18180 [Form] fixed BC break with pre selection of choices with `ChoiceType` and its children (HeahDude)
13+
* bug #18645 [Console] Fix wrong exceptions being thrown (JhonnyL)
14+
* bug #18562 [WebProfilerBunde] Give an absolute url in case the request occured from another domain (romainneutron)
15+
* bug #18600 [DI] Fix AutowirePass fatal error with classes that have non-existing parents (hason, nicolas-grekas)
16+
* bug #18603 [PropertyAccess] ->getValue() should be read-only (nicolas-grekas)
17+
* bug #18593 [VarDumper] Fix dumping type hints for non-existing parent classes (nicolas-grekas)
18+
* bug #18596 [DI] Fix internal caching in AutowirePass (nicolas-grekas)
19+
* bug #18581 [Console] [TableHelper] make it work with SymfonyStyle. (aitboudad)
20+
* bug #18280 [Routing] add query param if value is different from default (Tobion)
21+
* bug #18540 Replace iconv_*() uses by mb_*(), add mbstring polyfill when required (nicolas-grekas)
22+
* bug #18496 [Console] use ANSI escape sequences in ProgressBar overwrite method (alekitto)
23+
* bug #18490 [LDAP] Free the search result after a search to free memory (hiddewie)
24+
* bug #18491 [DependencyInjection] anonymous services are always private (xabbuh)
25+
* bug #18515 [Filesystem] Better error handling in remove() (nicolas-grekas)
26+
* bug #18360 [PropertyInfo] Extract nullable and collection key type for Doctrine associations (teohhanhui)
27+
* bug #18449 [PropertyAccess] Fix regression (nicolas-grekas)
28+
* bug #18429 [Console] Correct time formatting. (camporter)
29+
* bug #18457 [WebProfilerBundle] Fixed error from unset twig variable (simonsargeant)
30+
* bug #18467 [DependencyInjection] Resolve aliases before removing abstract services + add tests (nicolas-grekas)
31+
* bug #18469 Force profiler toolbar svg display (pyrech)
32+
* bug #18460 [DomCrawler] Fix select option with empty value (Matt Wells)
33+
* bug #18425 [Security] Fixed SwitchUserListener when exiting an impersonation with AnonymousToken (lyrixx)
34+
* bug #18317 [Form] fix "prototype" not required when parent form is not required (HeahDude)
35+
* bug #18439 [Logging] Add support for Firefox (43+) in ChromePhpHandler (arjenm)
36+
* bug #18385 Detect CLI color support for Windows 10 build 10586 (mlocati)
37+
* bug #18426 [EventDispatcher] Try first if the event is Stopped (lyrixx)
38+
* bug #18407 Fixed the "hover" state of the profiler sidebar menu (javiereguiluz)
39+
* bug #18394 [FrameworkBundle] Return the invokable service if its name is the class name (dunglas)
40+
* bug #18347 Fixed the styles of the Symfony icon in the web debug toolbar (javiereguiluz)
41+
* bug #18265 Optimize ReplaceAliasByActualDefinitionPass (ajb-in)
42+
* bug #18349 [Process] Fix stream_select priority when writing to stdin (nicolas-grekas)
43+
* bug #18358 [Form] NumberToLocalizedStringTransformer should return floats when possible (nicolas-grekas)
44+
* bug #17926 [DependencyInjection] Enable alias for service_container (hason)
45+
* bug #18352 [Debug] Fix case sensitivity checks (nicolas-grekas)
46+
* bug #18336 [Debug] Fix handling of php7 throwables (nicolas-grekas)
47+
* bug #18354 [FrameworkBundle][TwigBridge] fix high deps tests (xabbuh)
48+
* bug #18312 [ClassLoader] Fix storing not-found classes in APC cache (nicolas-grekas)
49+
1050
* 2.8.4 (2016-03-27)
1151

1252
* bug #18298 [Validator] do not treat payload as callback (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.5-DEV';
62+
const VERSION = '2.8.5';
6363
const VERSION_ID = 20805;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 5;
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)