8000 Merge pull request #39215 from fabpot/release-4.4.17 · grasmash/symfony@02562a0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 02562a0

Browse files
authored
Merge pull request symfony#39215 from fabpot/release-4.4.17
released v4.4.17
2 parents 42061de + 09df326 commit 02562a0

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

CHANGELOG-4.4.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,48 @@ 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.17 (2020-11-29)
11+
12+
* bug #39166 [Messenger] Fix mssql compatibility for doctrine transport. (bill moll)
13+
* bug #39211 [HttpClient] fix binding to network interfaces (nicolas-grekas)
14+
* bug #39129 [DependencyInjection] Fix circular in DI with lazy + byContruct loop (jderusse)
15+
* bug #39068 [DependencyInjection][Translator] Silent deprecation triggered by libxml_disable_entity_loader (jderusse)
16+
* bug #39119 [Form] prevent duplicated error message for file upload limits (xabbuh)
17+
* bug #39099 [Form] ignore the pattern attribute for textareas (xabbuh)
18+
* bug #39154 [Yaml] fix lexing strings containing escaped quotation characters (xabbuh)
19+
* bug #38597 [PhpUnitBridge] Fix qualification of deprecations triggered by the debug class loader (fancyweb)
20+
* bug #39160 [Console] Use a partial buffer in SymfonyStyle (jderusse)
21+
* bug #39168 [Console] Fix console closing tag (jderusse)
22+
* bug #39155 [VarDumper] fix casting resources turned into objects on PHP 8 (nicolas-grekas)
23+
* bug #39115 [HttpClient] don't fallback to HTTP/1.1 when HTTP/2 streams break (nicolas-grekas)
24+
* bug #33763 [Yaml] fix lexing nested sequences/mappings (xabbuh)
25+
* bug #39083 [Dotenv] Check if method inheritEnvironmentVariables exists (Chi-teck)
26+
* bug #39094 [Ldap] Fix undefined variable $con (derrabus)
27+
* bug #39091 [Config] Recheck glob brace support after GlobResource was serialized (wouterj)
28+
* bug #39092 Fix critical extension when reseting paged control (jderusse)
29+
* bug #38614 [HttpFoundation] Fix for virtualhosts based on URL path (mvorisek)
30+
* bug #38387 [Validator] prevent hash collisions caused by reused object hashes (fancyweb, xabbuh)
31+
* bug #38999 [DependencyInjection] autoconfigure behavior describing tags on decorators (xabbuh)
32+
* bug #39058 [DependencyInjection] Fix circular detection with multiple paths (jderusse)
33+
* bug #39059 [Filesystem] fix cleaning up tmp files when dumpFile() fails (nicolas-grekas)
34+
* bug #38628 [DoctrineBridge] indexBy could reference to association columns (juanmiguelbesada)
35+
* bug #39021 [DependencyInjection] Optimize circular collection by removing flattening (jderusse)
36+
* bug #39031 [Ldap] Fix pagination (jderusse)
37+
* bug #39038 [DoctrineBridge] also reset id readers (xabbuh)
38+
* bug #39025 [DoctrineBridge] Fix DBAL deprecations in middlewares (derrabus)
39+
* bug #38991 [Console] Fix ANSI when stdErr is not a tty (jderusse)
40+
* bug #38980 [DependencyInjection] Fix circular reference with Factory + Lazy Iterrator (jderusse)
41+
* bug #38971 [PhpUnitBridge] fix replaying skipped tests (nicolas-grekas)
42+
* bug #38910 [HttpKernel] Fix session initialized several times (jderusse)
43+
* bug #38882 [DependencyInjection] Improve performances in CircualReference detection (jderusse)
44+
* bug #38950 [Process] Dont test TTY if there is no TTY support (Nyholm)
45+
* bug #38921 [PHPUnitBridge] Fixed crash on Windows with PHP 8 (villfa)
46+
* bug #38869 [SecurityBundle] inject only compatible token storage implementations for usage tracking (xabbuh)
47+
* bug #38894 [HttpKernel] Remove Symfony 3 compatibility code (derrabus)
48+
* bug #38895 [PhpUnitBridge] Fix wrong check for exporter in ConstraintTrait (alcaeus)
49+
* bug #38879 [Cache] Fixed expiry could be int in ChainAdapter due to race conditions (phamviet)
50+
* bug #38856 [Cache] Add missing use statement (fabpot)
51+
1052
* 4.4.16 (2020-10-28)
1153

1254
* bug #38713 [DI] Fix Preloader exception when preloading a class with an unknown parent/interface (rg 8000 eraads)

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.17-DEV';
79+
const VERSION = '4.4.17';
8080
const VERSION_ID = 40417;
8181
const MAJOR_VERSION = 4;
8282
const MINOR_VERSION = 4;
8383
const RELEASE_VERSION = 17;
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