8000 Release v5.2.6 by fabpot · Pull Request #40617 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Release v5.2.6 #40617

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension
8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions CHANGELOG-5.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,46 @@ in 5.2 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.2.0...v5.2.1

* 5.2.6 (2021-03-29)

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

* 5.2.5 (2021-03-10)

* bug #40415 Fix `ConstraintViolation#getPropertyPath()` to always return `string` (Ocramius)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, Reboota 6369 bleInterface, Terminabl

private static $freshCache = [];

public const VERSION = '5.2.6-DEV';
public const VERSION = '5.2.6';
public const VERSION_ID = 50206;
public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 2;
public const RELEASE_VERSION = 6;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '07/2021';
public const END_OF_LIFE = '07/2021';
Expand Down
0