8000 Merge pull request #41488 from fabpot/release-5.2.10 · symfony/symfony@dbfafad · GitHub
[go: up one dir, main page]

Skip to content

Commit dbfafad

Browse files
authored
Merge pull request #41488 from fabpot/release-5.2.10
released v5.2.10
2 parents 8b570e1 + b8908bc commit dbfafad

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG-5.2.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ in 5.2 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.2.0...v5.2.1
99

10+
* 5.2.10 (2021-06-01)
11+
12+
* bug #41000 [Form] Use !isset for checks cause this doesn't falsely include 0 (Kai Dederichs)
13+
* bug #41407 [DependencyInjection] keep container.service_subscriber tag on the decorated definition (xabbuh)
14+
* bug #40866 [Filesystem] fix readlink() for Windows (a1812)
15+
* bug #41394 [Form] fix support for years outside of the 32b range on x86 arch (nicolas-grekas)
16+
* bug #41380 Make Mailgun Header compatible with other Bridges (jderusse)
17+
* bug #39847 [Messenger] Fix merging PrototypedArrayNode associative values (svityashchuk)
18+
* bug #41346 [WebProfilerBundle] Wrapping exception js in Sfjs check and also loading base_js Sfjs if needed (weaverryan)
19+
* bug #41344 [VarDumper] Don't pass null to parse_url() (derrabus)
20+
1021
* 5.2.9 (2021-05-19)
1122

1223
* security #cve-2021-21424 [Security\Core] Fix user enumeration via response body on invalid credentials (chalasr)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7474

7575
private static $freshCache = [];
7676

77-
public const VERSION = '5.2.10-DEV';
77+
public const VERSION = '5.2.10';
7878
public const VERSION_ID = 50210;
7979
public const MAJOR_VERSION = 5;
8080
public const MINOR_VERSION = 2;
8181
public const RELEASE_VERSION = 10;
82-
public const EXTRA_VERSION = 'DEV';
82+
public const EXTRA_VERSION = '';
8383

8484
public const END_OF_MAINTENANCE = '07/2021';
8585
public const END_OF_LIFE = '07/2021';

0 commit comments

Comments
 (0)
0