Skip to content

Commit 8f5a6b9

Browse files
authored
Merge pull request symfony#44242 from fabpot/release-4.4.35
released v4.4.35
2 parents 3379d3e + 9ef799c commit 8f5a6b9

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

CHANGELOG-4.4.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ 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.35 (2021-11-24)
11+
12+
* security #cve-2021-41270 [Serializer] Use single quote to escape formulas (jderusse)
13+
* bug #44232 [Cache] fix connecting to local Redis sockets (nicolas-grekas)
14+
* bug #44204 [HttpClient] fix closing curl multi handle when destructing client (nicolas-grekas)
15+
* bug #44208 [Process] exclude argv/argc from possible default env vars (nicolas-grekas)
16+
1017
* 4.4.34 (2021-11-22)
1118

1219
* bug #44188 [VarExporter] fix exporting declared but unset properties when __sleep() is implemented (nicolas-grekas)

CONTRIBUTORS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ The Symfony Connect username in parenthesis allows to get more information
1212
- Tobias Schultze (tobion)
1313
- Robin Chalas (chalas_r)
1414
- Christophe Coevoet (stof)
15-
- Wouter De Jong (wouterj)
1615
- Jérémy DERUSSÉ (jderusse)
16+
- Wouter De Jong (wouterj)
1717
- Grégoire Pineau (lyrixx)
1818
- Maxime Steinhausser (ogizanagi)
1919
- Kévin Dunglas (dunglas)
@@ -58,9 +58,9 @@ The Symfony Connect username in parenthesis allows to get more information
5858
- Diego Saint Esteben (dosten)
5959
- Grégoire Paris (greg0ire)
6060
- Alexandre Salomé (alexandresalome)
61+
- Jérôme Tamarelle (gromnan)
6162
- William Durand (couac)
6263
- ornicar
63-
- Jérôme Tamarelle (gromnan)
6464
- Konstantin Myakshin (koc)
6565
- Dany Maillard (maidmaid)
6666
- Francis Besset (francisbesset)
@@ -116,11 +116,11 @@ The Symfony Connect username in parenthesis allows to get more information
116116
- John Wards (johnwards)
117117
- Tomas Norkūnas (norkunas)
118118
- Baptiste Clavié (talus)
119+
- HypeMC (hypemc)
119120
- Antoine Hérault (herzult)
120121
- Paráda József (paradajozsef)
121122
- Alexandre Daubois (alexandre-daubois)
122123
- Vincent Langlet (deviling)
123-
- HypeMC (hypemc)
124124
- Massimiliano Arione (garak)
125125
- Arnaud Le Blanc (arnaud-lb)
126126
- Przemysław Bogusz (przemyslaw-bogusz)
@@ -825,6 +825,7 @@ The Symfony Connect username in parenthesis allows to get more information
825825
- Rodrigo Borrego Bernabé (rodrigobb)
826826
- Emanuele Iannone
827827
- Jörn Lang (j.lang)
828+
- Petr Duda (petrduda)
828829
- Marcos Rezende (rezehnde)
829830
- Denis Gorbachev (starfall)
830831
- Peter van Dommelen
@@ -1350,7 +1351,6 @@ The Symfony Connect username in parenthesis allows to get more information
13501351
- Simon Leblanc (leblanc_simon)
13511352
- Matthieu Mota (matthieumota)
13521353
- Mikhail Prosalov (mprosalov)
1353-
- Petr Duda (petrduda)
13541354
- Ronny López (ronnylt)
13551355
- abdul malik ikhsan (samsonasik)
13561356
- Henry Snoek (snoek09)

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.35-DEV';
79+
public const VERSION = '4.4.35';
8080
public const VERSION_ID = 40435;
8181
public const MAJOR_VERSION = 4;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 35;
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)