Skip to content

Release v5.1.7 #38406

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
Oct 4, 2020
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-5.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ in 5.1 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/v5.1.0...v5.1.1

* 5.1.7 (2020-10-04)

* bug #38396 Handle consecutive supports() calls in the RememberMeAuthenticator (wouterj)
* bug #36291 [Lock] Fix StoreFactory to accept same DSN syntax as AbstractAdapter (Jontsa)
* bug #38390 [Serializer][Minor] Fix circular reference exception message (bad limit displayed) (l-vo)
* bug #38388 [HttpClient] Always "buffer" empty responses (nicolas-grekas)
* bug #38384 [PhpUnitBridge] Fix Deprecation file when it comes from the TestsListener (fancyweb)
* bug #38380 [Form] propagate validation groups to subforms (johanderuijter, xabbuh)
* bug #38377 Ignore more deprecations for Mockery mocks (fancyweb)
* bug #38375 [HttpClient] fix using proxies with NativeHttpClient (nicolas-grekas)
* bug #38372 [Routing] fix using !important and defaults/reqs in inline route definitions (nicolas-grekas)
* bug #38373 [ErrorHandler][DebugClassLoader] Do not check Mockery mocks classes (fancyweb)
* bug #38368 [HttpClient] Fix using https with proxies (bohanyang)
* bug #38350 [TwigBundle] Only remove kernel exception listener if twig is used (dmolineus)
* bug #38360 [BrowserKit] Cookie expiration at current timestamp (iquito)
* bug #38357 [DI] fix dumping non-shared lazy services (nicolas-grekas)
* bug #38358 [Messenger] Fix redis connection error message (alexander-schranz)
* bug #38343 Revert "bug #38063 [FrameworkBundle] generate preload.php in src/ to make opcache.preload predictable" (nicolas-grekas)
* bug #38348 [FrameworkBundle] Add Mailjet definition (michaelKaefer)
* bug #38336 [PhpUnitBridge] Fixed class_alias() for PHPUnit\Framework\Error\Error (stevegrunwell)

* 5.1.6 (2020-09-27)

* bug #38291 [OptionsResolver] Fix deprecation message access (fancyweb)
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 @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl

private static $freshCache = [];

const VERSION = '5.1.7-DEV';
const VERSION = '5.1.7';
const VERSION_ID = 50107;
const MAJOR_VERSION = 5;
const MINOR_VERSION = 1;
const RELEASE_VERSION = 7;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '01/2021';
const END_OF_LIFE = '01/2021';
Expand Down