Skip to content

Commit 4ee85e8

Browse files
committedSep 2, 2020
Merge branch '5.1'
* 5.1: Enable "native_constant_invocation" CS rule Make AbstractPhpFileCacheWarmer public Fix CS Add a warning comment on ldap empty password Bump Symfony version to 4.4.14 Update VERSION for 4.4.13 Update CHANGELOG for 4.4.13 [PhpunitBridge] Fix deprecation type detection
2 parents 01577db + 0346026 commit 4ee85e8

File tree

387 files changed

+1664
-1535
lines changed

Some content is hidden

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

387 files changed

+1664
-1535
lines changed
 

‎.php_cs.dist

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ return PhpCsFixer\Config::create()
1313
'array_syntax' => ['syntax' => 'short'],
1414
'fopen_flags' => false,
1515
'protected_to_private' => false,
16+
'native_constant_invocation' => true,
1617
'combine_nested_dirname' => true,
1718
])
1819
->setRiskyAllowed(true)

‎CHANGELOG-4.4.md

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ in 4.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/v4.4.0...v4.4.1
99

10+
* 4.4.13 (2020-09-02)
11+
12+
* security #cve-2020-15094 Remove headers with internal meaning from HttpClient responses (mpdude)
13+
* bug #38024 [Console] Fix undefined index for inconsistent command name definition (chalasr)
14+
* bug #38023 [DI] fix inlining of non-shared services (nicolas-grekas)
15+
* bug #38020 [PhpUnitBridge] swallow deprecations (xabbuh)
16+
* bug #38010 [Cache] Psr16Cache does not handle Proxy cache items (alex-dev)
17+
* bug #37937 [Serializer] fixed fix encoding of cache keys with anonymous classes (michaelzangerle)
18+
1019
* 4.4.12 (2020-08-31)
1120

1221
* bug #37966 [HttpClient][MockHttpClient][DX] Throw when the response factory callable does not return a valid response (fancyweb)

0 commit comments

Comments
 (0)
Please sign in to comment.