8000 Merge pull request #36615 from fabpot/release-5.0.8 · JudicaelR/symfony@be59353 · GitHub
[go: up one dir, main page]

Skip to content

Commit be59353

Browse files
authored
Merge pull request symfony#36615 from fabpot/release-5.0.8
released v5.0.8
2 parents 270d204 + a5cc4dd commit be59353

File tree

2 files changed

+55
-2
lines changed

2 files changed

+55
-2
lines changed

CHANGELOG-5.0.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,59 @@ in 5.0 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/v5.0.0...v5.0.1
99

10+
* 5.0.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 #36162 [Profiler] Fix profiler nullable string type (mRoca)
21+
* bug #36498 [Security/Core] fix escape for username in LdapBindAuthenticationProvider.php (stoccc)
22+
* bug #36506 [FrameworkBundle] Fix session.attribute_bag service definition (fancyweb)
23+
* bug #36500 [Routing][PrefixTrait] Add the _locale requirement (fancyweb)
24+
* bug #36457 [Cache] CacheItem with tag is never a hit after expired (alexander-schranz, nicolas-grekas)
25+
* bug #36490 [HttpFoundation] workaround PHP bug in the session module (nicolas-grekas)
26+
* bug #36483 [SecurityBundle] fix accepting env vars in remember-me configurations (zek)
27+
* bug #36343 [Form] Fixed handling groups sequence validation (HeahDude)
28+
* bug #36463 [Mime] Ensure proper line-ending for SMIME (sstok)
29+
* bug #36460 [Cache] Avoid memory leak in TraceableAdapter::reset() (lyrixx)
30+
* bug #36467 Mailer from sender fixes (fabpot)
31+
* bug #36408 [PhpUnitBridge] add PolyfillTestCaseTrait::expectExceptionMessageMatches to provide FC with recent phpunit versions (soyuka)
32+
* bug #36447 Remove return type for Twig function workflow_metadata() (gisostallenberg)
33+
* bug #36449 [Messenger] Make sure redis transports are initialized correctly (Seldaek)
34+
* bug #36411 [Form] RepeatedType should always have inner types mapped (biozshock)
35+
* bug #36441 [DI] fix loading defaults when using the PHP-DSL (nicolas-grekas)
36+
* bug #36434 [HttpKernel] silence E_NOTICE triggered since PHP 7.4 (xabbuh)
37+
* bug #36365 [Validator] Fixed default group for nested composite constraints (HeahDude)
38+
* bug #36422 [HttpClient] fix HTTP/2 support on non-SSL connections - CurlHttpClient only (nicolas-grekas)
39+
* bug #36417 Force ping after transport exception (oesteve)
40+
* bug #35591 [Validator] do not merge constraints within interfaces (greedyivan)
41+
* bug #36377 [HttpClient] Fix scoped client without query option configuration (X-Coder264)
42+
* bug #36387 [DI] fix detecting short service syntax in yaml (nicolas-grekas)
43+
* bug #36392 [DI] add missing property declarations in InlineServiceConfigurator (nicolas-grekas)
44+
* bug #36400 Allowing empty secrets to be set (weaverryan)
45+
* bug #36380 [Process] Fixed input/output error on PHP 7.4 (mbardelmeijer)
46+
* bug #36376 [Workflow] Use a strict comparison when retrieving raw marking in MarkingStore (lyrixx)
47+
* bug #36375 [Workflow] Use a strict comparison when retrieving raw marking in MarkingStore (lyrixx)
48+
* bug #36305 [PropertyInfo][ReflectionExtractor] Check the array mutator prefixes last when the property is singular (fancyweb)
49+
* bug #35656 [HttpFoundation] Fixed session migration with custom cookie lifetime (Guite)
50+
* bug #36342 [HttpKernel][FrameworkBundle] fix compat with Debug component (nicolas-grekas)
51+
* bug #36315 [WebProfilerBundle] Support for Content Security Policy style-src-elem and script-src-elem in WebProfiler (ampaze)
52+
* bug #36286 [Validator] Allow URL-encoded special characters in basic auth part of URLs (cweiske)
53+
* bug #36335 [Security] Track session usage whenever a new token is set (wouterj)
54+
* bug #36332 [Serializer] Fix unitialized properties (from PHP 7.4.2) when serializing context for the cache key (alanpoulain)
55+
* bug #36338 [MonologBridge] Fix $level type (fancyweb)
56+
* bug #36337 [MonologBridge] Fix $level type (fancyweb)
57+
* bug #36223 [Security][Http][SwitchUserListener] Ignore all non existent username protection errors (fancyweb)
58+
* bug #36239 [HttpKernel][LoggerDataCollector] Prevent keys collisions in the sanitized logs processing (fancyweb)
59+
* bug #36245 [Validator] Fixed calling getters before resolving groups (HeahDude)
60+
* bug #36265 Fix the reporting of deprecations in twig:lint (stof)
61+
* bug #36283 [Security] forward multiple attributes voting flag (xabbuh)
62+
1063
* 5.0.7 (2020-03-30)
1164

1265
* 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
@@ -68,12 +68,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6868

6969
private static $freshCache = [];
7070

71-
const VERSION = '5.0.8-DEV';
71+
const VERSION = '5.0.8';
7272
const VERSION_ID = 50008;
7373
const MAJOR_VERSION = 5;
7474
const MINOR_VERSION = 0;
7575
const RELEASE_VERSION = 8;
76-
const EXTRA_VERSION = 'DEV';
76+
const EXTRA_VERSION = '';
7777

7878
const END_OF_MAINTENANCE = '07/2020';
7979
const END_OF_LIFE = '07/2020';

0 commit comments

Comments
 (0)
0