8000 Merge pull request #34420 from fabpot/release-4.4.0-RC1 · phpfour/symfony@8f86c6b · GitHub
[go: up one dir, main page]

Skip to content

Commit 8f86c6b

Browse files
authored
Merge pull request symfony#34420 from fabpot/release-4.4.0-RC1
released v4.4.0-RC1
2 parents cab859c + bef727c commit 8f86c6b

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG-4.4.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ 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.0-RC1 (2019-11-17)
11+
12+
* bug #34419 [Cache] Disable igbinary on PHP >= 7.4 (nicolas-grekas)
13+
* bug #34347 [Messenger] Perform no deep merging of bus middleware (vudaltsov)
14+
* bug #34366 [HttpFoundation] Allow redirecting to URLs that contain a semicolon (JayBizzle)
15+
* feature #34405 [HttpFoundation] Added possibility to configure expiration time in redis session handler (mantulo)
16+
* bug #34397 [FrameworkBundle] Remove project dir from Translator cache vary scanned directories (fancyweb)
17+
* bug #34384 [DoctrineBridge] Improve queries parameters display in Profiler (fancyweb)
18+
* bug #34408 [Cache] catch exceptions when using PDO directly (xabbuh)
19+
* bug #34411 [HttpKernel] Flatten "exception" controller argument if not typed (chalasr)
20+
* bug #34410 [HttpFoundation] Fix MySQL column type definition. (jbroutier)
21+
* bug #34403 [Cache] Redis Tag Aware warn on wrong eviction policy (andrerom)
22+
* bug #34400 [HttpKernel] collect bundle classes, not paths (nicolas-grekas)
23+
* bug #34398 [Config] fix id-generation for GlobResource (nicolas-grekas)
24+
* bug #34404 [HttpClient] fix HttpClientDataCollector (nicolas-grekas)
25+
* bug #34396 [Finder] Allow ssh2 stream wrapper for sftp (damienalexandre)
26+
* bug #34383 [DI] Use reproducible entropy to generate env placeholders (nicolas-grekas)
27+
* bug #34389 [WebProfilerBundle] add FrameworkBundle requirement (xabbuh)
28+
* bug #34381 [WebProfilerBundle] Require symfony/twig-bundle (fancyweb)
29+
* bug #34358 [Security] always check the token on non-lazy firewalls (nicolas-grekas, lyrixx)
30+
* bug #34390 [FrameworkBundle] fix wiring of httplug client (nicolas-grekas)
31+
* bug #34369 [FrameworkBundle] Disallow WebProfilerBundle < 4.4 (derrabus)
32+
* bug #34370 [DI] fix detecting singly implemented interfaces (nicolas-grekas)
33+
1034
* 4.4.0-BETA2 (2019-11-13)
1135

1236
* bug #34344 [Console] Constant STDOUT might be undefined (nicolas-grekas)

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.0-DEV';
79+
const VERSION = '4.4.0-RC1';
8080
const VERSION_ID = 40400;
8181
const MAJOR_VERSION = 4;
8282
const MINOR_VERSION = 4;
8383
const RELEASE_VERSION = 0;
84-
const EXTRA_VERSION = 'DEV';
84+
const EXTRA_VERSION = 'RC1';
8585

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

0 commit comments

Comments
 (0)
0