Skip to content

Commit d6cc026

Browse files
authored
Merge pull request symfony#38405 from fabpot/release-4.4.15
released v4.4.15
2 parents 9c1b6fc + e42cfee commit d6cc026

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG-4.4.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ 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.15 (2020-10-04)
11+
12+
* bug #36291 [Lock] Fix StoreFactory to accept same DSN syntax as AbstractAdapter (Jontsa)
13+
* bug #38390 [Serializer][Minor] Fix circular reference exception message (bad limit displayed) (l-vo)
14+
* bug #38388 [HttpClient] Always "buffer" empty responses (nicolas-grekas)
15+
* bug #38380 [Form] propagate validation groups to subforms (johanderuijter, xabbuh)
16+
* bug #38377 Ignore more deprecations for Mockery mocks (fancyweb)
17+
* bug #38375 [HttpClient] fix using proxies with NativeHttpClient (nicolas-grekas)
18+
* bug #38372 [Routing] fix using !important and defaults/reqs in inline route definitions (nicolas-grekas)
19+
* bug #38373 [ErrorHandler][DebugClassLoader] Do not check Mockery mocks classes (fancyweb)
20+
* bug #38368 [HttpClient] Fix using https with proxies (bohanyang)
21+
* bug #38350 [TwigBundle] Only remove kernel exception listener if twig is used (dmolineus)
22+
* bug #38360 [BrowserKit] Cookie expiration at current timestamp (iquito)
23+
* bug #38358 [Messenger] Fix redis connection error message (alexander-schranz)
24+
* bug #38343 Revert "bug #38063 [FrameworkBundle] generate preload.php in src/ to make opcache.preload predictable" (nicolas-grekas)
25+
* bug #38336 [PhpUnitBridge] Fixed class_alias() for PHPUnit\Framework\Error\Error (stevegrunwell)
26+
1027
* 4.4.14 (2020-09-27)
1128

1229
* bug #38248 [HttpClient] Allow bearer token with colon (stephanvierkant)

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.15-DEV';
79+
const VERSION = '4.4.15';
8080
const VERSION_ID = 40415;
8181
const MAJOR_VERSION = 4;
8282
const MINOR_VERSION = 4;
8383
const RELEASE_VERSION = 15;
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)