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 fbe1ee9

Browse filesBrowse files
authored
Merge pull request #37247 from fabpot/release-5.0.10
released v5.0.10
2 parents 7b6ffda + 3b4cc39 commit fbe1ee9
Copy full SHA for fbe1ee9

File tree

Expand file treeCollapse file tree

2 files changed

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

2 files changed

+24
-2
lines changed

‎CHANGELOG-5.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.0.md
+22Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ 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.10 (2020-06-12)
11+
12+
* bug #37227 [DependencyInjection][CheckTypeDeclarationsPass] Handle unresolved parameters pointing to environment variables (fancyweb)
13+
* bug #37103 [Form] switch the context when validating nested forms (xabbuh)
14+
* bug #37182 [HttpKernel] Fix regression where Store does not return response body correctly (mpdude)
15+
* bug #37193 [DependencyInjection][CheckTypeDeclarationsPass] Always resolve parameters (fancyweb)
16+
* bug #37191 [HttpClient] fix offset computation for data chunks (nicolas-grekas)
17+
* bug #37177 [Ldap] fix refreshUser() ignoring extra_fields (arkste)
18+
* bug #37181 [Mailer] Remove an internal annot (fabpot)
19+
* bug #36913 [FrameworkBundle] fix type annotation on ControllerTrait::addFlash() (ThomasLandauer)
20+
* bug #37162 [Mailer] added the reply-to addresses to the API SES transport request. (ribeiropaulor)
21+
* bug #37167 [Mime] use fromString when creating a new Address (fabpot)
22+
* bug #37169 [Cache] fix forward compatibility with Doctrine DBAL 3 (xabbuh)
23+
* bug #37159 [Mailer] Fixed generator bug when creating multiple transports using Transport::fromDsn (atailouloute)
24+
* bug #37048 [HttpClient] fix monitoring timeouts when other streams are active (nicolas-grekas)
25+
* bug #37085 [Form] properly cascade validation to child forms (xabbuh)
26+
* bug #37095 [PhpUnitBridge] Fix undefined index when output of "composer show" cannot be parsed (nicolas-grekas)
27+
* bug #37092 [PhpUnitBridge] fix undefined var on version 3.4 (nicolas-grekas)
28+
* bug #37065 [HttpClient] Throw JsonException instead of TransportException on empty response in Response::toArray() (jeroennoten)
29+
* bug #37077 [WebProfilerBundle] Move ajax clear event listener initialization on loadToolbar (Bruno BOUTAREL)
30+
* bug #37049 [Serializer] take into account the context when preserving empty array objects (xabbuh)
31+
1032
* 5.0.9 (2020-05-31)
1133

1234
* bug #37008 [Security] Fixed AbstractToken::hasUserChanged() (wouterj)

‎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.10-DEV';
71+
const VERSION = '5.0.10';
7272
const VERSION_ID = 50010;
7373
const MAJOR_VERSION = 5;
7474
const MINOR_VERSION = 0;
7575
const RELEASE_VERSION = 10;
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.