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

Skip to content

Commit a784d5c

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: fixed typo Revert "fixed typo" fixed typo fixed CS Avoid setting request attributes from signature arguments in AnnotationClassLoader [DependencyInjection] Add some missing typehints in YamlFileLoader [DependencyInjection] minor: Fix a DocBlock [HttpKernel] Give higher priority to adding request formats [FrameworkBundle] Fix third level headers for MarkdownDescriptor [TwigBundle] do not lose already set method calls #20411 fix Yaml parsing for very long quoted strings CS: apply is_null DX: remove invalid inheritdoc bumped Symfony version to 2.7.24 updated VERSION for 2.7.23 update CONTRIBUTORS for 2.7.23 updated CHANGELOG for 2.7.23 [FrameworkBundle] Skip test if xdebug.file_link_format is defined.
2 parents bfdac85 + d103b61 commit a784d5c

File tree

31 files changed

+177
-110
lines changed

31 files changed

+177
-110
lines changed

.php_cs.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ return PhpCsFixer\Config::create()
1212
->setRiskyAllowed(true)
1313
->setFinder(
1414
PhpCsFixer\Finder::create()
15-
->in(__DIR__)
15+
->in(__DIR__.'/src')
1616
->exclude(array(
1717
// directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code
1818
'src/Symfony/Component/DependencyInjection/Tests/Fixtures',

CHANGELOG-2.7.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ 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.23 (2017-01-12)
11+
12+
* bug #21218 [Form] DateTimeToLocalizedStringTransformer does not use timezone when using date only (magnetik)
13+
* bug #21104 [FrameworkBundle] fix IPv6 address handling in server commands (xabbuh)
14+
* bug #20793 [Validator] Fix caching of constraints derived from non-serializable parents (uwej711)
15+
* bug #19586 [TwigBundle] Fix bug where namespaced paths don't take parent bundles in account (wesleylancel)
16+
* bug #21237 [FrameworkBundle] Fix relative paths used as cache keys (nicolas-grekas)
17+
* bug #21183 [Validator] respect groups when merging constraints (xabbuh)
18+
* bug #21179 [TwigBundle] Fixing regression in TwigEngine exception handling (Bertalan Attila)
19+
* bug #21220 [DI] Fix missing new line after private alias (ogizanagi)
20+
* bug #21211 Classloader tmpname (lyrixx)
21+
* bug #21205 [TwigBundle] fixed usage when Templating is not installed (fabpot)
22+
* bug #21155 [Validator] Check cascasdedGroups for being countable (scaytrase)
23+
* bug #21200 [Filesystem] Check that directory is writable after created it in dumpFile() (chalasr)
24+
* bug #21113 [FrameworkBundle][HttpKernel] Fix resources loading for bundles with custom structure (chalasr)
25+
* bug #21084 [Yaml] handle empty lines inside unindented collection (xabbuh)
26+
* bug #20925 [HttpFoundation] Validate/cast cookie expire time (ro0NL)
27+
* bug #21032 [SecurityBundle] Made collection of user provider unique when injecting them to the RemberMeService (lyrixx)
28+
* bug #21078 [Console] Escape default value when dumping help (lyrixx)
29+
* bug #21076 [Console] OS X Can't call cli_set_process_title php without superuser (ogizanagi)
30+
* bug #20900 [Console] Descriptors should use Helper::strlen (ogizanagi)
31+
* bug #21064 [Debug] Wrap call to ->log in a try catch block (lyrixx)
32+
* bug #21010 [Debug] UndefinedMethodFatalErrorHandler - Handle anonymous classes (SpacePossum)
33+
* bug #20859 Avoid warning in PHP 7.2 because of non-countable data (wouterj)
34+
* bug #21053 [Validator] override property constraints in child class (xabbuh)
35+
* bug #20970 [Console] Fix question formatting using SymfonyStyle::ask() (chalasr, ogizanagi)
36+
* bug #20975 [Form] fix group sequence based validation (xabbuh)
37+
* bug #20599 [WebProfilerBundle] Display multiple HTTP headers in WDT (ro0NL)
38+
* bug #20799 [TwigBundle] do not try to register incomplete definitions (xabbuh)
39+
* bug #20961 [Validator] phpize default option values (xabbuh)
40+
* bug #20934 [FrameworkBundle] Fix PHP form templates on translatable attributes (ro0NL)
41+
* bug #20957 [FrameworkBundle] test for the Validator component to be present (xabbuh)
42+
* bug #20936 [DependencyInjection] Fix on-invalid attribute type in xsd (ogizanagi)
43+
* bug #20931 [VarDumper] Fix dumping by-ref variadics (nicolas-grekas)
44+
* bug #20734 [Security] AbstractVoter->supportsAttribute gives false positive if attribute is zero (0) (martynas-foodpanda)
45+
* bug #14082 [config] Fix issue when key removed and left value only (zerustech)
46+
1047
* 2.7.22 (2016-12-13)
1148

1249
* bug #20714 [FrameworkBundle] Fix unresolved parameters from default configs in debug:config (chalasr)

0 commit comments

Comments
 (0)