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

Skip to content

Commit 130c0be

Browse files
committed
Merge branch '3.4' of github.com:symfony/symfony into 3.4
2 parents 98105f5 + 7064ff3 commit 130c0be

File tree

117 files changed

+554
-292
lines changed

Some content is hidden

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

117 files changed

+554
-292
lines changed

.github/CODEOWNERS

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @dunglas
55
# Form
66
/src/Symfony/Bridge/Twig/Extension/FormExtension.php @xabbuh
7-
/src/Symfony/Bridge/Twig/Form/* @xabbuh
7+
/src/Symfony/Bridge/Twig/Form/ @xabbuh
88
/src/Symfony/Bridge/Twig/Node/FormThemeNode.php @xabbuh
99
/src/Symfony/Bridge/Twig/Node/RenderBlockNode.php @xabbuh
1010
/src/Symfony/Bridge/Twig/Node/SearchAndRenderBlockNode.php @xabbuh
@@ -13,34 +13,34 @@
1313
/src/Symfony/Bridge/Twig/Tests/TokenParser/FormThemeTokenParserTest.php @xabbuh
1414
/src/Symfony/Bridge/Twig/TokenParser/FormThemeTokenParser.php @xabbuh
1515
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/FormPass.php @xabbuh
16-
/src/Symfony/Bundle/FrameworkBundle/Resources/views/* @xabbuh
16+
/src/Symfony/Bundle/FrameworkBundle/Resources/views/ @xabbuh
1717
/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php @xabbuh
1818
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Compiler/FormPassTest.php @xabbuh
1919
/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperTableLayoutTest.php @xabbuh
2020
/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php @xabbuh
21-
/src/Symfony/Component/Form/* @xabbuh
21+
/src/Symfony/Component/Form/ @xabbuh
2222
# HttpKernel
2323
/src/Symfony/Component/HttpKernel/Log/Logger.php @dunglas
2424
# LDAP
25-
/src/Symfony/Component/Ldap/* @csarrazi
25+
/src/Symfony/Component/Ldap/ @csarrazi
2626
# Lock
27-
/src/Symfony/Component/Lock/* @jderusse
27+
/src/Symfony/Component/Lock/ @jderusse
2828
# Messenger
29-
/src/Symfony/Bridge/Doctrine/Messenger/* @sroze
30-
/src/Symfony/Component/Messenger/* @sroze
29+
/src/Symfony/Bridge/Doctrine/Messenger/ @sroze
30+
/src/Symfony/Component/Messenger/ @sroze
3131
# PropertyInfo
32-
/src/Symfony/Component/PropertyInfo/* @dunglas
33-
/src/Symfony/Bridge/Doctrine/PropertyInfo/* @dunglas
32+
/src/Symfony/Component/PropertyInfo/ @dunglas
33+
/src/Symfony/Bridge/Doctrine/PropertyInfo/ @dunglas
3434
# Serializer
35-
/src/Symfony/Component/Serializer/* @dunglas
35+
/src/Symfony/Component/Serializer/ @dunglas
3636
# WebLink
37-
/src/Symfony/Component/WebLink/* @dunglas
37+
/src/Symfony/Component/WebLink/ @dunglas
3838
# Workflow
3939
/src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php @lyrixx
4040
/src/Symfony/Bridge/Twig/Tests/Extension/WorkflowExtensionTest.php @lyrixx
4141
/src/Symfony/Bundle/FrameworkBundle/Command/WorkflowDumpCommand.php @lyrixx
4242
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ValidateWorkflowsPass.php @lyrixx
4343
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php @lyrixx
44-
/src/Symfony/Component/Workflow/* @lyrixx
44+
/src/Symfony/Component/Workflow/ @lyrixx
4545
# Yaml
46-
/src/Symfony/Component/Yaml/* @xabbuh
46+
/src/Symfony/Component/Yaml/ @xabbuh

.php_cs.dist

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,9 @@ return PhpCsFixer\Config::create()
1010
'@Symfony:risky' => true,
1111
'@PHPUnit75Migration:risky' => true,
1212
'php_unit_dedicate_assert' => ['target' => '5.6'],
13-
'phpdoc_no_empty_return' => false, // triggers almost always false positive
1413
'array_syntax' => ['syntax' => 'short'],
1514
'fopen_flags' => false,
16-
'ordered_imports' => true,
17-
'phpdoc_trim_consecutive_blank_line_separation' => true,
18-
'no_superfluous_phpdoc_tags' => ['allow_mixed' => true],
1915
'protected_to_private' => false,
20-
// Part of @Symfony:risky in PHP-CS-Fixer 2.13.0. To be removed from the config file once upgrading
21-
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced', 'strict' => true],
22-
// Part of future @Symfony ruleset in PHP-CS-Fixer To be removed from the config file once upgrading
23-
'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'],
2416
])
2517
->setRiskyAllowed(true)
2618
->setFinder(

CHANGELOG-3.4.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ in 3.4 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.4.0...v3.4.1
99

10+
* 3.4.34 (2019-11-11)
11+
12+
* bug #34297 [DI] fix locators with numeric keys (nicolas-grekas)
13+
* bug #34282 [DI] Dont cache classes with missing parents (nicolas-grekas)
14+
* bug #34181 [Stopwatch] Fixed bug in getDuration when counting multiple ongoing periods (TimoBakx)
15+
* bug #34179 [Stopwatch] Fixed a bug in StopwatchEvent::getStartTime (TimoBakx)
16+
* bug #34203 [FrameworkBundle] [HttpKernel] fixed correct EOL and EOM month (erics86)
17+
18+
* 3.4.33 (2019-11-01)
19+
20+
* bug #33998 [Config] Disable default alphabet sorting in glob function due of unstable sort (hurricane-voronin)
21+
* bug #34144 [Serializer] Improve messages for unexpected resources values (fancyweb)
22+
* bug #34080 [SecurityBundle] correct types for default arguments for firewall configs (shieldo)
23+
* bug #33999 [Form] Make sure to collect child forms created on *_SET_DATA events (yceruto)
24+
* bug #34021 [TwigBridge] do not render errors for checkboxes twice (xabbuh)
25+
* bug #34041 [HttpKernel] fix wrong removal of the just generated container dir (nicolas-grekas)
26+
* bug #34023 [Dotenv] allow LF in single-quoted strings (nicolas-grekas)
27+
* bug #33818 [Yaml] Throw exception for tagged invalid inline elements (gharlan)
28+
* bug #33948 [PropertyInfo] Respect property name case when guessing from public method name (antograssiot)
29+
* bug #33962 [Cache] fixed TagAwareAdapter returning invalid cache (v-m-i)
30+
* bug #33965 [HttpFoundation] Add plus character `+` to legal mime subtype (ilzrv)
31+
* bug #32943 [Dotenv] search variable values in ENV first then env file (soufianZantar)
32+
* bug #33943 [VarDumper] fix resetting the "bold" state in CliDumper (nicolas-grekas)
33+
1034
* 3.4.32 (2019-10-07)
1135

1236
* bug #33834 [Validator] Fix ValidValidator group cascading usage (fancyweb)

0 commit comments

Comments
 (0)