10000 Merge pull request #39999 from fabpot/release-5.1.11 · symfony/symfony@8dd8bb6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8dd8bb6

Browse files
authored
Merge pull request #39999 from fabpot/release-5.1.11
released v5.1.11
2 parents ea2ced0 + 5ae17bf commit 8dd8bb6

File tree

2 files changed

+62
-2
lines changed

2 files changed

+62
-2
lines changed

CHANGELOG-5.1.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,66 @@ in 5.1 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.1.0...v5.1.1
99

10+
* 5.1.11 (2021-01-27)
11+
12+
* bug #38900 [Serializer] Exclude non-initialized properties accessed with getters (BoShurik)
13+
* bug #39872 [Validator] propagate the object being validated to nested constraints (xabbuh)
14+
* bug #39887 [Translator] fix handling plural for floating numbers (kylekatarnls)
15+
* bug #39967 [Messenger] fix redis messenger options with dsn (Kleinast)
16+
* bug #39970 [Messenger] Fix transporting non-UTF8 payloads by encoding them using base 64 (nicolas-grekas)
17+
* bug #39956 [Uid] fix checking for valid UUIDs (nicolas-grekas)
18+
* bug #39909 [PhpUnitBridge] Allow relative path to composer cache (jderusse)
19+
* bug #39944 [HttpKernel] Configure the ErrorHandler even when it is overriden (nicolas-grekas)
20+
* bug #39896 [PropertyInfo] Fix breaking change with has*(arguments...) methods (YaFou)
21+
* bug #39932 [Console] [Command] Fix Closure code binding when it is a static anonymous function (fancyweb)
22+
* bug #39871 [Notifier] [OvhCloud] “Invalid signature” for message with slashes (OneT0uch)
23+
* bug #39900 [Uid] Unable to extend Uuid/Ulid and use fromString() (OskarStark)
24+
* bug #39880 [DoctrineBridge] Add username to UserNameNotFoundException (qurben)
25+
* bug #39633 [HttpFoundation] Drop int return type from parseFilesize() (LukeTowers)
26+
* bug #39889 [HttpClient] Add check for constant in Curl client (pierredup)
27+
* bug #39886 [HttpFoundation] Revert #38614 and add assert to avoid regressions (BafS)
28+
* bug #39873 [DependencyInjection] Fix container injection with TypedReference (jderusse)
29+
* bug #39858 Fix problem when SYMFONY_PHPUNIT_VERSION is empty string value (alexander-schranz)
30+
* bug #39861 [DependencyInjection] Skip deprecated definitions in CheckTypeDeclarationsPass (chalasr)
31+
* bug #39862 [Security] Replace message data in JSON security error response (wouterj)
32+
* bug #39839 [Messenger] [AmazonSqs] Fix auto-setup for fifo queue (starred-gijs)
33+
* bug #39667 [DoctrineBridge] Take into account that indexBy="person_id" could be a db column name, for a referenced entity (victormacko)
34+
* bug #39799 [DoctrineBridge] Fix circular loop with EntityManager (jderusse)
35+
* bug #39821 [DependencyInjection] Don't trigger notice for deprecated aliases pointing to deprecated definitions (chalasr)
36+
* bug #39816 [HttpFoundation] use atomic writes in MockFileSessionStorage (nicolas-grekas)
37+
* bug #39812 Make EmailMessage & SmsMessage transport nullable (odolbeau)
38+
* bug #39735 [Serializer] Rename normalize param (VincentLanglet)
39+
* bug #39797 Dont allow unserializing classes with a destructor (jderusse)
40+
* bug #39743 [Mailer] Fix missing BCC recipients in SES bridge (jderusse)
41+
* bug #39764 [Config]  fix handling float-like key attribute values (xabbuh)
42+
* bug #39787 [Yaml] a colon followed by spaces exclusively separates mapping keys and values (xabbuh)
43+
* bug #39788 [Cache] fix possible collision when writing tmp file in filesystem adapter (nicolas-grekas)
44+
* bug #39794 Dont allow unserializing classes with a destructor - 4.4 (jderusse)
45+
* bug #39795 Dont allow unserializing classes with a destructor - 5.1 (jderusse)
46+
* bug #39747 [DependencyInjection] Support PHP 8 builtin types in CheckTypeDeclarationsPass (derrabus)
47+
* bug #39738 [VarDumper] fix mutating $GLOBALS while cloning it (nicolas-grekas)
48+
* bug #39746 [DependencyInjection] Fix InvalidParameterTypeException for function parameters (derrabus)
49+
* bug #39681 [HttpFoundation] parse cookie values containing the equal sign (xabbuh)
50+
* bug #39716 [DependencyInjection] do not break when loading schemas from network paths on Windows (xabbuh)
51+
* bug #39703 [Finder] apply the sort callback on the whole search result (xabbuh)
52+
* bug #39717 [TwigBridge] Remove full head content in HTML to text converter (pupaxxo)
53+
* bug #39649 [Validator] propagate groups to nested constraints (xabbuh)
54+
* bug #39708 [WebProfilerBundle] take query and request parameters into account when matching routes (xabbuh)
55+
* bug #39692 [FrameworkBundle] Dump abstract arguments (jderusse)
56+
* bug #39683 [Yaml] keep trailing newlines when dumping multi-line strings (xabbuh)
57+
* bug #39670 [Form] disable error bubbling by default when inherit_data is configured (xabbuh)
58+
* bug #39686 [Lock] Fix config merging in lock (jderusse)
59+
* bug #39668 [Yaml] do not dump extra trailing newlines for multiline blocks (xabbuh)
60+
* bug #39674 [Messenger] fix postgres transport when the retry table is the same (lyrixx)
61+
* bug #39653 [Form] fix passing null $pattern to IntlDateFormatter (nicolas-grekas)
62+
* bug #39598 [Messenger] Fix stopwach usage if it has been reset (lyrixx)
63+
* bug #39636 [Uid] Handle ValueErrors triggered by ext-uuid on PHP 8 (derrabus)
64+
* bug #39631 [VarDumper] Fix display of nullable union return types (derrabus)
65+
* bug #39629 [VarDumper] fixed displaying "mixed" as "?mixed" (nicolas-grekas)
66+
* bug #39597 [Mailer] Handle failure when sending DATA (jderusse)
67+
* bug #39621 [Security] Fix event propagation for globally registered security events (scheb)
68+
* bug #39610 [ProxyManagerBridge] fix PHP notice, switch to "friendsofphp/proxy-manager-lts" (nicolas-grekas)
69+
1070
* 5.1.10 (2020-12-18)
1171

1272
* bug #39545 [Notifier] [Mattermost] Host is required (OskarStark)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373

7474
private static $freshCache = [];
7575

76-
public const VERSION = '5.1.11-DEV';
76+
public const VERSION = '5.1.11';
7777
public const VERSION_ID = 50111;
7878
public const MAJOR_VERSION = 5;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 11;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = '';
8282

8383
public const END_OF_MAINTENANCE = '01/2021';
8484
public const END_OF_LIFE = '01/2021';

0 commit comments

Comments
 (0)
0