From 71d9fdc1f8535becda95d791197089675755059a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Oct 2015 12:06:57 -0700 Subject: [PATCH 1/4] updated CHANGELOG for 2.7.6 --- CHANGELOG-2.7.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/CHANGELOG-2.7.md b/CHANGELOG-2.7.md index f7036cb5f9..05bf4d856d 100644 --- a/CHANGELOG-2.7.md +++ b/CHANGELOG-2.7.md @@ -7,6 +7,51 @@ in 2.7 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.7.0...v2.7.1 +* 2.7.6 (2015-10-27) + + * bug #16338 [VarDumper] Fix anonymous class dumping (nicolas-grekas) + * bug #16288 [Process] Inherit env vars by default in PhpProcess (nicolas-grekas) + * bug #16302 [DoctrineBridge] Fix required guess of boolean fields (enumag) + * bug #16298 Changed one console output style to avoid visual issues (javiereguiluz) + * bug #16291 [VarDumper] Fix return type and anonymous classes dumping (nicolas-grekas) + * bug #16177 [HttpFoundation] Fixes /0 subnet handling in IpUtils (ultrafez) + * bug #16262 [TwigBundle] Fix Twig cache is not properly warmed (tucksaun) + * bug #16259 [Validator] Allow an empty path in a URL with only a fragment or a query (jakzal) + * bug #16226 [filesystem] makeRelativePath does not work correctly from root (jaytaph, fabpot) + * bug #16108 [Security] #15764. Use SessionAuthenticationStrategy on RememberMe login (s12v) + * bug #16196 [Console] Fix progress bar formatting when max is set on start() and some other edge cases (vsychov, fabpot) + * bug #16183 [VarDumper] Fix wordwrap with Bootstrap (ogizanagi) + * bug #16182 [Process] Workaround buggy PHP warning (cbj4074) + * bug #16095 [Console] Add additional ways to detect OS400 platform (johnkary) + * bug #15793 [Yaml] Allow tabs before comments at the end of a line (superdav42) + * bug #16152 Fix URL validator failure with empty string (fabpot, bocharsky-bw) + * bug #15121 fixed #15118 [Filesystem] mirroring a symlink copies absolute file path (danepowell) + * bug #15161 avoid duplicated path with addPrefix (remicollet) + * bug #16146 [Security] sync translations and add a test for it (xabbuh) + * bug #16133 compatibility with Security component split (xabbuh) + * bug #16123 Command list ordering fix (spdionis, fabpot) + * bug #14842 [Security][bugfix] "Remember me" cookie cleared on logout with custom "secure"/"httponly" config options (MacDada) + * bug #13627 [Security] InMemoryUserProvider now concerns whether user's password is changed when refreshing (issei-m) + * bug #16090 Fix PropertyAccessor modifying array in object when array key does no… (pierredup) + * bug #16092 [Process] Throw exception if tempnam returns false (pierredup) + * bug #16111 Throw exception if tempnam returns false in ProcessPipes (pierredup) + * bug #16087 Fixing typo in variable name (yceruto) + * bug #16053 [Console] use PHP_OS instead of php_uname('s') (xabbuh) + * bug #15860 [Yaml] Fix improper comments removal (ogizanagi) + * bug #16050 [TwigBundle] fix useless and failing test (Tobion) + * bug #16028 [DomCrawler] always pass base href to subcrawlers (xabbuh) + * bug #15482 [Yaml] Improve newline handling in folded scalar blocks (teohhanhui) + * bug #15976 [Console] do not make the getHelp() method smart (xabbuh) + * bug #15799 [HttpFoundation] NativeSessionStorage `regenerate` method wrongly sets storage as started (iambrosi) + * bug #15446 [Twig][Bridge] force space between widget and label in checkbox_radio_label (MatTheCat) + * bug #15533 [Console] Fix input validation when required arguments are missing (jakzal) + * bug #15915 Detect Mintty for color support on Windows (stof) + * bug #15906 Forbid serializing a Crawler (stof) + * bug #15682 [Form] Added exception when setAutoInitialize() is called when locked (jaytaph) + * bug #15776 [TwigBridge] fix with_minutes option in time widget (arduanov) + * bug #15846 [FrameworkBundle] Advanced search templates of bundles (yethee) + * bug #15895 [Security] Allow user providers to be defined in many files (lyrixx) + * 2.7.5 (2015-09-25) * bug #15866 [VarDumper] Fix dump comparison on large arrays (romainneutron) From 88db7c059e980254f38c9c8478be3590c46bb5cb Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Oct 2015 12:07:21 -0700 Subject: [PATCH 2/4] updated VERSION for 2.7.6 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index ef11493877..a02dcd966e 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '2.7.6-DEV'; + const VERSION = '2.7.6'; const VERSION_ID = 20706; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; const RELEASE_VERSION = 6; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From 07439f41c761732839bd376c043eb6ea456c7f9d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Oct 2015 13:02:17 -0700 Subject: [PATCH 3/4] bumped Symfony version to 2.7.7 --- src/Symfony/Component/HttpKernel/Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index a02dcd966e..2e7666d83d 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '2.7.6'; - const VERSION_ID = 20706; + const VERSION = '2.7.7-DEV'; + const VERSION_ID = 20707; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; - const RELEASE_VERSION = 6; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 7; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From 92b6d955ef6e463c4002ff7a368508c8ebc6022b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Oct 2015 19:40:10 -0700 Subject: [PATCH 4/4] added missing quotes in YAML files --- .../DependencyInjection/Tests/Fixtures/yaml/services21.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services21.yml b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services21.yml index da717a8bb2..a2617c1688 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services21.yml +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services21.yml @@ -6,7 +6,7 @@ services: calls: - method: setLogger arguments: - - @logger + - '@logger' - method: setClass arguments: - User