Skip to content

Commit ad26402

Browse files
committed
Merge pull request #17142 from fabpot/release-2.7.8
released v2.7.8
2 parents 778884a + e680b91 commit ad26402

File tree

2 files changed

+46
-2
lines changed

2 files changed

+46
-2
lines changed

CHANGELOG-2.7.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,50 @@ in 2.7 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.7.0...v2.7.1
99

10+
* 2.7.8 (2015-12-26)
11+
12+
* bug #16864 [Yaml] fix indented line handling in folded blocks (xabbuh)
13+
* bug #17052 Fixed flatten exception recursion with errors (GrahamCampbell)
14+
* bug #16826 Embedded identifier support (mihai-stancu)
15+
* bug #17079 Also transform inline mappings to objects (WouterJ)
16+
* bug #17129 [Config] Fix array sort on normalization in edge case (romainneutron)
17+
* bug #17094 [Process] More robustness and deterministic tests (nicolas-grekas)
18+
* bug #17112 [PropertyAccess] Reorder elements array after PropertyPathBuilder::replace (alekitto)
19+
* bug #16797 [Filesystem] Recursivly widen non-executable directories (Slamdunk)
20+
* bug #17040 [Console] Avoid extra blank lines when rendering exceptions (ogizanagi)
21+
* bug #17055 [Security] Verify if a password encoded with bcrypt is no longer than 72 characters (jakzal)
22+
* bug #16959 [Form] fix #15544 when a collection type attribute "required" is false, "prototype" should too (HeahDude)
23+
* bug #16860 [Yaml] do not remove "comments" in scalar blocks (xabbuh)
24+
* bug #17002 [Console][Table] fixed render row that contains multiple cells. (aitboudad)
25+
* bug #16971 [HttpFoundation] Added the ability of using BinaryFileResponse with stream wrappers (jakzal, Sander-Toonen)
26+
* bug #17048 Fix the logout path when not using the router (stof)
27+
* bug #17049 Fix the logout path when not using the router (stof)
28+
* bug #17057 [FrameworkBundle][HttpKernel] the finder is required to discover bundle commands (xabbuh)
29+
* bug #17006 [Form] Fix casting regression in DoctrineChoiceLoader (bendavies)
30+
* bug #16915 [Process] Enhance compatiblity with --enable-sigchild (nicolas-grekas)
31+
* bug #16829 [FrameworkBundle] prevent cache:clear creating too long paths (Tobion)
32+
* bug #16921 Fix short array syntax for php 5.3 (ewgRa)
33+
* bug #16450 [Serializer] Fixed `array_unique` on array of objects in `getAllowedAttributes`. (CornyPhoenix)
34+
* bug #16757 [FrameworkBundle] [Translation] Fixed translations not written when no translations directory in update command (jeremyFreeAgent)
35+
* bug #16871 [FrameworkBundle] Disable built-in server commands when Process component is missing (gnugat, xabbuh)
36+
* bug #16870 [FrameworkBundle] Disable the server:run command when Process component is missing (gnugat, xabbuh)
37+
* bug #16742 [Console][ProgressBar] redrawFrequency should never be 0 (dritter)
38+
* bug #16799 Improve error message for undefined DIC aliases (mpdude)
39+
* bug #16825 [VarDumper] fix .sf-dump z-index (debug bar conflict) (Antoine LA)
40+
* bug #16772 Refactoring EntityUserProvider::__construct() to not do work, cause cache warm error (weaverryan)
41+
* bug #16753 [Process] Fix signaling/stopping logic on Windows (nicolas-grekas)
42+
* bug #16733 [Console] do not encode backslashes in console default description (Tobion)
43+
* bug #16312 [HttpKernel] clearstatcache() so the Cache sees when a .lck file has been released (mpdude)
44+
* bug #16351 [WIP] [Form] [TwigBridge] Bootstrap horizontal theme missing tests (pieter2627)
45+
* bug #16685 [Form] Fixed: Duplicate choice labels are remembered when using "choices_as_values" = false (webmozart)
46+
* bug #16705 [Form] Deprecated setting "choices_as_values" to "false" (webmozart)
47+
* bug #16695 [SecurityBundle] disable the init:acl command if ACL is not used (Tobion)
48+
* bug #16679 [Form] Disabled view data validation if "data_class" is set to null (webmozart)
49+
* bug #16676 [HttpFoundation] Workaround HHVM rewriting HTTP response line (nicolas-grekas)
50+
* bug #16668 [ClassLoader] Fix parsing namespace when token_get_all() is missing (nicolas-grekas)
51+
* bug #16386 Bug #16343 [Router] Too many Routes ? (jelte)
52+
* bug #16651 [Debug] Ensure class declarations are loaded only once (nicolas-grekas)
53+
1054
* 2.7.7 (2015-11-23)
1155

1256
* security #16631 CVE-2015-8124: Session Fixation in the "Remember Me" Login Feature (xabbuh)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5858
protected $startTime;
5959
protected $loadClassCache;
6060

61-
const VERSION = '2.7.8-DEV';
61+
const VERSION = '2.7.8';
6262
const VERSION_ID = 20708;
6363
const MAJOR_VERSION = 2;
6464
const MINOR_VERSION = 7;
6565
const RELEASE_VERSION = 8;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '05/2018';
6969
const END_OF_LIFE = '05/2019';

0 commit comments

Comments
 (0)