8000 Merge pull request #38312 from fabpot/release-4.4.14 · kbond/symfony@c589c9a · GitHub
[go: up one dir, main page]

Skip to content

Commit c589c9a

Browse files
authored
Merge pull request symfony#38312 from fabpot/release-4.4.14
released v4.4.14
2 parents 55a450d + 9e8f2e7 commit c589c9a

File tree

2 files changed

+51
-2
lines changed

2 files changed

+51
-2
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)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676

7777
private static $freshCache = [];
7878

79-
const VERSION = '4.4.14-DEV';
79+
const VERSION = '4.4.14';
8080
const VERSION_ID = 40414;
8181
const MAJOR_VERSION = 4;
8282
const MINOR_VERSION = 4;
8383
const RELEASE_VERSION = 14;
84-
const EXTRA_VERSION = 'DEV';
84+
const EXTRA_VERSION = '';
8585

8686
const END_OF_MAINTENANCE = '11/2022';
8787
const END_OF_LIFE = '11/2023';

0 commit comments

Comments
 (0)
0