Skip to content

Commit 5216698

Browse files
authored
Merge pull request symfony#40364 from fabpot/release-5.2.4
released v5.2.4
2 parents 0940043 + ff8cb87 commit 5216698

File tree

2 files changed

+52
-2
lines changed

2 files changed

+52
-2
lines changed

CHANGELOG-5.2.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,56 @@ in 5.2 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.2.0...v5.2.1
99

10+
* 5.2.4 (2021-03-04)
11+
12+
* bug #40336 [Messenger] Doctrine setup with migrations (Nyholm)
13+
* bug #40318 [Translation] deal with indented heredoc/nowdoc tokens (xabbuh)
14+
* bug #40350 [DependencyInjection] fix parsing calls of methods named "method" (xabbuh)
15+
* bug #40316 [Serializer] zero parts can be omitted in date interval input (xabbuh)
16+
* bug #40239 MockResponse total_time should not be simulated when provided (Pierrick VIGNAND)
17+
* bug #40299 [Cache] Add server-commands support for Predis Replication Environments (DemigodCode)
18+
* bug #40231 [HttpKernel] Configure `session.cookie_secure` earlier (tamcy)
19+
* bug #40283 [Translation] Make `name` attribute optional in xliff2 (MarieMinasyan)
20+
* bug #40286 [Security] #[CurrentUser] arguments should resolve to null for "anon." (chalasr)
21+
* bug #40281 [FrameworkBundle] Allow x-forwarded-prefix trusted header in config (drupol)
22+
* bug #39599 [Cache] Fix Redis TLS scheme `rediss` for Redis connection (misaert)
23+
* bug #40244 [Routing] fix conflict with param named class in attribute (nlhommet)
24+
* bug #40273 [Cache] fix setting items' metadata on commit() (nicolas-grekas)
25+
* bug #40258 [Form] Ignoring invalid forms from delete_empty behavior in CollectionType (yceruto)
26+
* bug #40246 [EventDispatcher] fix registering subscribers twice on edge-case (nicolas-grekas)
27+
* bug #40162 [Intl] fix Locale::getFallback() throwing exception on long $locale (AmirHo3ein13)
28+
* bug #40211 [Validator] fix taking error message from the correct violation (xabbuh)
29+
* bug #40208 [PropertyInfo] fix resolving self to name of the analyzed class (xabbuh)
30+
* bug #40209 [WebLink] Escape double quotes in attributes values (fancyweb)
31+
* bug #40192 [Console] fix QuestionHelper::getHiddenResponse() not working with space in project directory name (Yendric)
32+
* bug #40203 [String] Check if function exists before declaring it (Nyholm)
33+
* bug #40175 [PropertyInfo]  use the right context for properties defined in traits (xabbuh)
34+
* bug #40172 [Translation] Allow using dashes in locale when linting Xliff files (localheinz)
35+
* bug #39671 [Worflow] Fixed GuardListener when using the new Security system (lyrixx)
36+
* bug #40187 [Console] Fix PHP 8.1 null error for preg_match flag (kylekatarnls)
37+
* bug #39659 [Form] keep valid submitted choices when additional choices are submitted (xabbuh)
38+
* bug #40188 [HttpFoundation] Fix PHP 8.1 null values (kylekatarnls)
39+
* bug #40167 [DependencyInjection] Definition::removeMethodCall should remove all matching calls (ruudk)
40+
* bug #40160 [PropertyInfo] fix extracting mixed type-hinted property types (xabbuh)
41+
* bug #40040 [Finder] Use a lazyIterator to close files descriptors when no longer used (jderusse)
42+
* bug #40141 [RateLimiter] Fix sliding_window misbehaving with stale records (xesxen)
43+
* bug #40135 [FrameworkBundle] Fix freshness checks with boolean parameters on routes (HypeMC)
44+
* bug #40138 [FrameworkBundle] fix registering "annotations.cache" on the "container.hot_path" (nicolas-grekas)
45+
* bug #40137 [Form] forward the label_html option to expanded choice fields (xabbuh)
46+
* bug #40116 [FrameworkBundle][Translator] scan directories for translations sequentially (xabbuh)
47+
* bug #40124 [Form] merge translation parameters with value configured for parent form (xabbuh)
48+
* bug #40104 [HttpKernel] [Kernel] Silence failed deprecations logs writes (fancyweb)
49+
* bug #40098 [DependencyInjection] fix tracking of changes to vendor/ dirs (nicolas-grekas)
50+
* bug #39980 [Mailer][Mime] Update inline part names with newly generated ContentId (ddegentesh)
51+
* bug #40043 [HttpFoundation] Setting `REQUEST_TIME_FLOAT` when constructing a Request object (ctasada)
52+
* bug #40050 [FrameworkBundle][Translator] Fixed updating catalogue metadata from Intl domain (yceruto)
53+
* bug #40080 Fix Request with DNS issue not retried (jderusse)
54+
* bug #40089 [SecurityBundle] role_names variable instead of roles (wickedOne)
55+
* bug #40042 [Doctrine] Restore priority for EventSubscribers (jderusse)
56+
* bug #40066 [ErrorHandler] fix parsing return types in DebugClassLoader (nicolas-grekas)
57+
* bug #40065 [ErrorHandler] fix handling messages with null bytes from anonymous classes (nicolas-grekas)
58+
* bug #40067 [PhpUnitBridge] fix reporting deprecations when they come from DebugClassLoader (nicolas-grekas)
59+
1060
* 5.2.3 (2021-02-03)
1161

1262
* bug #39954 [Mailer][Mime] Fix case-sensitive handling of header names (piku235)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7474

7575
private static $freshCache = [];
7676

77-
public const VERSION = '5.2.4-DEV';
77+
public const VERSION = '5.2.4';
7878
public const VERSION_ID = 50204;
7979
public const MAJOR_VERSION = 5;
8080
public const MINOR_VERSION = 2;
8181
public const RELEASE_VERSION = 4;
82-
public const EXTRA_VERSION = 'DEV';
82+
public const EXTRA_VERSION = '';
8383

8484
public const END_OF_MAINTENANCE = '07/2021';
8585
public const END_OF_LIFE = '07/2021';

0 commit comments

Comments
 (0)