Skip to content

Commit 7b0ca3a

Browse files
authored
Merge pull request symfony#34351 from fabpot/release-4.2.12
released v4.2.12
2 parents 5ac0763 + 8e62509 commit 7b0ca3a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG-4.2.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ in 4.2 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.2.0...v4.2.1
99

10+
* 4.2.12 (2019-11-13)
11+
12+
* security #cve-2019-18886 [Security\Core] throw AccessDeniedException when switch user fails (nicolas-grekas)
13+
* security #cve-2019-18889 [Cache] forbid serializing AbstractAdapter and TagAwareAdapter instances (nicolas-grekas)
14+
* security #cve-2019-11325 [VarExporter] fix exporting some strings (nicolas-grekas)
15+
* security #cve-2019-18888 [HttpFoundation] fix guessing mime-types of files with leading dash (nicolas-grekas)
16+
* security #cve-2019-18887 [HttpKernel] Use constant time comparison in UriSigner (stof)
17+
1018
* 4.2.11 (2019-07-28)
1119

1220
* bug #32760 [HttpKernel] clarify error handler restoring process (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
private $requestStackSize = 0;
7474
private $resetServices = false;
7575

76-
const VERSION = '4.2.12-DEV';
76+
const VERSION = '4.2.12';
7777
const VERSION_ID = 40212;
7878
const MAJOR_VERSION = 4;
7979
const MINOR_VERSION = 2;
8080
const RELEASE_VERSION = 12;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

8383
const END_OF_MAINTENANCE = '07/2019';
8484
const END_OF_LIFE = '01/2020';

0 commit comments

Comments
 (0)