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

Skip to content

Release v4.0.8 #26849

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
Apr 6, 2018
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 8000
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG-4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ 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.8 (2018-04-06)

* bug #26802 [Security] register custom providers on ExpressionLanguage directly (dmaicher)
* bug #26794 [PhpUnitBridge] Catch deprecation error handler (cvilleger)
* bug #26788 [Security] Load the user before pre/post auth checks when needed (chalasr)
* bug #26792 [Routing] Fix throwing NoConfigurationException instead of 405 (nicolas-grekas)
* bug #26774 [SecurityBundle] Add missing argument to security.authentication.provider.simple (i3or1s, chalasr)
* bug #26763 [Finder] Remove duplicate slashes in filenames (helhum)
* bug #26758 [WebProfilerBundle][HttpKernel] Make FileLinkFormatter URL format generation lazy (nicolas-grekas)

* 4.0.7 (2018-04-03)

* bug #26387 [Yaml] Fix regression when trying to parse multiline (antograssiot)
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.8-DEV';
const VERSION = '4.0.8';
const VERSION_ID = 40008;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 0;
const RELEASE_VERSION = 8;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

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