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

Skip to content

Commit e99cbe7

Browse files
Merge branch 'master' into feature/security_bundle/enc_pwd_select_user_class
2 parents da015f5 + 61a67ec commit e99cbe7

File tree

553 files changed

+6079
-3169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

553 files changed

+6079
-3169
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
| Q | A
2+
| ---------------- | -----
3+
| Bug report? | yes/no
4+
| Feature request? | yes/no
5+
| BC Break report? | yes/no
6+
| RFC? | yes/no
7+
| Symfony version | x.y.z
8+
9+
<!--
10+
- Please fill in this template according to your issue.
11+
- For support request or how-tos, visit https://symfony.com/support
12+
- Otherwise, replace this comment by the description of your issue.
13+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
| Q | A
22
| ------------- | ---
3-
| Branch? | "master" for new features / 2.7, 2.8 or 3.1 for fixes
3+
| Branch? | master / 2.7, 2.8, 3.1 or 3.2 <!--see comment below-->
44
| Bug fix? | yes/no
55
| New feature? | yes/no
66
| BC breaks? | yes/no
77
| Deprecations? | yes/no
88
| Tests pass? | yes/no
9-
| Fixed tickets | comma-separated list of tickets fixed by the PR, if any
9+
| Fixed tickets | #... <!-- #-prefixed issue number(s), if any -->
1010
| License | MIT
11-
| Doc PR | reference to the documentation PR, if any
11+
| Doc PR | symfony/symfony-docs#... <!--highly recommended for new features-->
12+
13+
<!--
14+
- Bug fixes must be submitted against the lowest branch where they apply
15+
(lowest branches are regularly merged to upper ones so they get the fixes too).
16+
- Features and deprecations must be submitted against the master branch.
17+
- Please fill in this template according to the PR you're about to submit.
18+
- Replace this comment by a description of what your PR is solving.
19+
-->

.php_cs renamed to .php_cs.dist

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
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'),
8+
'no_unreachable_default_argument_value' => false,
9+
'heredoc_to_nowdoc' => false,
1010
))
11-
->finder(
12-
Symfony\CS\Finder\DefaultFinder::create()
11+
->setRiskyAllowed(true)
12+
->setFinder(
13+
PhpCsFixer\Finder::create()
1314
->in(__DIR__)
1415
->exclude(array(
1516
// directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
matrix:
2121
include:
2222
# Use the newer stack for HHVM as HHVM does not support Precise anymore since a long time and so Precise has an outdated version
23-
- php: hhvm-stable
23+
- php: hhvm-3.15
2424
sudo: required
2525
dist: trusty
2626
group: edge

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)

CHANGELOG-3.2.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,52 @@ in 3.2 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.2.0...v3.2.1
99

10+
* 3.2.1 (2016-12-13)
11+
12+
* bug #20891 Add support for REDIS_URL environment variables. (robinvdvleuten)
13+
* bug #20724 [WebProfilerBundle] Fix AJAX panel with fetch requests (OnekO)
14+
* bug #20883 Don’t compile when Opcache is not enabled on CLI (ruudk)
15+
* bug #20877 DateIntervalType: 'invert' should not inherit the 'required' option (galeaspablo)
16+
* bug #20886 [Form] DateIntervalType: Do not try to translate choices (ogizanagi)
17+
* bug #20855 [Yaml] do not trigger deprecations for valid YAML (xabbuh)
18+
* bug #20714 [FrameworkBundle] Fix unresolved parameters from default configs in debug:config (chalasr)
19+
* bug #20862 Allow simple-phpunit to be used with an HTTP proxy (Cydonia7)
20+
* bug #20882 [TwigBridge] fix constructor args check (xabbuh)
21+
* bug #20860 [WebProfilerBundle] Fix a web profiler form issue with fields added to the form after the form was built (tgalopin)
22+
* bug #20442 [FrameworkBundle] Bundle commands are not available via find() (julienfalque)
23+
* bug #20840 [WebProfilerBundle] add dependency on Twig (xabbuh)
24+
* bug #20833 [HttpKernel] Fix open_basedir compat in DataCollector (nicolas-grekas)
25+
* bug #20828 [Validator] Fix init of YamlFileLoader::$classes for empty files (nicolas-grekas)
26+
* bug #20688 [FrameworkBundle] Resolve env params in debug:config command (nicolas-grekas)
27+
* bug #20725 [HttpKernel] Fix annotation cache warmer with failing or missing classes (nicolas-grekas)
28+
* bug #20830 [FrameworkBundle] Fix validation cache warmer with failing or missing classes (nicolas-grekas)
29+
* bug #20760 [FrameworkBundle] [Workflow] Fix service marking store configuration (fduch)
30+
* bug #20745 [Validator] add class name to the cache key (Simperfit)
31+
* bug #20530 [Serializer] Remove AbstractObjectNormalizer::isAttributeToNormalize (dunglas)
32+
* bug #19141 Throw less misleading exception when property access not found (bramtweedegolf)
33+
* bug #20539 Cast result to int before adding to it (alcaeus)
34+
* bug #20831 [Twig] Fix deprecations with Twig 1.29 (nicolas-grekas)
35+
* bug #20701 Ignore missing 'debug.file_link_formatter' service in Debug and Twig bundles (mbabker)
36+
* bug #20816 [FrameworkBundle] Removed kernel.debug from the cache pool namespace seed (Sander Toonen)
37+
* bug #20769 [Bridge\Twig] Trigger deprecation when using FormExtension::$renderer (nicolas-grekas)
38+
* bug #20646 Maintain the selected panel when redirecting to another profile (javiereguiluz)
39+
* bug #20767 [Cache] Fix dumping SplDoublyLinkedList iter mode (nicolas-grekas)
40+
* bug #20690 [Serializer] Fix argument object denormalization (ogizanagi)
41+
* bug #20762 [Form] Fix FormDataCollector (nicolas-grekas, Padam87)
42+
* bug #20747 [HttpKernel] Fixed RequestDataCollector handling of null header values. (Gabriel Moreira)
43+
* bug #20727 [TwigBundle] Inject project root path into twig filesystem loader (4rthem)
44+
* bug #20736 [Console] fixed PHP7 Errors when not using Dispatcher (keradus)
45+
* bug #20756 [HttpKernel] Regression test for missing controller arguments (iltar)
46+
* bug #20755 [HttpKernel] Regression test for missing controller arguments (iltar)
47+
* bug #20732 fix the inline level for dumped multi-line strings (xabbuh)
48+
* bug #20418 [Form][DX] FileType "multiple" fixes (yceruto)
49+
* bug #19902 [DependencyInjection] PhpDumper.php: hasReference() shouldn't search references in lazy service. (antanas-arvasevicius)
50+
* bug #20704 [Console] Fix wrong handling of multiline arg/opt descriptions (ogizanagi)
51+
* bug #20700 [WebProfilerBundle][Translator] Fix TranslationDataCollector should use cloneVar (ogizanagi)
52+
* bug #20712 [TwigBundle] Fix twig loader registered twice (ogizanagi)
53+
* bug #20716 [WebProfilerBundle] Fix dump block is unfairly restrained (ogizanagi)
54+
* bug #20717 Fix hide button in toolbar (nicolasdewez)
55+
1056
* 3.2.0 (2016-11-30)
1157

1258
* bug #20687 [FrameworkBundle] Forbid env parameters in routing configuration (nicolas-grekas)

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Symfony is an open source, community-driven project.
55

66
If you'd like to contribute, please read the following documents:
77

8+
* [Reviewing issues/pull requests][0]
89
* [Reporting a Bug][1]
910
* [Submitting a Patch][2]
1011
* [Symfony Core Team][3]
@@ -14,6 +15,7 @@ If you'd like to contribute, please read the following documents:
1415
* [Coding Standards][7]
1516
* [Conventions][8]
1617

18+
[0]: https://symfony.com/doc/current/contributing/community/reviews.html
1719
[1]: https://symfony.com/doc/current/contributing/code/bugs.html
1820
[2]: https://symfony.com/doc/current/contributing/code/patches.html
1921
[3]: https://symfony.com/doc/current/contributing/code/core_team.html

0 commit comments

Comments
 (0)