10000 Merge pull request #39216 from fabpot/release-5.1.9 · grasmash/symfony@84f32fe · GitHub
[go: up one dir, main page]

Skip to content

Commit 84f32fe

Browse files
authored
Merge pull request symfony#39216 from fabpot/release-5.1.9
released v5.1.9
2 parents 9ff1436 + a2efa61 commit 84f32fe

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed

CHANGELOG-5.1.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,54 @@ 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.9 (2020-11-29)
11+
12+
* bug #39166 [Messenger] Fix mssql compatibility for doctrine transport. (bill moll)
13+
* bug #39211 [HttpClient] fix binding to network interfaces (nicolas-grekas)
14+
* bug #39129 [DependencyInjection] Fix circular in DI with lazy + byContruct loop (jderusse)
15+
* bug #39068 [DependencyInjection][Translator] Silent deprecation triggered by libxml_disable_entity_loader (jderusse)
16+
* bug #39119 [Form] prevent duplicated error message for file upload limits (xabbuh)
17+
* bug #39099 [Form] ignore the pattern attribute for textareas (xabbuh)
18+
* bug #39154 [Yaml] fix lexing strings containing escaped quotation characters (xabbuh)
19+
* bug #39180 [Serializer] Fix denormalizing scalar with UnwrappingDenormalizer (camilledejoye)
20+
* bug #38597 [PhpUnitBridge] Fix qualification of deprecations triggered by the debug class loader (fancyweb)
21+
* bug #39160 [Console] Use a partial buffer in SymfonyStyle (jderusse)
22+
* bug #39168 [Console] Fix console closing tag (jderusse)
23+
* bug #39155 [VarDumper] fix casting resources turned into objects on PHP 8 (nicolas-grekas)
24+
* bug #39131 [Cache] Fix CI because of Couchbase version (jderusse)
25+
* bug #39115 [HttpClient] don't fallback to HTTP/1.1 when HTTP/2 streams break (nicolas-grekas)
26+
* bug #33763 [Yaml] fix lexing nested sequences/mappings (xabbuh)
27+
* bug #39083 [Dotenv] Check if method inheritEnvironmentVariables exists (Chi-teck)
28+
* bug #39094 [Ldap] Fix undefined variable $con (derrabus)
29+
* bug #39091 [Config] Recheck glob brace support after GlobResource was serialized (wouterj)
30+
* bug #39092 Fix critical extension when reseting paged control (jderusse)
31+
* bug #38614 [HttpFoundation] Fix for virtualhosts based on URL path (mvorisek)
32+
* bug #39072 [FrameworkBundle] [Notifier] fix firebase transport factory DI tag type (xabbuh)
33+
* bug #38387 [Validator] prevent hash collisions caused by reused object hashes (fancyweb, xabbuh)
34+
* bug #38999 [DependencyInjection] autoconfigure behavior describing tags on decorators (xabbuh)
35+
* bug #39058 [DependencyInjection] Fix circular detection with multiple paths (jderusse)
36+
* bug #39059 [Filesystem] fix cleaning up tmp files when dumpFile() fails (nicolas-grekas)
37+
* bug #38628 [DoctrineBridge] indexBy could reference to association columns (juanmiguelbesada)
38+
* bug #39021 [DependencyInjection] Optimize circular collection by removing flattening (jderusse)
39+
* bug #39031 [Ldap] Fix pagination (jderusse)
40+
* bug #39038 [DoctrineBridge] also reset id readers (xabbuh)
41+
* bug #39026 [Messenger] Fix DBAL deprecations in PostgreSqlConnection (chalasr)
42+
* bug #39025 [DoctrineBridge] Fix DBAL deprecations in middlewares (derrabus)
43+
* bug #38991 [Console] Fix ANSI when stdErr is not a tty (jderusse)
44+
* bug #38980 [DependencyInjection] Fix circular reference with Factory + Lazy Iterrator (jderusse)
45+
* bug #38977 [HttpClient] Check status code before decoding content in TraceableResponse (chalasr)
46+
* bug #38971 [PhpUnitBridge] fix replaying skipped tests (nicolas-grekas)
47+
* bug #38910 [HttpKernel] Fix session initialized several times (jderusse)
48+
* bug #38882 [DependencyInjection] Improve performances in CircualReference detection (jderusse)
49+
* bug #38950 [Process] Dont test TTY if there is no TTY support (Nyholm)
50+
* bug #38921 [PHPUnitBridge] Fixed crash on Windows with PHP 8 (villfa)
51+
* bug #38869 [SecurityBundle] inject only compatible token storage implementations for usage tracking (xabbuh)
52+
* bug #38894 [HttpKernel] Remove Symfony 3 compatibility code (derrabus)
53+
* bug #38895 [PhpUnitBridge] Fix wrong check for exporter in ConstraintTrait (alcaeus)
54+
* bug #38879 [Cache] Fixed expiry could be int in ChainAdapter due to race conditions (phamviet)
55+
* bug #38867 [FrameworkBundle] Fixing TranslationUpdateCommand failure when using "--no-backup" (liarco)
56+
* bug #38856 [Cache] Add missing use statement (fabpot)
57+
1058
* 5.1.8 (2020-10-28)
1159

1260
* bug #38713 [DI] Fix Preloader exception when preloading a class with an unknown parent/interface (rgeraads)

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-
const VERSION = '5.1.9-DEV';
76+
const VERSION = '5.1.9';
7777
const VERSION_ID = 50109;
7878
const MAJOR_VERSION = 5;
7979
const MINOR_VERSION = 1;
8080
const RELEASE_VERSION = 9;
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)
0