Skip to content

Release v5.2.7 #41018

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
May 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions CHANGELOG-5.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,42 @@ 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.7 (2021-05-01)

* bug #41008 [Security] Do not try to rehash null-passwords (tjveldhuizen)
* bug #40993 [Security] [Security/Core] fix checking for bcrypt (nicolas-grekas)
* bug #40923 [Yaml] expose references detected in inline notation structures (xabbuh)
* bug #40964 [HttpFoundation] Fixes for PHP 8.1 deprecations (jrmajor)
* bug #40919 [Mailer] use correct spelling when accessing the SMTP php.ini value (xabbuh)
* bug #40514 [Yaml] Allow tabs as separators between tokens (bertramakers)
* bug #40882 [Cache] phpredis: Added full TLS support for RedisCluster (jackthomasatl)
* bug #40872 [DependencyInjection] [AliasDeprecatedPublicServicesPass] Noop when the service is private (fancyweb)
* bug #40802 [FrameworkBundle] Fix array controller link in debug:router (fancyweb)
* bug #40793 [DoctrineBridge] Add support for a driver type "attribute" (beberlei)
* bug #40807 RequestMatcher issue when `_controller` is a closure (Plopix)
* bug #40811 [PropertyInfo] Use the right context for methods defined in traits (colinodell)
* bug #40791 [WebProfilerBundle] Use ControllerReference instead of URL in twig render() (Foxprodev)
* bug #40330 [SecurityBundle] Empty line starting with dash under "access_control" causes all rules to be skipped (monteiro)
* bug #40780 [Cache] Apply NullAdapter as Null Object (roukmoute)
* bug #40740 [Cache][FrameworkBundle] Fix logging for TagAwareAdapter (fancyweb)
* bug #40755 [Routing] Better inline requirements and defaults parsing (Foxprodev)
* bug #40754 [PhpUnitBridge] Fix phpunit symlink on Windows (johnstevenson)
* bug #40660 [Form] Fix 'invalid_message' use in multiple ChoiceType (alexandre-daubois)
* bug #40707 [Yaml] Fixed infinite loop when parser goes through an additional and invalid closing tag (alexandre-daubois)
* bug #40698 [Console] Add Helper::width() and Helper::length() (Nyholm, grasmash)
* bug #40679 [Debug][ErrorHandler] Avoid warning with Xdebug 3 with develop mode disabled (Jean85)
* bug #40702 [HttpClient] allow CurlHttpClient on Windows (n0rbyt3)
* bug #40503 [Yaml] fix parsing some block sequences (a1812)
* bug #40610 Fixed bugs found by psalm (Nyholm)
* bug #40603 [Config] Fixed support for nodes not extending BaseNode (Nyholm)
* bug #40658 [RateLimiter] Fix sleep value (jderusse)
* bug #40645 [FrameworkBundle] Dont store cache misses on warmup (Nyholm)
* bug #40629 [DependencyInjection] Fix "url" env var processor behavior when the url has no path (fancyweb)
* bug #40655 [Cache] skip storing failure-to-save as misses in ArrayAdapter (nicolas-grekas)
* bug #40522 [Serializer] Allow AbstractNormalizer to use null for non-optional nullable constructor parameters without default value (Pierre Rineau)
* bug #40595 add missing queue_name to find(id) in doctrine messenger transport (monteiro)
* bug #40619 [FrameworkBundle] dont access the container to configure http_cache (nicolas-grekas)

* 5.2.6 (2021-03-29)

* bug #40598 [Form] error if the input string couldn't be parsed as a date (xabbuh)
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, RebootableInterface, Terminabl

private static $freshCache = [];

public const VERSION = '5.2.7-DEV';
public const VERSION = '5.2.7';
public const VERSION_ID = 50207;
public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 2;
public const RELEASE_VERSION = 7;
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