8000 Release v4.0.1 by fabpot · Pull Request #25322 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Release v4.0.1 #25322

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
Dec 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
29 changes: 29 additions & 0 deletions CHANGELOG-4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@ 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.1 (2017-12-05)

* bug #25304 [Bridge/PhpUnit] Prefer $_SERVER['argv'] over $argv (ricknox)
* bug #25272 [SecurityBundle] fix setLogoutOnUserChange calls for context listeners (dmaicher)
* bug #25282 [DI] Register singly-implemented interfaces when doing PSR-4 discovery (nicolas-grekas)
* bug #25274 [Security] Adding a GuardAuthenticatorHandler alias (weaverryan)
* bug #25308 [FrameworkBundle] Fix a bug where a color tag will be shown when passing an antislash (Simperfit)
* bug #25278 Fix for missing whitespace control modifier in form layout (kubawerlos)
* bug #25306 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
* bug #25305 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
* bug #25236 [Form][TwigBridge] Fix collision between view properties and form fields (yceruto)
* bug #25312 [DI] Fix deep-inlining of non-shared refs (nicolas-grekas)
* bug #25309 [Yaml] parse newlines in quoted multiline strings (xabbuh)
* bug #25313 [DI] Fix missing unset leading to false-positive circular ref (nicolas-grekas)
* bug #25268 [DI] turn $private to protected in dumped container, to make cache:clear BC (nicolas-grekas)
* bug #25285 [DI] Throw an exception if Expression Language is not installed (sroze)
* bug #25241 [Yaml] do not eagerly filter comment lines (xabbuh)
* bug #25284 [DI] Cast ids to string, as done on 3.4 (nicolas-grekas, sroze)
* bug #25297 [Validator] Fixed the @Valid(groups={"group"}) against null exception case (vudaltsov)
* bug #25255 [Console][DI] Fail gracefully (nicolas-grekas)
* bug #25264 [DI] Trigger deprecation when setting a to-be-private synthetic service (nicolas-grekas)
* bug #25258 [link] Prevent warnings when running link with 2.7 (dunglas)
* bug #25244 [DI] Add missing deprecation when fetching private services from ContainerBuilder (nicolas-grekas)
* bug #24750 [Validator] ExpressionValidator should use OBJECT_TO_STRING (Simperfit)
* bug #25247 [DI] Fix false-positive circular exception (nicolas-grekas)
* bug #25226 [HttpKernel] Fix issue when resetting DumpDataCollector (Pierstoval)
* bug #25230 Use a more specific file for detecting the bridge (greg0ire)
* bug #25232 [WebProfilerBundle] [TwigBundle] Fix Profiler breaking XHTML pages (tistre)

* 4.0.0 (2017-11-30)

* bug #25220 [HttpFoundation] Add Session::isEmpty(), fix MockFileSessionStorage to behave like the native one (nicolas-grekas)
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.1-DEV';
const VERSION = '4.0.1';
const VERSION_ID = 40001;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 0;
const RELEASE_VERSION = 1;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

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