8000 Merge pull request #36240 from fabpot/release-5.0.6 · symfony/symfony@358bbae · GitHub
[go: up one dir, main page]

Skip to content

Commit 358bbae

Browse files
authored
Merge pull request #36240 from fabpot/release-5.0.6
released v5.0.6
2 parents efb5c49 + a156586 commit 358bbae

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

CHANGELOG-5.0.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,45 @@ 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.6 (2020-03-27)
11+
12+
* bug #36169 [HttpKernel] fix locking for PHP 7.4+ (nicolas-grekas)
13+
* bug #36175 [Security/Http] Remember me: allow to set the samesite cookie flag (dunglas)
14+
* bug #36173 [Http Foundation] Fix clear cookie samesite (guillbdx)
15+
* bug #36176 [Security] Check if firewall is stateless before checking for session/previous session (koenreiniers)
16+
* bug #36149 [Form] Support customized intl php.ini settings (jorrit)
17+
* bug #36172 [Debug] fix for PHP 7.3.16+/7.4.4+ (nicolas-grekas)
18+
* bug #36151 [Security] Fixed hardcoded value of SODIUM_CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE (lyrixx)
19+
* bug #36141 Prevent warning in proc_open() (BenMorel)
20+
* bug #36143 [FrameworkBundle] Fix Router Cache (guillbdx)
21+
* bug #36103 [DI] fix preloading script generation (nicolas-grekas)
22+
* bug #36118 [Security/Http] don't require the session to be started when tracking its id (nicolas-grekas)
23+
* bug #36108 [DI] Fix CheckTypeDeclarationPass (guillbdx)
24+
* bug #36121 [VarDumper] fix side-effect by not using mt_rand() (nicolas-grekas)
25+
* bug #36073 [PropertyAccess][DX] Improved errors when reading uninitialized properties (HeahDude)
26+
* bug #36063 [FrameworkBundle] start session on flashbag injection (William Arslett)
27+
* bug #36031 [Console] Fallback to default answers when unable to read input (ostrolucky)
28+
* bug #36083 [DI][Form] Fixed test suite (TimeType changes & unresolved merge co 10000 nflict) (wouterj)
29+
* bug #36026 [Mime] Fix boundary header (guillbdx)
30+
* bug #36020 [Form] ignore microseconds submitted by Edge (xabbuh)
31+
* bug #36038 [HttpClient] disable debug log with curl 7.64.0 (nicolas-grekas)
32+
* bug #36041 fix import from config file using type: glob (Tobion)
33+
* bug #35987 [DoctrineBridge][DoctrineExtractor] Fix wrong guessed type for "json" type (fancyweb)
34+
* bug #35949 [DI] Fix container lint command when a synthetic service is used in an expression (HypeMC)
35+
* bug #36023 [HttpClient] fix requests to hosts that idn_to_ascii() cannot handle (nicolas-grekas)
36+
* bug #35938 [Form] Handle false as empty value on expanded choices (fancyweb)
37+
* bug #36030 [SecurityBundle] Minor fix in LDAP config tree builder (HeahDude)
38+
* bug #36017 [HttpKernel] Fix support for single-colon syntax for controllers (nicolas-grekas)
39+
* bug #35993 Remove int return type from FlattenException::getCode (wucdbm)
40+
* bug #36004 [Yaml] fix dumping strings containing CRs (xabbuh)
41+
* bug #35982 [DI] Fix XmlFileLoader bad error message (przemyslaw-bogusz)
42+
* bug #35957 [DI] ignore extra tags added by autoconfiguration in PriorityTaggedServiceTrait (nicolas-grekas)
43+
* bug #35937 Revert "bug symfony#28179 [DomCrawler] Skip disabled fields processing in Form" (dmaicher)
44+
* bug #35928 [Routing] Prevent localized routes _locale default & requirement from being overridden (fancyweb)
45+
* bug #35912 [FrameworkBundle] register only existing transport factories (xabbuh)
46+
* bug #35899 [DomCrawler] prevent deprecation being triggered from assertion (xabbuh)
47+
* bug #35910 [SecurityBundle] Minor fixes in configuration tree builder (HeahDude)
48+
1049
* 5.0.5 (2020-02-29)
1150

1251
* bug #35781 [Form] NumberToLocalizedStringTransformer return int if scale = 0 (VincentLanglet)

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.6-DEV';
71+
const VERSION = '5.0.6';
7272
const VERSION_ID = 50006;
7373
const MAJOR_VERSION = 5;
7474
const MINOR_VERSION = 0;
7575
const RELEASE_VERSION = 6;
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