Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Release v4.4.39 #45653

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 3 commits into from
Mar 5, 2022
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
9 changes: 9 additions & 0 deletions CHANGELOG-4.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ in 4.4 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/v4.4.0...v4.4.1

* 4.4.39 (2022-03-05)

* bug #45631 [HttpFoundation] Fix PHP 8.1 deprecation in `Response::isNotModified` (HypeMC)
* bug #45610 [HttpKernel] Guard against bad profile data (nicolas-grekas)
* bug #45532 Fix deprecations on PHP 8.2 (nicolas-grekas)
* bug #45595 [FrameworkBundle] Fix resetting container between tests (nicolas-grekas)
* bug #45585 [HttpClient] fix checking for unset property on PHP <= 7.1.4 (nicolas-grekas)
* bug #45583 [WebProfilerBundle] Fixes HTML syntax regression introduced by #44570 (xavismeh)

* 4.4.38 (2022-02-28)

* bug #44570 [WebProfilerBundle] add nonces to profiler (garak)
Expand Down
5 changes: 3 additions & 2 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ The Symfony Connect username in parenthesis allows to get more information
- Henrik Bjørnskov (henrikbjorn)
- Antoine M (amakdessi)
- Miha Vrhovnik
- Diego Saint Esteben (dii3g0)
- Mathieu Piot (mpiot)
- Diego Saint Esteben (dii3g0)
- Konstantin Kudryashov (everzet)
- Vladimir Reznichenko (kalessil)
- Bilal Amarni (bamarni)
Expand Down Expand Up @@ -110,13 +110,13 @@ The Symfony Connect username in parenthesis allows to get more information
- Luis Cordova (cordoval)
- Daniel Holmes (dholmes)
- Sebastiaan Stok (sstok)
- Alexandre Daubois (alexandre-daubois)
- HypeMC (hypemc)
- Toni Uebernickel (havvg)
- Bart van den Burg (burgov)
- Jordan Alliot (jalliot)
- John Wards (johnwards)
- Tomas Norkūnas (norkunas)
- Alexandre Daubois (alexandre-daubois)
- Julien Falque (julienfalque)
- Baptiste Clavié (talus)
- Massimiliano Arione (garak)
Expand Down Expand Up @@ -2723,6 +2723,7 @@ The Symfony Connect username in parenthesis allows to get more information
- Cyrille Jouineau (tuxosaurus)
- Vladimir Chernyshev (volch)
- Wim Godden (wimg)
- Xav` (xavismeh)
- Yorkie Chadwick (yorkie76)
- Maxime Aknin (3m1x4m)
- Geordie
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 @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl

private static $freshCache = [];

public const VERSION = '4.4.39-DEV';
public const VERSION = '4.4.39';
public const VERSION_ID = 40439;
public const MAJOR_VERSION = 4;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 39;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '11/2022';
public const END_OF_LIFE = '11/2023';
Expand Down