8000 Merge pull request #24832 from fabpot/release-4.0.0-BETA3 · symfony/symfony@3f38d52 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f38d52

Browse files
authored
Merge pull request #24832 from fabpot/release-4.0.0-BETA3
released v4.0.0-BETA3
2 parents 8e5b3b1 + e0f9306 commit 3f38d52

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG-4.0.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ 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.0-BETA3 (2017-11-05)
11+
12+
* bug #24531 [HttpFoundation] Fix forward-compat of NativeSessionStorage with PHP 7.2 (sroze)
13+
* bug #24828 [DI] Fix the "almost-circular refs" fix (nicolas-grekas)
14+
* bug #24665 Fix dump panel hidden when closing a dump (julienfalque)
15+
* bug #24802 [TwigBridge] [Bootstrap 4] Fix hidden errors (ostrolucky)
16+
* bug #24816 [Serializer] Fix extra attributes when no group specified (ogizanagi)
17+
* bug #24822 [DI] Fix "almost-circular" dependencies handling (nicolas-grekas)
18+
* bug #24821 symfony/form auto-enables symfony/validator, even when not present (weaverryan)
19+
* bug #24824 [FrameworkBundle][Config] fix: do not add resource checkers for no-debug (dmaicher)
20+
* bug #24814 [Intl] Make intl-data tests pass and save language aliases again (jakzal)
21+
* bug #24810 [Serializer] readd default argument value (xabbuh)
22+
* bug #24809 [Config] Fix dump of config references for deprecated nodes (chalasr)
23+
* bug #24796 [PhpUnitBridge] Fixed fatal error in CoverageListener when something goes wrong in Test::setUpBeforeClass (lyrixx)
24+
* bug #24774 [HttpKernel] Let the storage manage the session starts (sroze)
25+
* bug #24735 [VarDumper] fix trailling comma when dumping an exception (Simperfit)
26+
* bug #24770 [Validator] Fix TraceableValidator is reset on data collector instantiation (ogizanagi)
27+
* bug #24764 [HttpFoundation] add Early Hints to Reponse to fix test (Simperfit)
28+
* bug #24759 Removes \n or space when $context/$extra are empty (kirkmadera)
29+
* bug #24758 Throwing exception if redis and predis unavailable (aequasi)
30+
1031
* 4.0.0-BETA2 (2017-10-30)
1132

1233
* bug #24728 [Bridge\Twig] fix bootstrap checkbox_row to render properly & remove spaceless (arkste)

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.0-DEV';
66+
const VERSION = '4.0.0-BETA3';
6767
const VERSION_ID = 40000;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 0;
7070
const RELEASE_VERSION = 0;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = 'BETA3';
7272

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

0 commit comments

Comments
 (0)
0