8000 Merge pull request #41018 from fabpot/release-5.2.7 · symfony/symfony@b9afe80 · GitHub
[go: up one dir, main page]

Skip to content

Commit b9afe80

Browse files
authored
Merge pull request #41018 from fabpot/release-5.2.7
released v5.2.7
2 parents 998cdea + c3b3c33 commit b9afe80

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

CHANGELOG-5.2.md

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

1248
* bug #40598 [Form] error if the input string couldn't be parsed as a date (xabbuh)

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