8000 Release v5.1.5 by fabpot · Pull Request #38029 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Release v5.1.5 #38029

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
Sep 2, 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
13 changes: 13 additions & 0 deletions CHANGELOG-5.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ 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.5 (2020-09-02)

* security #cve-2020-15094 Remove headers with internal meaning from HttpClient responses (mpdude)
* bug #38024 [Console] Fix undefined index for inconsistent command name definition (chalasr)
* bug #38023 [DI] fix inlining of non-shared services (nicolas-grekas)
* bug #38022 Missed AbstractArgument (a-menshchikov)
* bug #38020 [PhpUnitBridge] swallow deprecations (xabbuh)
* bug #37961 [Mailer] Fixed 'verify_peer' option in mailer DSN being ignored (SnakePin)
* bug #38010 [Cache] Psr16Cache does not handle Proxy cache items (alex-dev)
* bug #37937 [Serializer] fixed fix encoding of cache keys with anonymous classes (michaelzangerle)
* bug #38002 [Validator] Fix PhpUnitBridge version constraint (derrabus)
* bug #38001 Fix symfony/amazon-mailer constraint (Michał Jusięga)

* 5.1.4 (2020-08-31)

* bug #37966 [HttpClient][MockHttpClient][DX] Throw when the response factory callable does not return a valid response (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.5-DEV';
const VERSION = '5.1.5';
const VERSION_ID = 50105;
const MAJOR_VERSION = 5;
const MINOR_VERSION = 1;
const RELEASE_VERSION = 5;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

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