8000 Merge pull request #26752 from fabpot/release-4.0.7 · symfony/symfony@42ef10b · GitHub
[go: up one dir, main page]

Skip to content

Commit 42ef10b

Browse files
authored
Merge pull request #26752 from fabpot/release-4.0.7
released v4.0.7
2 parents 8ac91cd + df782da commit 42ef10b

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

CHANGELOG-4.0.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,49 @@ in 4.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/v4.0.0...v4.0.1
99

10+
* 4.0.7 (2018-04-03)
11+
12+
* bug #26387 [Yaml] Fix regression when trying to parse multiline (antograssiot)
13+
* bug #26749 Add PHPDbg support to HTTP components (hkdobrev)
14+
* bug #26609 [Console] Fix check of color support on Windows (mlocati)
15+
* bug #26727 [HttpCache] Unlink tmp file on error (Chansig)
16+
* bug #26675 [HttpKernel] DumpDataCollector: do not flush when a dumper is provided (ogizanagi)
17+
* bug #26663 [TwigBridge] Fix rendering of currency by MoneyType (ro0NL)
18+
* bug #26595 [DI] Do not suggest writing an implementation when multiple exist (chalasr)
19+
* bug #26662 [DI] Fix hardcoded cache dir for warmups (nicolas-grekas)
20+
* bug #26677 Support phpdbg SAPI in Debug::enable() (hkdobrev)
21+
* bug #26600 [Routing] Fixed the importing of files using glob patterns that match multiple resources (skalpa)
22+
* bug #26589 [Ldap] cast to string when checking empty passwords (ismail1432)
23+
* bug #26626 [WebProfilerBundle] use the router to resolve file links (nicolas-grekas)
24+
* bug #26634 [DI] Cleanup remainings from autoregistration (nicolas-grekas)
25+
* bug #26635 [DI] Dont tell about autoregistration in strict autowiring mode (nicolas-grekas)
26+
* bug #26621 [Form] no type errors with invalid submitted data types (xabbuh)
27+
* bug #26612 [PHPunit] suite variable should be used (prisis)
28+
* bug #26337 [Finder] Fixed leading/trailing / in filename (lyrixx)
29+
* bug #26584 [TwigBridge] allow html5 compatible rendering of forms with null names (systemist)
30+
* bug #24401 [Form] Change datetime to datetime-local for HTML5 datetime input (pierredup)
31+
* bug #26513 [FrameworkBundle] Respect debug mode when warm up annotations (Strate)
32+
* bug #26370 [Security] added userChecker to SimpleAuthenticationProvider (i3or1s)
33+
* bug #26569 [BrowserKit] Fix cookie path handling when $domain is null (dunglas)
34+
* bug #26273 [Security][Profiler] Display the original expression in 'Access decision log' (lyrixx)
35+
* bug #26427 [DependencyInjection] fix regression when extending the Container class without a constructor (lsmith77)
36+
* bug #26562 [Bridge\PhpUnit] Cannot autoload class "\Symfony\Bridge\PhpUnit\SymfonyTestsListener" (Jake Bishop)
37+
* bug #26598 Fixes #26563 (open_basedir restriction in effect) (temperatur)
38+
* bug #26568 [Debug] Reset previous exception handler earlier to prevent infinite loop (nicolas-grekas)
39+
* bug #26590 Make sure form errors is valid HTML (Nyholm)
40+
* bug #26567 [DoctrineBridge] Don't rely on ClassMetadataInfo->hasField in DoctrineOrmTypeGuesser anymore (fancyweb)
41+
* feature #26408 Readd 'form_label_errors' block to disable errors on form labels (birkof)
42+
* bug #26591 [TwigBridge] Make sure we always render errors. Eventhough labels are disabled (Nyholm)
43+
* bug #26356 [FrameworkBundle] HttpCache is not longer abstract (lyrixx)
44+
* bug #26548 [DomCrawler] Change bad wording in ChoiceFormField::untick (dunglas)
45+
* bug #26482 [PhpUnitBridge] Ability to use different composer.json file (amcastror)
46+
* bug #26443 [Fix][HttpFoundation] Fix the updating of timestamp in the MemcachedSessionHandler (Alessandro Loffredo)
47+
* bug #26400 [Config] ReflectionClassResource check abstract class (andrey1s)
48+
* bug #26433 [DomCrawler] extract(): fix a bug when the attribute list is empty (dunglas)
49+
* bug #26041 Display the Welcome Page when there is no homepage defined (javiereguiluz)
50+
* bug #26452 [Intl] Load locale aliases to support alias fallbacks (jakzal)
51+
* bug #26450 [CssSelector] Fix CSS identifiers parsing - they can start with dash (jakubkulhan)
52+
1053
* 4.0.6 (2018-03-05)
1154

1255
* bug #26393 [DI] Skip resource tracking if disabled (chalasr)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6363
private $requestStackSize = 0;
6464
private $resetServices = false;
6565

66-
const VERSION = '4.0.7-DEV';
66+
const VERSION = '4.0.7';
6767
const VERSION_ID = 40007;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 0;
7070
const RELEASE_VERSION = 7;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
7272

7373
const END_OF_MAINTENANCE = '07/2018';
7474
const END_OF_LIFE = '01/2019';

0 commit comments

Comments
 (0)
0