Skip to content

Commit cde8ffe

Browse files
Merge branch '5.1'
* 5.1: [Filesystem] fix for PHP 8 [Cache] fix DBAL v3 compat Bump Symfony version to 5.1.7 Update VERSION for 5.1.6 Update CHANGELOG for 5.1.6 Bump Symfony version to 4.4.15 Update VERSION for 4.4.14 Update CHANGELOG for 4.4.14 Bump Symfony version to 3.4.46 Update VERSION for 3.4.45 Update CONTRIBUTORS for 3.4.45 Update CHANGELOG for 3.4.45
2 parents d8d90b0 + b93dea7 commit cde8ffe

File tree

10 files changed

+198
-54
lines changed

10 files changed

+198
-54
lines changed

CHANGELOG-4.4.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,55 @@ 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.14 (2020-09-27)
11+
12+
* bug #38248 [HttpClient] Allow bearer token with colon (stephanvierkant)
13+
* bug #37837 [Form] Fix custom formats deprecation with HTML5 widgets (fancyweb)
14+
* bug #38285 [Contracts][Translation] Optional Intl dependency (ro0NL)
15+
* bug #38283 [Translator] Optional Intl dependency (ro0NL)
16+
* bug #38271 [ErrorHandler] Escape JSON encoded log context (ro0NL)
17+
* bug #38284 [Cache][Lock][Messenger] fix compatibility with Doctrine DBAL 3 (xabbuh)
18+
* bug #38228 [Yaml Parser] Fix edge cases when parsing multiple documents (digilist)
19+
* bug #38229 [Yaml] fix parsing comments not prefixed by a space (xabbuh)
20+
* bug #38127 [Translator] Make sure a null locale is handled properly (jschaedl)
21+
* bug #38221 [Cache] Allow cache tags to be objects implementing __toString() (lstrojny)
22+
* bug #38212 [HttpKernel] Do not override max_redirects option in HttpClientKernel (dmolineus)
23+
* bug #38215 [HttpClient] Support for CURLOPT_LOCALPORT (derrabus)
24+
* bug #38202 [FrameworkBundle] Fix xsd definition which prevent to add more than one workflow metadata (l-vo)
25+
* bug #38166 [Console] work around disabled putenv() (SenTisso)
26+
* bug #38173 [HttpClient][HttpClientTrait] don't calculate alternatives if option is auth_ntlm (ybenhssaien)
27+
* bug #38169 [PhpUnitBridge] Internal classes are not legacy (derrabus)
28+
* bug #38156 [Cache] fix ProxyAdapter not persisting items with infinite expiration (dmaicher)
29+
* bug #38148 [HttpClient] fail properly when the server replies with HTTP/0.9 (nicolas-grekas)
30+
* bug #38131 [Validator] allow consumers to mock all methods (xabbuh)
31+
* bug #38139 [DI] dump OS-indepent paths in the compiled container (nicolas-grekas)
32+
* bug #38126 [Cache] Limit cache version character range (lstrojny)
33+
* bug #38142 [FrameworkBundle] adopt src/.preload.php (nicolas-grekas)
34+
* bug #38108 [Cache] Fix key encoding issue in Memcached adapter (lstrojny)
35+
* bug #38122 [HttpClient] Fix Array to string conversion notice when parsing JSON error body with non-scalar detail property (emarref)
36+
* bug #37097 DateTime validator support for trailing data (stefankleff)
37+
* bug #38116 [Console] Silence warnings on sapi_windows_cp_set() call (chalasr)
38+
* bug #38114 [Console] guard $argv + $token against null, preventing unnecessary exceptions (bilogic)
39+
* bug #38094 [PhpUnitBridge] Skip internal classes in CoverageListenerTrait (sanmai)
40+
* bug #38101 [VarExporter] unserialize() might throw an Exception on php 8 (derrabus)
41+
* bug #38100 [ErrorHandler] Parse "x not found" errors correctly on php 8 (derrabus)
42+
* bug #38099 Prevent parsing invalid octal digits as octal numbers (julienfalque)
43+
* bug #38095 [Mailer] Remove unnecessary check for existing request (jschaedl)
44+
* bug #38091 [DI] fix ContainerBuilder on PHP8 (nicolas-grekas)
45+
* bug #38086 [HttpClient] with "bindto" with NativeHttpClient (nicolas-grekas)
46+
* bug #38063 [FrameworkBundle] generate preload.php in src/ to make opcache.preload predictable (nicolas-grekas)
47+
* bug #38080 [Console] Make sure $maxAttempts is an int or null (derrabus)
48+
* bug #38075 esmtp error not being thrown properly (Anton Zagorskii)
49+
* bug #38040 [Yaml Parser] fixed Parser to skip comments when inlining sequences (korve)
50+
* bug #38073 [VarDumper] Fix caster for invalid SplFileInfo objects on php 8 (derrabus)
51+
* bug #38071 [PhpUnitBridge] Adjust output parsing of CoverageListenerTrait for PHPUnit 9.3 (sanmai, derrabus)
52+
* bug #38062 [DI] fix generating preload file when cache_dir is outside project_dir (nicolas-grekas)
53+
* bug #38059 [Cache] Fix CacheCollectorPass with decorated cache pools (shyim)
54+
* bug #38054 [PhpUnitBridge] CoverageListenerTrait update for PHPUnit 8.5/9.x (sanmai)
55+
* bug #38049 [Debug] Parse "x not found" errors correctly on php 8 (derrabus)
56+
* bug #38041 [PropertyInfo] Fix typed collections in PHP 7.4 (ndench)
57+
* bug #37959 [PhpunitBridge] Fix deprecation type detection (when several autoload files are used) (l-vo)
58+
1059
* 4.4.13 (2020-09-02)
1160

1261
* security #cve-2020-15094 Remove headers with internal meaning from HttpClient responses (mpdude)

CHANGELOG-5.1.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,66 @@ in 5.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/v5.1.0...v5.1.1
99

10+
* 5.1.6 (2020-09-27)
11+
12+
* bug #38291 [OptionsResolver] Fix deprecation message access (fancyweb)
13+
* bug #38248 [HttpClient] Allow bearer token with colon (stephanvierkant)
14+
* bug #37837 [Form] Fix custom formats deprecation with HTML5 widgets (fancyweb)
15+
* bug #38285 [Contracts][Translation] Optional Intl dependency (ro0NL)
16+
* bug #38283 [Translator] Optional Intl dependency (ro0NL)
17+
* bug #38271 [ErrorHandler] Escape JSON encoded log context (ro0NL)
18+
* bug #38284 [Cache][Lock][Messenger] fix compatibility with Doctrine DBAL 3 (xabbuh)
19+
* bug #38228 [Yaml Parser] Fix edge cases when parsing multiple documents (digilist)
20+
* bug #38226 [FrameworkBundle] loadRoutes shoud receive RoutingPhpFileLoader (grachevko)
21+
* bug #38229 [Yaml] fix parsing comments not prefixed by a space (xabbuh)
22+
* bug #38127 [Translator] Make sure a null locale is handled properly (jschaedl)
23+
* bug #38221 [Cache] Allow cache tags to be objects implementing __toString() (lstrojny)
24+
* bug #38212 [HttpKernel] Do not override max_redirects option in HttpClientKernel (dmolineus)
25+
* bug #38215 [HttpClient] Support for CURLOPT_LOCALPORT (derrabus)
26+
* bug #38202 [FrameworkBundle] Fix xsd definition which prevent to add more than one workflow metadata (l-vo)
27+
* bug #38195 [String] improve slugger's portability accross implementations of iconv() (nicolas-grekas)
28+
* bug #38166 [Console] work around disabled putenv() (SenTisso)
29+
* bug #38190 [Notifier] Fix errors parsing in FirebaseTransport (jderusse)
30+
* bug #38173 [HttpClient][HttpClientTrait] don't calculate alternatives if option is auth_ntlm (ybenhssaien)
31+
* bug #38169 [PhpUnitBridge] Internal classes are not legacy (derrabus)
32+
* feature #38160 [Security] In the new authenticator system, no auth listener is valid (weaverryan)
33+
* bug #38156 [Cache] fix ProxyAdapter not persisting items with infinite expiration (dmaicher)
34+
* bug #38148 [HttpClient] fail properly when the server replies with HTTP/0.9 (nicolas-grekas)
35+
* bug #38131 [Validator] allow consumers to mock all methods (xabbuh)
36+
* bug #38140 [DI] dump OS-indepent paths in the preload file (nicolas-grekas)
37+
* bug #38139 [DI] dump OS-indepent paths in the compiled container (nicolas-grekas)
38+
* bug #38147 [Mailer] Fixed Mailgun API bridge JsonException when API response is not applicaton/json (asprega)
39+
* bug #38126 [Cache] Limit cache version character range (lstrojny)
40+
* bug #38136 [Messenger] Run postgres setup trigger in transaction (akondas)
41+
* bug #38142 [FrameworkBundle] adopt src/.preload.php (nicolas-grekas)
42+
* bug #38108 [Cache] Fix key encoding issue in Memcached adapter (lstrojny)
43+
* bug #38122 [HttpClient] Fix Array to string conversion notice when parsing JSON error body with non-scalar detail property (emarref)
44+
* bug #37097 DateTime validator support for trailing data (stefankleff)
45+
* bug #38116 [Console] Silence warnings on sapi_windows_cp_set() call (chalasr)
46+
* bug #38114 [Console] guard $argv + $token against null, preventing unnecessary exceptions (bilogic)
47+
* bug #38094 [PhpUnitBridge] Skip internal classes in CoverageListenerTrait (sanmai)
48+
* bug #38101 [VarExporter] unserialize() might throw an Exception on php 8 (derrabus)
49+
* bug #38100 [ErrorHandler] Parse "x not found" errors correctly on php 8 (derrabus)
50+
* bug #38099 Prevent parsing invalid octal digits as octal numbers (julienfalque)
51+
* bug #38095 [Mailer] Remove unnecessary check for existing request (jschaedl)
52+
* bug #38091 [DI] fix ContainerBuilder on PHP8 (nicolas-grekas)
53+
* bug #38086 [HttpClient] with "bindto" with NativeHttpClient (nicolas-grekas)
54+
* bug #38063 [FrameworkBundle] generate preload.php in src/ to make opcache.preload predictable (nicolas-grekas)
55+
* bug #38080 [Console] Make sure $maxAttempts is an int or null (derrabus)
56+
* bug #38075 esmtp error not being thrown properly (Anton Zagorskii)
57+
* bug #38040 [Yaml Parser] fixed Parser to skip comments when inlining sequences (korve)
58+
* bug #38073 [VarDumper] Fix caster for invalid SplFileInfo objects on php 8 (derrabus)
59+
* bug #38074 [Messenger] Remove DelaySeconds parameter for FIFO queues (netbull)
60+
* bug #38071 [PhpUnitBridge] Adjust output parsing of CoverageListenerTrait for PHPUnit 9.3 (sanmai, derrabus)
61+
* bug #38062 [DI] fix generating preload file when cache_dir is outside project_dir (nicolas-grekas)
62+
* bug #38059 [Cache] Fix CacheCollectorPass with decorated cache pools (shyim)
63+
* bug #38054 [PhpUnitBridge] CoverageListenerTrait update for PHPUnit 8.5/9.x (sanmai)
64+
* bug #38049 [Debug] Parse "x not found" errors correctly on php 8 (derrabus)
65+
* bug #38041 [PropertyInfo] Fix typed collections in PHP 7.4 (ndench)
66+
* bug #38013 [PHPUnitBridge] Fix deprecation type detection when trigger_deprecation is used (l-vo)
67+
* bug #37959 [PhpunitBridge] Fix deprecation type detection (when several autoload files are used) (l-vo)
68+
* bug #38031 Allow Drupal to wrap the Symfony test listener (5.1 backport) (fabpot, alexpott)
69+
1070
* 5.1.5 (2020-09-02)
1171

1272
* security #cve-2020-15094 Remove headers with internal meaning from HttpClient responses (mpdude)

0 commit comments

Comments
 (0)