8000 Merge pull request #38029 from fabpot/release-5.1.5 · JohJohan/symfony@31b6a95 · GitHub
[go: up one dir, main page]

Skip to content

Commit 31b6a95

Browse files
authored
Merge pull request symfony#38029 from fabpot/release-5.1.5
released v5.1.5
2 parents 6f15fbf + cc33352 commit 31b6a95

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG-5.1.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ in 5.1 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.1.0...v5.1.1
99

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

1225
* bug #37966 [HttpClient][MockHttpClient][DX] Throw when the response factory callable does not return a valid response (fancyweb)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373

7474
private static $freshCache = [];
7575

76-
const VERSION = '5.1.5-DEV';
76+
const VERSION = '5.1.5';
7777
const VERSION_ID = 50105;
7878
const MAJOR_VERSION = 5;
7979
const MINOR_VERSION = 1;
8080
const RELEASE_VERSION = 5;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

8383
const END_OF_MAINTENANCE = '01/2021';
8484
const END_OF_LIFE = '01/2021';

0 commit comments

Comments
 (0)
0