8000 Merge pull request #45653 from fabpot/release-4.4.39 · symfony/symfony@0ab468e · GitHub
[go: up one dir, main page]

Skip to content

Commit 0ab468e

Browse files
authored
Merge pull request #45653 from fabpot/release-4.4.39
released v4.4.39
2 parents 3cea8e7 + c827217 commit 0ab468e

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
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.39 (2022-03-05)
11+
12+
* bug #45631 [HttpFoundation] Fix PHP 8.1 deprecation in `Response::isNotModified` (HypeMC)
13+
* bug #45610 [HttpKernel] Guard against bad profile data (nicolas-grekas)
14+
* bug #45532 Fix deprecations on PHP 8.2 (nicolas-grekas)
15+
* bug #45595 [FrameworkBundle] Fix resetting container between tests (nicolas-grekas)
16+
* bug #45585 [HttpClient] fix checking for unset property on PHP <= 7.1.4 (nicolas-grekas)
17+
* bug #45583 [WebProfilerBundle] Fixes HTML syntax regression introduced by #44570 (xavismeh)
18+
1019
* 4.4.38 (2022-02-28)
1120

1221
* bug #44570 [WebProfilerBundle] add nonces to profiler (garak)

CONTRIBUTORS.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ The Symfony Connect username in parenthesis allows to get more information
7878
- Henrik Bjørnskov (henrikbjorn)
7979
- Antoine M (amakdessi)
8080
- Miha Vrhovnik
81-
- Diego Saint Esteben (dii3g0)
8281
- Mathieu Piot (mpiot)
82+
- Diego Saint Esteben (dii3g0)
8383
- Konstantin Kudryashov (everzet)
8484
- Vladimir Reznichenko (kalessil)
8585
- Bilal Amarni (bamarni)
@@ -110,13 +110,13 @@ The Symfony Connect username in parenthesis allows to get more information
110110
- Luis Cordova (cordoval)
111111
- Daniel Holmes (dholmes)
112112
- Sebastiaan Stok (sstok)
113+
- Alexandre Daubois (alexandre-daubois)
113114
- HypeMC (hypemc)
114115
- Toni Uebernickel (havvg)
115116
- Bart van den Burg (burgov)
116117
- Jordan Alliot (jalliot)
117118
- John Wards (johnwards)
118119
- Tomas Norkūnas (norkunas)
119-
- Alexandre Daubois (alexandre-daubois)
120120
- Julien Falque (julienfalque)
121121
- Baptiste Clavié (talus)
122122
- Massimiliano Arione (garak)
@@ -2723,6 +2723,7 @@ The Symfony Connect username in parenthesis allows to get more information
27232723
- Cyrille Jouineau (tuxosaurus)
27242724
- Vladimir Chernyshev (volch)
27252725
- Wim Godden (wimg)
2726+
- Xav` (xavismeh)
27262727
- Yorkie Chadwick (yorkie76)
27272728
- Maxime Aknin (3m1x4m)
27282729
- Geordie

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-
public const VERSION = '4.4.39-DEV';
79+
public const VERSION = '4.4.39';
8080
public const VERSION_ID = 40439;
8181
public const MAJOR_VERSION = 4;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 39;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

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

0 commit comments

Comments
 (0)
0