Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f8ac64c

Browse filesBrowse files
authored
Merge pull request symfony#29487 from fabpot/release-2.8.49
released v2.8.49
2 parents c8389f7 + adeee13 commit f8ac64c
Copy full SHA for f8ac64c

File tree

Expand file treeCollapse file tree

2 files changed

+8
-3
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+8
-3
lines changed

‎CHANGELOG-2.8.md

Copy file name to clipboardExpand all lines: CHANGELOG-2.8.md
+5Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ in 2.8 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/v2.8.0...v2.8.1
99

10+
* 2.8.49 (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+
1015
* 2.8.48 (2018-11-26)
1116

1217
* bug #28917 [DoctrineBridge] catch errors while converting to db values in data collector (alekitto)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '2.8.48';
63-
const VERSION_ID = 20848;
62+
const VERSION = '2.8.49';
63+
const VERSION_ID = 20849;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
66-
const RELEASE_VERSION = 48;
66+
const RELEASE_VERSION = 49;
6767
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.