Skip to content

Commit e753e2e

Browse files
authored
Merge pull request #44244 from fabpot/release-5.4.0-RC1
released v5.4.0-RC1
2 parents 9754c3b + 7fe5a0a commit e753e2e

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGELOG-5.4.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ in 5.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/v5.4.0...v5.4.1
99

10+
* 5.4.0-RC1 (2021-11-24)
11+
12+
* security #cve-2021-41268 [SecurityBundle] Default signature_properties to the previous behavior (wouterj)
13+
* security #cve-2021-41267 [HttpKernel] Fix missing extra trusted header in sub-request (jderusse)
14+
* security #cve-2021-41270 [Serializer] Use single quote to escape formulas (jderusse)
15+
* bug #44230 [Console] Add Suggestion class for more advanced completion suggestion (wouterj)
16+
* bug #44232 [Cache] fix connecting to local Redis sockets (nicolas-grekas)
17+
* bug #44204 [HttpClient] fix closing curl multi handle when destructing client (nicolas-grekas)
18+
* bug #44208 [Process] exclude argv/argc from possible default env vars (nicolas-grekas)
19+
* bug #44188 [VarExporter] fix exporting declared but unset properties when __sleep() is implemented (nicolas-grekas)
20+
* bug #44176 [Console] Default ansi option to null (jderusse)
21+
* bug #44179 [WebProfilerBundle] Fix JS error when toolbar is reloaded (jderusse)
22+
* bug #44172 [Security] Guard is incompatible with Symfony 6 (derrabus)
23+
* bug #44119 [HttpClient][Mime] Add correct IDN flags for IDNA2008 compliance (j-bernard)
24+
* bug #44139 [WebProfilerBundle] Prevent installation of incompatible mailer component versions (Anne-Julia Seitz)
25+
* bug #43917 Allow autodetecting mapping type for any object (franmomu)
26+
* bug #44131 [Yaml] properly parse quoted strings tagged with !!str (xabbuh)
27+
* bug #42323 [TwigBridge] do not merge label classes into expanded choice labels (xabbuh)
28+
1029
* 5.4.0-BETA3 (2021-11-18)
1130

1231
* feature #44125 Add a setter on DateTimeNormalizer to change the default context at runtime (Seldaek)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static $freshCache = [];
8080

81-
public const VERSION = '5.4.0-DEV';
81+
public const VERSION = '5.4.0-RC1';
8282
public const VERSION_ID = 50400;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
8585
public const RELEASE_VERSION = 0;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = 'RC1';
8787

8888
public const END_OF_MAINTENANCE = '11/2024';
8989
public const END_OF_LIFE = '11/2025';

0 commit comments

Comments
 (0)