8000 Release v4.4.35 by fabpot · Pull Request #44242 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Release v4.4.35 #44242

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
Nov 24, 2021
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
7 changes: 7 additions & 0 deletions CHANGELOG-4.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ 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.35 (2021-11-24)

* security #cve-2021-41270 [Serializer] Use single quote to escape formulas (jderusse)
* bug #44232 [Cache] fix connecting to local Redis sockets (nicolas-grekas)
* bug #44204 [HttpClient] fix closing curl multi handle when destructing client (nicolas-grekas)
* bug #44208 [Process] exclude argv/argc from possible default env vars (nicolas-grekas)

* 4.4.34 (2021-11-22)

* bug #44188 [VarExporter] fix exporting declared but unset properties when __sleep() is implemented (nicolas-grekas)
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ The Symfony Connect username in parenthesis allows to get more information
- Tobias Schultze (tobion)
- Robin Chalas (chalas_r)
- Christophe Coevoet (stof)
- Wouter De Jong (wouterj)
- Jérémy DERUSSÉ (jderusse)
- Wouter De Jong (wouterj)
- Grégoire Pineau (lyrixx)
- Maxime Steinhausser (ogizanagi)
- Kévin Dunglas (dunglas)
Expand Down Expand Up @@ -58,9 +58,9 @@ The Symfony Connect username in parenthesis allows to get more information
- Diego Saint Esteben (dosten)
- Grégoire Paris (greg0ire)
- Alexandre Salomé (alexandresalome)
- Jérôme Tamarelle (gromnan)
- William Durand (couac)
- ornicar
- Jérôme Tamarelle (gromnan)
- Konstantin Myakshin (koc)
- Dany Maillard (maidmaid)
- Francis Besset (francisbesset)
Expand Down Expand Up @@ -116,11 +116,11 @@ The Symfony Connect username in parenthesis allows to get more information
- John Wards (johnwards)
- Tomas Norkūnas (norkunas)
- Baptiste Clavié (talus)
- HypeMC (hypemc)
- Antoine Hérault (herzult)
- Paráda József (paradajozsef)
- Alexandre Daubois (alexandre-daubois)
- Vincent Langlet (deviling)
- HypeMC (hypemc)
- Massimiliano Arione (garak)
- Arnaud Le Blanc (arnaud-lb)
- Przemysław Bogusz (przemyslaw-bogusz)
Expand Down Expand Up @@ -825,6 +825,7 @@ The Symfony Connect username in parenthesis allows to get more information
- Rodrigo Borrego Bernabé (rodrigobb)
- Emanuele Iannone
- Jörn Lang (j.lang)
- Petr Duda (petrduda)
- Marcos Rezende (rezehnde)
- Denis Gorbachev (starfall)
- Peter van Dommelen
Expand Down Expand Up @@ -1350,7 +1351,6 @@ The Symfony Connect username in parenthesis allows to get more information
- Simon Leblanc (leblanc_simon)
- Matthieu Mota (matthieumota)
- Mikhail Prosalov (mprosalov)
- Petr Duda (petrduda)
- Ronny López (ronnylt)
- abdul malik ikhsan (samsonasik)
- Henry Snoek (snoek09)
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.35-DEV';
public const VERSION = '4.4.35';
public const VERSION_ID = 40435;
public const MAJOR_VERSION = 4;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 35;
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
0