Skip to content

Commit

Permalink
Merge pull request #34349 from fabpot/release-2.8.52
Browse files Browse the repository at this point in the history
released v2.8.52
  • Loading branch information
fabpot committed Nov 13, 2019
2 parents af70ccb + 44dbe04 commit 88f3ef6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG-2.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ in 2.8 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.8.0...v2.8.1

* 2.8.52 (2019-11-13)

* security #cve-2019-18888 [HttpFoundation] fix guessing mime-types of files with leading dash (nicolas-grekas)
* security #cve-2019-18887 [HttpKernel] Use constant time comparison in UriSigner (stof)

* 2.8.51 (2019-04-17)

* no changes

* 2.8.50 (2019-04-17)

* security #cve-2019-10910 [DI] Check service IDs are valid (nicolas-grekas)
Expand Down
6 changes: 3 additions & 3 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;

const VERSION = '2.8.51';
const VERSION_ID = 20851;
const VERSION = '2.8.52';
const VERSION_ID = 20852;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 8;
const RELEASE_VERSION = 51;
const RELEASE_VERSION = 52;
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '11/2018';
Expand Down

0 comments on commit 88f3ef6

Please sign in to comment.