8000 Merge pull request #29492 from fabpot/release-4.1.9 · shdev/symfony@9993cdc · GitHub
[go: up one dir, main page]

Skip to content

Commit 9993cdc

Browse files
authored
Merge pull request symfony#29492 from fabpot/release-4.1.9
released v4.1.9
2 parents 3d664a6 + c48d883 commit 9993cdc

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG-4.1.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ 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.9 (2018-12-06)
11+
12+
* security #cve-2018-19790 [Security\Http] detect bad redirect targets using backslashes (xabbuh)
13+
* security #cve-2018-19789 [Form] Filter file uploads out of regular form types (nicolas-grekas)
14+
* bug #29436 [Cache] Fixed Memcached adapter doClear()to call flush() (raitocz)
15+
* bug #29441 [Routing] ignore trailing slash for non-GET requests (nicolas-grekas)
16+
* bug #29444 [Workflow] Fixed BC break for Workflow metadata (lyrixx)
17+
* bug #29432 [DI] dont inline when lazy edges are found (nicolas-grekas)
18+
* bug #29413 [Serializer] fixed DateTimeNormalizer to maintain microseconds when a different timezone required (rvitaliy)
19+
* bug #29424 [Routing] fix taking verb into account when redirecting (nicolas-grekas)
20+
* bug #29414 [DI] Fix dumping expressions accessing single-use private services (chalasr)
21+
* bug #29375 [Validator] Allow `ConstraintViolation::__toString()` to expose codes that are not null or emtpy strings (phansys)
22+
* bug #29376 [EventDispatcher] Fix eventListener wrapper loop in TraceableEventDispatcher (jderusse)
23+
* bug #29386 undeprecate the single-colon notation for controllers (fbourigault)
24+
* bug #29393 [DI] fix edge case in InlineServiceDefinitionsPass (nicolas-grekas)
25+
* bug #29380 [Routing] fix greediness of trailing slash (nicolas-grekas)
26+
* bug #29343 [Form] Handle all case variants of "nan" when parsing a number (mwhudson, xabbuh)
27+
* bug #29373 [Routing] fix trailing slash redirection (nicolas-grekas)
28+
* bug #29355 [PropertyAccess] calculate cache keys for property setters depending on the value (xabbuh)
29+
* bug #29369 [DI] fix combinatorial explosion when analyzing the service graph (nicolas-grekas)
30+
* bug #29349 [Debug] workaround opcache bug mutating "$this" !?! (nicolas-grekas)
31+
1032
* 4.1.8 (2018-11-26)
1133

1234
* bug #29318 [Console] Move back root exception to stack trace in verbose mode (chalasr)

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.9-DEV';
66+
const VERSION = '4.1.9';
6767
const VERSION_ID = 40109;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
7070
const RELEASE_VERSION = 9;
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