Skip to content

Commit c093c64

Browse files
authored
Merge pull request symfony#37248 from fabpot/release-5.1.1
released v5.1.1
2 parents 3afa4b2 + 6aafc48 commit c093c64

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

CHANGELOG-5.1.md

+43
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,49 @@ 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.1 (2020-06-12)
11+
12+
* bug #37227 [DependencyInjection][CheckTypeDeclarationsPass] Handle unresolved parameters pointing to environment variables (fancyweb)
13+
* bug #37103 [Form] switch the context when validating nested forms (xabbuh)
14+
* bug #37182 [HttpKernel] Fix regression where Store does not return response body correctly (mpdude)
15+
* bug #37193 [DependencyInjection][CheckTypeDeclarationsPass] Always resolve parameters (fancyweb)
16+
* bug #37044 [DependencyInjection] Apply ExpressionLanguageProviderPass to router.default (wizhippo)
17+
* bug #37054 [String] Fix ellipsis of truncate when not using cut option (DuboisS)
18+
* bug #37190 [HttpClient] disable AMP's inactivity timeout, we deal with it on our own already (nicolas-grekas)
19+
* bug #37191 [HttpClient] fix offset computation for data chunks (nicolas-grekas)
20+
* bug #37176 [Routing] Keeping routes priorities after add a name prefix to the collection (yceruto)
21+
* bug #37140 [Lock] Fixed reading locks from replica set secondary nodes (kralos)
22+
* bug #37177 [Ldap] fix refreshUser() ignoring extra_fields (arkste)
23+
* bug #37181 [Mailer] Remove an internal annot (fabpot)
24+
* bug #36913 [FrameworkBundle] fix type annotation on ControllerTrait::addFlash() (ThomasLandauer)
25+
* bug #37153 [PhpUnitBridge] Fix ExpectDeprecationTrait::expectDeprecation() conflict (fancyweb)
26+
* bug #37162 [Mailer] added the reply-to addresses to the API SES transport request. (ribeiropaulor)
27+
* bug #37144 [DI] Add check around class_alias for generated proxy classes (enumag)
28+
* bug #37167 [Mime] use fromString when creating a new Address (fabpot)
29+
* bug #37169 [Cache] fix forward compatibility with Doctrine DBAL 3 (xabbuh)
30+
* bug #37159 [Mailer] Fixed generator bug when creating multiple transports using Transport::fromDsn (atailouloute)
31+
* bug #37154 [FrameworkBundle] Remove reference to APP_SECRET in MicroKernelTrait (nicolas-grekas)
32+
* bug #37126 [SecurityBundle] Fix the session listener registration under the new authentication manager (johnvandeweghe)
33+
* bug #37130 [Console] allow cursor to be used even when STDIN is not defined (xabbuh)
34+
* bug #37053 [PropertyAccess] Fix getter call order BC (1ed)
35+
* bug #37117 [Messenger/DoctrineBridge] set column length for mysql 5.6 compatibility (Nemo64)
36+
* bug #37127 [Messenger/AmazonSqsBridge] Fixed left-over debug statement (sstok)
37+
* bug #37048 [HttpClient] fix monitoring timeouts when other streams are active (nicolas-grekas)
38+
* bug #37085 [Form] properly cascade validation to child forms (xabbuh)
39+
* bug #37095 [PhpUnitBridge] Fix undefined index when output of "composer show" cannot be parsed (nicolas-grekas)
40+
* bug #37092 [PhpUnitBridge] fix undefined var on version 3.4 (nicolas-grekas)
41+
* bug #37022 [DependencyInjection] Improve missing package/version deprecation (acrobat)
42+
* bug #37038 Fix invalid char in SQS Headers (jderusse)
43+
* bug #37047 [SecurityBundle] Only register CSRF protection listener if CSRF is available (wouterj)
44+
* bug #37065 [HttpClient] Throw JsonException instead of TransportException on empty response in Response::toArray() (jeroennoten)
45+
* bug #37058 [FrameworkBundle] Extension Serializer issue (Korbeil)
46+
* bug #37077 [WebProfilerBundle] Move ajax clear event listener initialization on loadToolbar (Bruno BOUTAREL)
47+
* bug #37056 [DoctrineBridge] register event listeners depending on the installed packages (xabbuh)
48+
* bug #37020 [ExpressionLanguage] reset the internal state when the parser is finished (xabbuh)
49+
* bug #37049 [Serializer] take into account the context when preserving empty array objects (xabbuh)
50+
* bug #37031 [Security] Fixed PUBLIC_ACCESS in authenticated sessions (wouterj)
51+
* bug #37028 [FrameworkBundle] Fix enabled_locales behavior (tgalopin)
52+
1053
* 5.1.0 (2020-05-31)
1154

1255
* bug #37009 [Validator] use "allowedVariables" to configure the ExpressionLanguageSyntax constraint (xabbuh)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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-
const VERSION = '5.1.1-DEV';
76+
const VERSION = '5.1.1';
7777
const VERSION_ID = 50101;
7878
const MAJOR_VERSION = 5;
7979
const MINOR_VERSION = 1;
8080
const RELEASE_VERSION = 1;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

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

0 commit comments

Comments
 (0)