8000 Merge pull request #39563 from fabpot/release-5.1.10 · alex-dev/symfony@0015744 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0015744

Browse files
authored
Merge pull request symfony#39563 from fabpot/release-5.1.10
released v5.1.10
2 parents 8797138 + 3213a92 commit 0015744

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

CHANGELOG-5.1.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,48 @@ 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.10 (2020-12-18)
11+
12+
* bug #39545 [Notifier] [Mattermost] Host is required (OskarStark)
13+
* bug #39538 [Notifier] Fix parsing Dsn with empty user/password (OskarStark)
14+
* bug #39531 [Mailer] Fix parsing Dsn with empty user/password (OskarStark)
15+
* bug #39518 [Ldap] Incorrect determination of RelativeDistinguishedName for the "move" operation (astepin)
16+
* bug #39510 [Notifier]  [Free Mobile] Could not use custom host in DSN (OskarStark)
17+
* bug #39514 [Notifier] Fix wrong package names (OskarStark)
18+
* bug #39494 Add missing symfony/deprecation-contracts requirement (jderusse)
19+
* bug #39476 [Lock] Prevent store exception break combined store (dzubchik)
20+
* bug #39456 [Notifier] [Free Mobile] Fix wrong scheme in mapping (OskarStark)
21+
* bug #39299 [PropertyInfo][Serializer] Fixed extracting ignored properties for Serializer (javer)
22+
* bug #39433 [Cache] fix setting "read_timeout" when using Redis (nicolas-grekas)
23+
* bug #39420 [Cache] Prevent notice on case matching metadata trick (bastnic)
24+
* bug #39203 [DI] Fix not working if only "default_index_method" used (malteschlueter)
25+
* bug #39409 [Notifier] [Twilio] Add tests (OskarStark)
26+
* bug #39142 [Config] Stop treating multiline resources as globs (michaelKaefer)
27+
* bug #39341 [Form] Fixed StringUtil::trim() to trim ZERO WIDTH SPACE (U+200B) and SOFT HYPHEN (U+00AD) (pmishev)
28+
* bug #39334 [Config][TwigBundle] Fixed syntax error in config (Nyholm)
29+
* bug #39196 [DI] Fix Xdebug 3.0 detection (vertexvaar)
30+
* bug #39226 [PhpUnitBridge] Fix disabling DeprecationErrorHandler from PHPUnit configuration file (fancyweb)
31+
* bug #39361 [FrameworkBundle] acces public-deprecated services via the private container to remove false-positive deprecations (nicolas-grekas)
32+
* bug #39357 [FrameworkBundle] fix preserving some special chars in the query string (nicolas-grekas)
33+
* bug #39271 [HttpFoundation] Fix TypeError: Argument 1 passed to JsonResponse::setJson() must be of the type string, object given (sidz)
34+
* bug #39251 [DependencyInjection] Fix container linter for union types (derrabus)
35+
* bug #39336 [Config] YamlReferenceDumper: No default value required for VariableNode with array example (Nyholm)
36+
* bug #39333 [Form] do not apply the Valid constraint on scalar form data (lchrusciel, xabbuh)
37+
* bug #39331 [PhpUnitBridge] Fixed PHPunit 9.5 compatibility (wouterj)
38+
* bug #39220 [HttpKernel] Fix bug with whitespace in Kernel::stripComments() (ausi)
39+
* bug #39252 [Mime] Leverage PHP 8's detection of CSV files (derrabus)
40+
* bug #39313 [FrameworkBundle] TextDescriptor::formatControllerLink checked method… (fjogeleit)
41+
* bug #39286 [HttpClient] throw clearer error when no scheme is provided (BackEndTea)
42+
* bug #39267 [Yaml] fix lexing backslashes in single quoted strings (xabbuh)
43+
* bug #39151 [DependencyInjection] Fixed incorrect report for private services if required service does not exist (Islam93)
44+
* bug #39274 [Yaml] fix lexing mapping values with trailing whitespaces (xabbuh)
45+
* bug #39244 [String] Fix Notice when argument is empty string (moldman)
46+
* bug #39270 [Inflector] Fix Notice when argument is empty string (moldman)
47+
* bug #39247 [Security] remove return type definition in order to avoid type juggling (adeptofvoltron)
48+
* bug #39223 [Console] Re-enable hyperlinks in Konsole/Yakuake (OndraM)
49+
* bug #39241 [Yaml] fix lexing inline sequences/mappings with trailing whitespaces (Nyholm, xabbuh)
50+
* bug #39243 [Filesystem] File existence check before calling unlink method (gechetspr)
51+
1052
* 5.1.9 (2020-11-29)
1153

1254
* bug #39166 [Messenger] Fix mssql compatibility for doctrine transport. (bill moll)

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.10-DEV';
76+
public const VERSION = '5.1.10';
7777
public const VERSION_ID = 50110;
7878
public const MAJOR_VERSION = 5;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 10;
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