8000 Merge pull request #38028 from fabpot/release-4.4.13 · lucasaba/symfony@9b83140 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b83140

Browse files
authored
Merge pull request symfony#38028 from fabpot/release-4.4.13
released v4.4.13
2 parents 55f451e + 7982e49 commit 9b83140

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG-4.4.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ in 4.4 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/v4.4.0...v4.4.1
99

10+
* 4.4.13 (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 #38020 [PhpUnitBridge] swallow deprecations (xabbuh)
16+
* bug #38010 [Cache] Psr16Cache does not handle Proxy cache items (alex-dev)
17+
* bug #37937 [Serializer] fixed fix encoding of cache keys with anonymous classes (michaelzangerle)
18+
1019
* 4.4.12 (2020-08-31)
1120

1221
* 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
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676

7777
private static $freshCache = [];
7878

79-
const VERSION = '4.4.13-DEV';
79+
const VERSION = '4.4.13';
8080
const VERSION_ID = 40413;
8181
const MAJOR_VERSION = 4;
8282
const MINOR_VERSION = 4;
8383
const RELEASE_VERSION = 13;
84-
const EXTRA_VERSION = 'DEV';
84+
const EXTRA_VERSION = '';
8585

8686
const END_OF_MAINTENANCE = '11/2022';
8787
const END_OF_LIFE = '11/2023';

0 commit comments

Comments
 (0)
0