Skip to content

Commit 8f9f599

Browse files
authored
Merge pull request #40440 from fabpot/release-5.2.5
released v5.2.5
2 parents e5f9a89 + 3da617f commit 8f9f599

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG-5.2.md

+11
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.5 (2021-03-10)
11+
12+
* bug #40415 Fix `ConstraintViolation#getPropertyPath()` to always return `string` (Ocramius)
13+
* bug #40421 [FrameworkBundle] fix XSD (nicolas-grekas)
14+
* bug #39685 [Mailer][Mime][TwigBridge][Validator] Allow egulias/email-validator 3.x (derrabus)
15+
* bug #40398 [FrameworkBundle] : Fix method name compare in ResolveControllerNameSubscriber (glensc)
16+
* bug #39733 [TwigBridge] Render email once (jderusse)
17+
* bug #40386 [DependencyInjection][Security] Backport psr/container 1.1/2.0 compatibility (derrabus)
18+
* bug #40376 [Messenger] Don't lock tables or start transactions (Nyholm)
19+
* bug #40378 Changing ZulipTransportFactory tag to prevent the exception UnsupportedSchemeException (big-r81)
20+
1021
* 5.2.4 (2021-03-04)
1122

1223
* bug #40336 [Messenger] Doctrine setup with migrations (Nyholm)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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.5-DEV';
77+
public const VERSION = '5.2.5';
7878
public const VERSION_ID = 50205;
7979
public const MAJOR_VERSION = 5;
8080
public const MINOR_VERSION = 2;
8181
public const RELEASE_VERSION = 5;
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)