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 93313a0

Browse filesBrowse files
authored
Merge pull request #36269 from fabpot/release-5.0.7
released v5.0.7
2 parents a92ffff + 7dbd2e5 commit 93313a0
Copy full SHA for 93313a0

File tree

Expand file treeCollapse file tree

2 files changed

+14
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+14
-2
lines changed

‎CHANGELOG-5.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.0.md
+12Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ in 5.0 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/v5.0.0...v5.0.1
99

10+
* 5.0.7 (2020-03-30)
11+
12+
* security #cve-2020-5255 [HttpFoundation] Do not set the default Content-Type based on the Accept header (yceruto)
13+
* security #cve-2020-5275 [Security] Fix access_control behavior with unanimous decision strategy (chalasr)
14+
* bug #36262 [DI] fix generating TypedReference from PriorityTaggedServiceTrait (nicolas-grekas)
15+
* bug #36252 [Security/Http] Allow setting cookie security settings for delete_cookies (wouterj)
16+
* bug #36261 [FrameworkBundle] revert to legacy wiring of the session when circular refs are detected (nicolas-grekas)
17+
* bug #36259 [DomCrawler] Fix BC break in assertions breaking Panther (dunglas)
18+
* bug #36181 [BrowserKit] fixed missing post request parameters in file uploads (codebay)
19+
* bug #36216 [Validator] Assert Valid with many groups (phucwan91)
20+
* bug #36222 [Console] Fix OutputStream for PHP 7.4 (guillbdx)
21+
1022
* 5.0.6 (2020-03-27)
1123

1224
* bug #36169 [HttpKernel] fix locking for PHP 7.4+ (nicolas-grekas)

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6868

6969
private static $freshCache = [];
7070

71-
const VERSION = '5.0.7-DEV';
71+
const VERSION = '5.0.7';
7272
const VERSION_ID = 50007;
7373
const MAJOR_VERSION = 5;
7474
const MINOR_VERSION = 0;
7575
const RELEASE_VERSION = 7;
76-
const EXTRA_VERSION = 'DEV';
76+
const EXTRA_VERSION = '';
7777

7878
const END_OF_MAINTENANCE = '07/2020';
7979
const END_OF_LIFE = '07/2020';

0 commit comments

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