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

Skip to content

Commit 66b2e96

Browse files
committed
Merge pull request #16357 from fabpot/release-2.7.6
released v2.7.6
2 parents ced865d + 88db7c0 commit 66b2e96

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

CHANGELOG-2.7.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,51 @@ 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.6 (2015-10-27)
11+
12+
* bug #16338 [VarDumper] Fix anonymous class dumping (nicolas-grekas)
13+
* bug #16288 [Process] Inherit env vars by default in PhpProcess (nicolas-grekas)
14+
* bug #16302 [DoctrineBridge] Fix required guess of boolean fields (enumag)
15+
* bug #16298 Changed one console output style to avoid visual issues (javiereguiluz)
16+
* bug #16291 [VarDumper] Fix return type and anonymous classes dumping (nicolas-grekas)
17+
* bug #16177 [HttpFoundation] Fixes /0 subnet handling in IpUtils (ultrafez)
18+
* bug #16262 [TwigBundle] Fix Twig cache is not properly warmed (tucksaun)
19+
* bug #16259 [Validator] Allow an empty path in a URL with only a fragment or a query (jakzal)
20+
* bug #16226 [filesystem] makeRelativePath does not work correctly from root (jaytaph, fabpot)
21+
* bug #16108 [Security] #15764. Use SessionAuthenticationStrategy on RememberMe login (s12v)
22+
* bug #16196 [Console] Fix progress bar formatting when max is set on start() and some other edge cases (vsychov, fabpot)
23+
* bug #16183 [VarDumper] Fix wordwrap with Bootstrap (ogizanagi)
24+
* bug #16182 [Process] Workaround buggy PHP warning (cbj4074)
25+
* bug #16095 [Console] Add additional ways to detect OS400 platform (johnkary)
26+
* bug #15793 [Yaml] Allow tabs before comments at the end of a line (superdav42)
27+
* bug #16152 Fix URL validator failure with empty string (fabpot, bocharsky-bw)
28+
* bug #15121 fixed #15118 [Filesystem] mirroring a symlink copies absolute file path (danepowell)
29+
* bug #15161 avoid duplicated path with addPrefix (remicollet)
30+
* bug #16146 [Security] sync translations and add a test for it (xabbuh)
31+
* bug #16133 compatibility with Security component split (xabbuh)
32+
* bug #16123 Command list ordering fix (spdionis, fabpot)
33+
* bug #14842 [Security][bugfix] "Remember me" cookie cleared on logout with custom "secure"/"httponly" config options (MacDada)
34+
* bug #13627 [Security] InMemoryUserProvider now concerns whether user's password is changed when refreshing (issei-m)
35+
* bug #16090 Fix PropertyAccessor modifying array in object when array key does no… (pierredup)
36+
* bug #16092 [Process] Throw exception if tempnam returns false (pierredup)
37+
* bug #16111 Throw exception if tempnam returns false in ProcessPipes (pierredup)
38+
* bug #16087 Fixing typo in variable name (yceruto)
39+
* bug #16053 [Console] use PHP_OS instead of php_uname('s') (xabbuh)
40+
* bug #15860 [Yaml] Fix improper comments removal (ogizanagi)
41+
* bug #16050 [TwigBundle] fix useless and failing test (Tobion)
42+
* bug #16028 [DomCrawler] always pass base href to subcrawlers (xabbuh)
43+
* bug #15482 [Yaml] Improve newline handling in folded scalar blocks (teohhanhui)
44+
* bug #15976 [Console] do not make the getHelp() method smart (xabbuh)
45+
* bug #15799 [HttpFoundation] NativeSessionStorage `regenerate` method wrongly sets storage as started (iambrosi)
46+
* bug #15446 [Twig][Bridge] force space between widget and label in checkbox_radio_label (MatTheCat)
47+
* bug #15533 [Console] Fix input validation when required arguments are missing (jakzal)
48+
* bug #15915 Detect Mintty for color support on Windows (stof)
49+
* bug #15906 Forbid serializing a Crawler (stof)
50+
* bug #15682 [Form] Added exception when setAutoInitialize() is called when locked (jaytaph)
51+
* bug #15776 [TwigBridge] fix with_minutes option in time widget (arduanov)
52+
* bug #15846 [FrameworkBundle] Advanced search templates of bundles (yethee)
53+
* bug #15895 [Security] Allow user providers to be defined in many files (lyrixx)
54+
1055
* 2.7.5 (2015-09-25)
1156

1257
* bug #15866 [VarDumper] Fix dump comparison on large arrays (romainneutron)

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.6-DEV';
61+
const VERSION = '2.7.6';
6262
const VERSION_ID = 20706;
6363
const MAJOR_VERSION = 2;
6464
const MINOR_VERSION = 7;
6565
const RELEASE_VERSION = 6;
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)