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

Skip to content

Commit 6f46d5d

Browse files
committed
Merge branch '3.1' into 3.2
* 3.1: [Console] Review Application docblocks bumped Symfony version to 3.1.9 updated VERSION for 3.1.8 updated CHANGELOG for 3.1.8 bumped Symfony version to 2.8.16 updated VERSION for 2.8.15 updated CHANGELOG for 2.8.15 bumped Symfony version to 2.7.23 updated VERSION for 2.7.22 update CONTRIBUTORS for 2.7.22 updated CHANGELOG for 2.7.22 Update PHP CS Fixer config file
2 parents 638533b + 298452d commit 6f46d5d

File tree

4 files changed

+85
-34
lines changed

4 files changed

+85
-34
lines changed

.php_cs renamed to .php_cs.dist

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<?php
22

3-
return Symfony\CS\Config\Config::create()
4-
->setUsingLinter(false)
5-
->setUsingCache(true)
6-
->fixers(array(
7-
'long_array_syntax',
8-
'php_unit_construct',
9-
'php_unit_dedicate_assert',
3+
return PhpCsFixer\Config::create()
4+
->setRules(array(
5+
'@Symfony' => true,
6+
'@Symfony:risky' => true,
7+
'array_syntax' => array('syntax' => 'long'),
108
))
11-
->finder(
12-
Symfony\CS\Finder\DefaultFinder::create()
9+
->setRiskyAllowed(true)
10+
->setFinder(
11+
PhpCsFixer\Finder::create()
1312
->in(__DIR__)
1413
->exclude(array(
1514
// directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code

CHANGELOG-3.1.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@ in 3.1 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/v3.1.0...v3.1.1
99

10+
* 3.1.8 (2016-12-13)
11+
12+
* bug #20714 [FrameworkBundle] Fix unresolved parameters from default configs in debug:config (chalasr)
13+
* bug #20442 [FrameworkBundle] Bundle commands are not available via find() (julienfalque)
14+
* bug #20840 [WebProfilerBundle] add dependency on Twig (xabbuh)
15+
* bug #20828 [Validator] Fix init of YamlFileLoader::$classes for empty files (nicolas-grekas)
16+
* bug #20745 [Validator] add class name to the cache key (Simperfit)
17+
* bug #20530 [Serializer] Remove AbstractObjectNormalizer::isAttributeToNormalize (dunglas)
18+
* bug #19141 Throw less misleading exception when property access not found (bramtweedegolf)
19+
* bug #20539 Cast result to int before adding to it (alcaeus)
20+
* bug #20831 [Twig] Fix deprecations with Twig 1.29 (nicolas-grekas)
21+
* bug #20816 [FrameworkBundle] Removed kernel.debug from the cache pool namespace seed (Sander Toonen)
22+
* bug #20646 Maintain the selected panel when redirecting to another profile (javiereguiluz)
23+
* bug #20767 [Cache] Fix dumping SplDoublyLinkedList iter mode (nicolas-grekas)
24+
* bug #20736 [Console] fixed PHP7 Errors when not using Dispatcher (keradus)
25+
* bug #20756 [HttpKernel] Regression test for missing controller arguments (iltar)
26+
* bug #20755 [HttpKernel] Regression test for missing controller arguments (iltar)
27+
* bug #20732 fix the inline level for dumped multi-line strings (xabbuh)
28+
* bug #20418 [Form][DX] FileType "multiple" fixes (yceruto)
29+
* bug #19902 [DependencyInjection] PhpDumper.php: hasReference() shouldn't search references in lazy service. (antanas-arvasevicius)
30+
* bug #20704 [Console] Fix wrong handling of multiline arg/opt descriptions (ogizanagi)
31+
* bug #20712 [TwigBundle] Fix twig loader registered twice (ogizanagi)
32+
* bug #20716 [WebProfilerBundle] Fix dump block is unfairly restrained (ogizanagi)
33+
* bug #20671 [Config] ConfigCache::isFresh() should return false when unserialize() fails (nicolas-grekas)
34+
* bug #20676 [ClassLoader] Use only forward slashes in generated class map (nicolas-grekas)
35+
* bug #20664 [Validator] ensure the proper context for nested validations (xabbuh)
36+
* bug #20661 bug #20653 [WebProfilerBundle] Profiler includes ghost panels (jzawadzki)
37+
* bug #20374 [FrameworkBundle] Improve performance of ControllerNameParser (enumag)
38+
* bug #20474 [Routing] Fail properly when a route parameter name cannot be used as a PCRE subpattern name (fancyweb)
39+
* bug #20566 [DI] Initialize properties before method calls (ro0NL)
40+
* bug #20609 [DI] Fixed custom services definition BC break introduced in ec7e70fb… (kiler129)
41+
* bug #20598 [DI] Aliases should preserve the aliased invalid behavior (nicolas-grekas)
42+
* bug #20600 [Process] Fix process continuing after reached timeout using getIterator() (chalasr)
43+
* bug #20602 [HttpKernel] Revert BC breaking change of Request::isMethodSafe() (nicolas-grekas)
44+
* bug #20499 [Doctrine][Form] support large integers (xabbuh)
45+
* bug #20576 [Process] Do feat test before enabling TTY mode (nicolas-grekas)
46+
* bug #20577 [FrameworkBundle] Mark cache.default_*_provider services private (nicolas-grekas)
47+
1048
* 3.1.7 (2016-11-21)
1149

1250
* bug #20550 [YAML] Fix processing timestamp strings with timezone (myesain)

0 commit comments

Comments
 (0)