8000 Merge pull request #42313 from fabpot/release-5.2.14 · symfony/symfony@7fa617d · GitHub
[go: up one dir, main page]

Skip to content

Commit 7fa617d

Browse files
authored
Merge pull request #42313 from fabpot/release-5.2.14
released v5.2.14
2 parents b964e03 + 8ba9c97 commit 7fa617d

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG-5.2.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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.14 (2021-07-29)
11+
12+
* bug #42307 [Mailer] Fixed decode exception when sendgrid response is 202 (rubanooo)
13+
* bug #42296 [Dotenv][Yaml] Remove PHP 8.0 polyfill (derrabus)
14+
* bug #42289 [HttpFoundation] Fixed type mismatch (Toflar)
15+
1016
* 5.2.13 (2021-07-27)
1117

1218
* bug #42270 [WebProfilerBundle] [WebProfiler] "empty" filter bugfix. Filter with name "empty" is not … (luzrain)

src/Symfony/Component/HttpKernel/Kernel.php

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

7575
private static $freshCache = [];
7676

77-
public const VERSION = '5.2.13';
78-
public const VERSION_ID = 50213;
77+
public const VERSION = '5.2.14';
78+
public const VERSION_ID = 50214;
7979
public const MAJOR_VERSION = 5;
8080
public const MINOR_VERSION = 2;
81-
public const RELEASE_VERSION = 13;
81+
public const RELEASE_VERSION = 14;
8282
public const EXTRA_VERSION = '';
8383

8484
public const END_OF_MAINTENANCE = '07/2021';

0 commit comments

Comments
 (0)
0