Skip to content

Commit f52424e

Browse files
authored
Merge pull request #40617 from fabpot/release-5.2.6
released v5.2.6
2 parents 567e118 + 4217e4c commit f52424e

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

CHANGELOG-5.2.md

+40
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ 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.6 (2021-03-29)
11+
12+
* bug #40598 [Form] error if the input string couldn't be parsed as a date (xabbuh)
13+
* bug #40587 [HttpClient] fix using stream_copy_to_stream() with responses cast to php streams (nicolas-grekas)
14+
* bug #40510 [Form] IntegerType: Always use en for IntegerToLocalizedStringTransformer (Warxcell)
15+
* bug #40593 Uses the correct assignment action for console options depending if they are short or long (topikito)
16+
* bug #40535 [HttpKernel] ConfigDataCollector to return known data without the need of a Kernel (topikito)
17+
* bug #40552 [Translation] Fix update existing key with existing +int-icu domain (Alexis)
18+
* bug #40541 Fixed parsing deprecated definitions without message key (adamwojs)
19+
* bug #40537 [Security] Handle properly 'auto' option for remember me cookie security (fliespl)
20+
* bug #40524 [Console] fix emojis messing up the line width (MarionLeHerisson)
21+
* bug #40506 [Validator] Avoid triggering the autoloader for user-input values (Seldaek)
22+
* bug #40544 [FrameworkBundle] ensure TestBrowserToken::$firewallName is serialized (kbond)
23+
* bug #40547 [RateLimiter] Security hardening - Rate limiter (jderusse)
24+
* bug #40538 [HttpClient] remove using $http_response_header (nicolas-grekas)
25+
* bug #40508 [PhpUnitBridge] fix reporting deprecations from DebugClassLoader (nicolas-grekas)
26+
* bug #40497 [HttpFoundation] enable HTTP method overrides as early as possible with the HTTP cache (xabbuh)
27+
* bug #40348 [Console] Fix line wrapping for decorated text in block output (grasmash)
28+
* bug #40499 [Inflector][String] Fixed pluralize "coupon" (Nyholm)
29+
* bug #40494 [PhpUnitBridge] fix compat with symfony/debug (nicolas-grekas)
30+
* bug #40453 [VarDumper] Adds support for ReflectionUnionType to VarDumper (Michael Nelson, michaeldnelson)
31+
* bug #40460 Correctly clear lines for multi-line progress bar messages (grasmash)
32+
* bug #40490 [Security] Add XML support for authenticator manager (wouterj)
33+
* bug #40242 [ErrorHandler] Fix error caused by `include` + open_basedir (stlrnz)
34+
* bug #40368 [FrameworkBundle] Make the TestBrowserToken interchangeable with other tokens (Seldaek)
35+
* bug #40450 [Console] ProgressBar clears too many lines on update (danepowell)
36+
* bug #40178 [FrameworkBundle] Exclude unreadable files when executing About command (michaljusiega)
37+
* bug #40472 [Bridge\Twig] Add 'form-control-range' for range input type (Oviglo)
38+
* bug #40481 make async-ses required (jderusse)
39+
* bug #39866 [Mime] Escape commas in address names (YaFou)
40+
* bug #40373 Check if templating engine supports given view (fritzmg)
41+
* bug #39992 [Security] Refresh original user in SwitchUserListener (AndrolGenhald)
42+
* bug #40446 [TwigBridge] Fix "Serialization of 'Closure'" error when rendering an TemplatedEmail (jderusse)
43+
* bug #40416 Fix `ConstraintViolation#getMessageTemplate()` to always return `string` (Ocramius)
44+
* bug #40425 [DoctrineBridge] Fix eventListener initialization when eventSubscriber constructor dispatch an event (jderusse)
45+
* bug #40313 [FrameworkBundle] Fix PropertyAccess definition when not in debug (PedroTroller)
46+
* bug #40417 [Form] clear unchecked choice radio boxes even if clear missing is set to false (xabbuh)
47+
* bug #40388 [ErrorHandler] Added missing type annotations to FlattenException (derrabus)
48+
* bug #40407 [TwigBridge] Allow version 3 of the Twig extra packages (derrabus)
49+
1050
* 5.2.5 (2021-03-10)
1151

1252
* bug #40415 Fix `ConstraintViolation#getPropertyPath()` to always return `string` (Ocramius)

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