Skip to content

Commit 8e1c507

Browse files
authored
Merge pull request symfony#36614 from fabpot/release-4.4.8
released v4.4.8
2 parents dfc4a71 + f7b9d93 commit 8e1c507

File tree

2 files changed

+52
-2
lines changed

2 files changed

+52
-2
lines changed

CHANGELOG-4.4.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,56 @@ 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.8 (2020-04-28)
11+
12+
* bug #36536 [Cache] Allow invalidateTags calls to be traced by data collector (l-vo)
13+
* bug #36566 [PhpUnitBridge] Use COMPOSER_BINARY env var if available (fancyweb)
14+
* bug #36560 [YAML] escape DEL(\x7f) (sdkawata)
15+
* bug #36539 [PhpUnitBridge] fix compatibility with phpunit 9 (garak)
16+
* bug #36555 [Cache] skip APCu in chains when the backend is disabled (nicolas-grekas)
17+
* bug #36523 [Form] apply automatically step=1 for datetime-local input (ottaviano)
18+
* bug #36519 [FrameworkBundle] debug:autowiring: Fix wrong display when using class_alias (weaverryan)
19+
* bug #36454 [DependencyInjection][ServiceSubscriber] Support late aliases (fancyweb)
20+
* bug #36498 [Security/Core] fix escape for username in LdapBindAuthenticationProvider.php (stoccc)
21+
* bug #36506 [FrameworkBundle] Fix session.attribute_bag service definition (fancyweb)
22+
* bug #36500 [Routing][PrefixTrait] Add the _locale requirement (fancyweb)
23+
* bug #36457 [Cache] CacheItem with tag is never a hit after expired (alexander-schranz, nicolas-grekas)
24+
* bug #36490 [HttpFoundation] workaround PHP bug in the session module (nicolas-grekas)
25+
* bug #36483 [SecurityBundle] fix accepting env vars in remember-me configurations (zek)
26+
* bug #36343 [Form] Fixed handling groups sequence validation (HeahDude)
27+
* bug #36460 [Cache] Avoid memory leak in TraceableAdapter::reset() (lyrixx)
28+
* bug #36467 Mailer from sender fixes (fabpot)
29+
* bug #36408 [PhpUnitBridge] add PolyfillTestCaseTrait::expectExceptionMessageMatches to provide FC with recent phpunit versions (soyuka)
30+
* bug #36447 Remove return type for Twig function workflow_metadata() (gisostallenberg)
31+
* bug #36449 [Messenger] Make sure redis transports are initialized correctly (Seldaek)
32+
* bug #36411 [Form] RepeatedType should always have inner types mapped (biozshock)
33+
* bug #36441 [DI] fix loading defaults when using the PHP-DSL (nicolas-grekas)
34+
* bug #36434 [HttpKernel] silence E_NOTICE triggered since PHP 7.4 (xabbuh)
35+
* bug #36365 [Validator] Fixed default group for nested composite constraints (HeahDude)
36+
* bug #36422 [HttpClient] fix HTTP/2 support on non-SSL connections - CurlHttpClient only (nicolas-grekas)
37+
* bug #36417 Force ping after transport exception (oesteve)
38+
* bug #35591 [Validator] do not merge constraints within interfaces (greedyivan)
39+
* bug #36377 [HttpClient] Fix scoped client without query option configuration (X-Coder264)
40+
* bug #36387 [DI] fix detecting short service syntax in yaml (nicolas-grekas)
41+
* bug #36392 [DI] add missing property declarations in InlineServiceConfigurator (nicolas-grekas)
42+
* bug #36400 Allowing empty secrets to be set (weaverryan)
43+
* bug #36380 [Process] Fixed input/output error on PHP 7.4 (mbardelmeijer)
44+
* bug #36376 [Workflow] Use a strict comparison when retrieving raw marking in MarkingStore (lyrixx)
45+
* bug #36375 [Workflow] Use a strict comparison when retrieving raw marking in MarkingStore (lyrixx)
46+
* bug #36305 [PropertyInfo][ReflectionExtractor] Check the array mutator prefixes last when the property is singular (fancyweb)
47+
* bug #35656 [HttpFoundation] Fixed session migration with custom cookie lifetime (Guite)
48+
* bug #36342 [HttpKernel][FrameworkBundle] fix compat with Debug component (nicolas-grekas)
49+
* bug #36315 [WebProfilerBundle] Support for Content Security Policy style-src-elem and script-src-elem in WebProfiler (ampaze)
50+
* bug #36286 [Validator] Allow URL-encoded special characters in basic auth part of URLs (cweiske)
51+
* bug #36335 [Security] Track session usage whenever a new token is set (wouterj)
52+
* bug #36332 [Serializer] Fix unitialized properties (from PHP 7.4.2) when serializing context for the cache key (alanpoulain)
53+
* bug #36337 [MonologBridge] Fix $level type (fancyweb)
54+
* bug #36223 [Security][Http][SwitchUserListener] Ignore all non existent username protection errors (fancyweb)
55+
* bug #36239 [HttpKernel][LoggerDataCollector] Prevent keys collisions in the sanitized logs processing (fancyweb)
56+
* bug #36245 [Validator] Fixed calling getters before resolving groups (HeahDude)
57+
* bug #36265 Fix the reporting of deprecations in twig:lint (stof)
58+
* bug #36283 [Security] forward multiple attributes voting flag (xabbuh)
59+
1060
* 4.4.7 (2020-03-30)
1161

1262
* security #cve-2020-5255 [HttpFoundation] Do not set the default Content-Type based on the Accept header (yceruto)

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