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

Skip to content

Commit a57ce22

Browse files
authored
Merge pull request #30016 from fabpot/release-4.1.11
released v4.1.11
2 parents b7f1fe2 + 94ceb04 commit a57ce22

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG-4.1.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ in 4.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/v4.1.0...v4.1.1
99

10+
* 4.1.11 (2019-01-29)
11+
12+
* bug #30013 [Routing] dont redirect routes with greedy trailing vars with no explicit slash (nicolas-grekas)
13+
* bug #30006 [Security] don't do nested calls to serialize() (nicolas-grekas, Renan)
14+
* bug #30007 [FrameworkBundle] Support use of hyphen in asset package name (damaya, XuruDragon)
15+
* bug #29764 [HttpFoundation] Check file exists before unlink (adam-mospan)
16+
* bug #29783 [HttpFoundation] MemcachedSessionHandler::close() must close connection (grachevko)
17+
* bug #29844 [Console] Fixed #29835: ConfirmationQuestion with default true for answer '0' (mrthehud)
18+
* bug #29869 [Debug][ErrorHandler] Preserve our error handler when a logger sets another one (fancyweb)
19+
* bug #29926 [Form] Changed UrlType input type to text when default_protocol is not null (MatTheCat)
20+
* bug #29961 [Translation] Concatenated translation messages (Stadly)
21+
* bug #29920 [Debug][DebugClassLoader] Match more cases for final, deprecated and internal classes / methods extends (fancyweb)
22+
* bug #29863 [Security] Do not mix password_*() API with libsodium one (chalasr)
23+
* bug #29894 [DependencyInjection] the string "0" is a valid service identifier (xabbuh)
24+
* bug #29885 Update MimeType extensions (fabpot)
25+
* bug #29875 [TwigBridge] fix compatibility with Twig >= 2.6.1 (xabbuh)
26+
* bug #29873 [Debug] remove return type hint for PHP 5 compatibility (xabbuh)
27+
* bug #29837 Fix SwiftMailerHandler to support Monolog's latest reset functionality (Seldaek)
28+
* bug #29853 Revert "bug #29597 [DI] fix reporting bindings on overriden services as unused" (mmarynich)
29+
* bug #29833 [DebugClassLoader] expose proxyfied findFile() method (fancyweb)
30+
1031
* 4.1.10 (2019-01-06)
1132

1233
* bug #29494 [HttpFoundation] Fix request uri when it starts with double slashes (alquerci)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6363
private $requestStackSize = 0;
6464
private $resetServices = false;
6565

66-
const VERSION = '4.1.11-DEV';
66+
const VERSION = '4.1.11';
6767
const VERSION_ID = 40111;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
7070
const RELEASE_VERSION = 11;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
7272

7373
const END_OF_MAINTENANCE = '01/2019';
7474
const END_OF_LIFE = '07/2019';

0 commit comments

Comments
 (0)
0