Skip to content

Commit 3552d33

Browse files
authored
Merge pull request symfony#41279 from fabpot/release-5.2.9
released v5.2.9
2 parents 309f36d + 07e52ce commit 3552d33

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG-5.2.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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.9 (2021-05-19)
11+
12+
* security #cve-2021-21424 [Security\Core] Fix user enumeration via response body on invalid credentials (chalasr)
13+
* bug #41275 Fixes Undefined method call (faizanakram99)
14+
* bug #41269 [SecurityBundle] Remove invalid unused service (chalasr)
15+
* bug #41139 [Security] [DataCollector] Remove allows anonymous information in datacollector (ismail1432)
16+
* bug #41230 [FrameworkBundle][Validator] Fix deprecations from Doctrine Annotations+Cache (derrabus)
17+
* bug #41206 [Mailer] Fix SES API call with UTF-8 Addresses (jderusse)
18+
* bug #41240 Fixed deprecation warnings about passing null as parameter (derrabus)
19+
* bug #41241 [Finder] Fix gitignore regex build with "**" (mvorisek)
20+
* bug #41224 [HttpClient] fix adding query string to relative URLs with scoped clients (nicolas-grekas)
21+
* bug #41233 [DependencyInjection][ProxyManagerBridge] Don't call class_exists() on null (derrabus)
22+
* bug #41211 [Notifier] Add missing charset to content-type for Slack notifier (norkunas)
23+
* bug #41210 [Console] Fix Windows code page support (orkan)
24+
1025
* 5.2.8 (2021-05-12)
1126

1227
* security #cve-2021-21424 [Security][Guard] Prevent user enumeration (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.9-DEV';
77+
public const VERSION = '5.2.9';
7878
public const VERSION_ID = 50209;
7979
public const MAJOR_VERSION = 5;
8080
public const MINOR_VERSION = 2;
8181
public const RELEASE_VERSION = 9;
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)