Skip to content

Commit 4cd3dc8

Browse files
Merge branch '4.3' into 4.4
* 4.3: (26 commits) [Console] Fix #33915, Detect dimensions using mode CON if vt100 is supported [HttpKernel][DataCollectorInterface] Ease compatibility Add tests to ensure defaultLocale is properly passed to the URL generator [DependencyInjection] Fix broken references in tests [HttpClient] Retry safe requests when then fail before the body arrives Avoid using of kernel after shutdown Simplify PHP CS Fixer configuration [PropertyInfo] Fixed type extraction for nullable collections of non-nullable elements [FrameworkBundle] [HttpKernel] fixed correct EOL and EOM month [Serializer] Fix property name usage for denormalization Name test accordingly to the tested class Fix MockFileSessionStorageTest::sessionDir being used after it's unset bumped Symfony version to 4.3.7 updated VERSION for 4.3.6 updated CHANGELOG for 4.3.6 bumped Symfony version to 3.4.34 updated VERSION for 3.4.33 update CONTRIBUTORS for 3.4.33 updated CHANGELOG for 3.4.33 [HttpClient] Fix perf issue when doing thousands of requests with curl ...
2 parents d056c17 + 620e894 commit 4cd3dc8

File tree

36 files changed

+547
-109
lines changed

36 files changed

+547
-109
lines changed

.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
'combine_nested_dirname' => true,
2517
])
2618
->setRiskyAllowed(true)

CHANGELOG-4.3.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,49 @@ in 4.3 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/v4.3.0...v4.3.1
99

10+
* 4.3.6 (2019-11-01)
11+
12+
* bug #34198 [HttpClient] Fix perf issue when doing thousands of requests with curl (nicolas-grekas)
13+
* bug #33998 [Config] Disable default alphabet sorting in glob function due of unstable sort (hurricane-voronin)
14+
* bug #34144 [Serializer] Improve messages for unexpected resources values (fancyweb)
15+
* bug #34186 [HttpClient] always return the empty string when the response cannot have a body (nicolas-grekas)
16+
* bug #34167 [HttpFoundation] Allow to not pass a parameter to Request::isMethodSafe() (dunglas)
17+
* bug #33828 [DoctrineBridge] Auto-validation must work if no regex are passed (dunglas)
18+
* bug #34080 [SecurityBundle] correct types for default arguments for firewall configs (shieldo)
19+
* bug #34152 [Workflow] Made the configuration more robust for the 'property' key (lyrixx)
20+
* bug #34154 [HttpClient] fix handling of 3xx with no Location header - ignore Content-Length when no body is expected (nicolas-grekas)
21+
* bug #34140 [Security/Core] make NativePasswordEncoder use sodium to validate passwords when possible (nicolas-grekas)
22+
* bug #33999 [Form] Make sure to collect child forms created on *_SET_DATA events (yceruto)
23+
* bug #34090 [WebProfilerBundle] Improve display in Email panel for dark theme (antograssiot)
24+
* bug #34116 [HttpClient] ignore the body of responses to HEAD requests (nicolas-grekas)
25+
* bug #32456 [Messenger] use database platform to convert correctly the DateTime (roukmoute)
26+
* bug #34107 [Messenger] prevent infinite redelivery loops and blocked queues (Tobion)
27+
* bug #32341 [Messenger] Show exceptions after multiple retries (TimoBakx)
28+
* bug #34082 Revert "[Messenger] Fix exception message of failed message is dropped (Tobion)
29+
* bug #34021 [TwigBridge] do not render errors for checkboxes twice (xabbuh)
30+
* bug #34017 [Messenger] Fix ignored options in redis transport (chalasr)
31+
* bug #34041 [HttpKernel] fix wrong removal of the just generated container dir (nicolas-grekas)
32+
* bug #34024 [Routing] fix route loading with wildcard, but dir or file is empty (gseidel)
33+
* bug #34023 [Dotenv] allow LF in single-quoted strings (nicolas-grekas)
34+
* bug #33818 [Yaml] Throw exception for tagged invalid inline elements (gharlan)
35+
* bug #33994 [Mailer] Fix Mandrill Transport API payload for named addresses (Michaël Perrin)
36+
* bug #33985 [HttpClient] workaround curl_multi_select() issue (nicolas-grekas)
37+
* bug #33948 [PropertyInfo] Respect property name case when guessing from public method name (antograssiot)
38+
* bug #33962 [Cache] fixed TagAwareAdapter returning invalid cache (v-m-i)
39+
* bug #33958 [DI] Add extra type check to php dumper (gquemener)
40+
* bug #33965 [HttpFoundation] Add plus character `+` to legal mime subtype (ilzrv)
41+
* bug #32943 [Dotenv] search variable values in ENV first then env file (soufianZantar)
42+
* bug #33943 [VarDumper] fix resetting the "bold" state in CliDumper (nicolas-grekas)
43+
* bug #33936 [HttpClient] Missing argument in method_exists (detinkin)
44+
* bug #33937 [Cache] ignore unserialization failures in AbstractTagAwareAdapter::doDelete() (nicolas-grekas)
45+
* bug #33935 [HttpClient] send `Accept: */*` by default, fix removing it when needed (nicolas-grekas)
46+
* bug #33922 [Cache] remove implicit dependency on symfony/filesystem (nicolas-grekas)
47+
* bug #33927 Allow to set SameSite config to 'none' (ihmels)
48+
* bug #33930 [Cache] clean tags folder on invalidation (nicolas-grekas)
49+
* bug #33919 [VarDumper] fix array key error for class SymfonyCaster (zcodes)
50+
* bug #33885 [Form][DateTimeImmutableToDateTimeTransformer] Preserve microseconds and use \DateTime::createFromImmutable() when available (fancyweb)
51+
* bug #33900 [HttpKernel] Fix to populate $dotenvVars in data collector when not using putenv() (mynameisbogdan)
52+
1053
* 4.3.5 (2019-10-07)
1154

1255
* bug #33742 [Crawler] document $default as string|null (nicolas-grekas)

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy