8000 Release v4.0.0-BETA3 by fabpot · Pull Request #24832 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Release v4.0.0-BETA3 #24832

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 5, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG-4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ in 4.0 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.0.0...v4.0.1

* 4.0.0-BETA3 (2017-11-05)

* bug #24531 [HttpFoundation] Fix forward-compat of NativeSessionStorage with PHP 7.2 (sroze)
* bug #24828 [DI] Fix the "almost-circular refs" fix (nicolas-grekas)
* bug #24665 Fix dump panel hidden when closing a dump (julienfalque)
* bug #24802 [TwigBridge] [Bootstrap 4] Fix hidden errors (ostrolucky)
* bug #24816 [Serializer] Fix extra attributes when no group specified (ogizanagi)
* bug #24822 [DI] Fix "almost-circular" dependencies handling (nicolas-grekas)
* bug #24821 symfony/form auto-enables symfony/validator, even when not present (weaverryan)
* bug #24824 [FrameworkBundle][Config] fix: do not add resource checkers for no-debug (dmaicher)
* bug #24814 [Intl] Make intl-data tests pass and save language aliases again (jakzal)
* bug #24810 [Serializer] readd default argument value (xabbuh)
* bug #24809 [Config] Fix dump of config references for deprecated nodes (chalasr)
* bug #24796 [PhpUnitBridge] Fixed fatal error in CoverageListener when something goes wrong in Test::setUpBeforeClass (lyrixx)
* bug #24774 [HttpKernel] Let the storage manage the session starts (sroze)
* bug #24735 [VarDumper] fix trailling comma when dumping an exception (Simperfit)
* bug #24770 [Validator] Fix TraceableValidator is reset on data collector instantiation (ogizanagi)
* bug #24764 [HttpFoundation] add Early Hints to Reponse to fix test (Simperfit)
* bug #24759 Removes \n or space when $context/$extra are empty (kirkmadera)
* bug #24758 Throwing exception if redis and predis unavailable (aequasi)

* 4.0.0-BETA2 (2017-10-30)

* bug #24728 [Bridge\Twig] fix bootstrap checkbox_row to render properly & remove spaceless (arkste)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private $requestStackSize = 0;
private $resetServices = false;

const VERSION = '4.0.0-DEV';
const VERSION = '4.0.0-BETA3';
const VERSION_ID = 40000;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 0;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = 'BETA3';

const END_OF_MAINTENANCE = '07/2018';
const END_OF_LIFE = '01/2019';
Expand Down
0