Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 05baa8f

Browse filesBrowse files
authored
Merge pull request #47115 from fabpot/release-5.4.11
released v5.4.11
2 parents 506e4fc + 48e20c0 commit 05baa8f
Copy full SHA for 05baa8f

File tree

2 files changed

+39
-2
lines changed
Filter options

2 files changed

+39
-2
lines changed

‎CHANGELOG-5.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.4.md
+37Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ 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.11 (2022-07-29)
11+
12+
* bug #47069 [Security] Allow redirect after login to absolute URLs (Tim Ward)
13+
* bug #47073 [HttpKernel] Fix non-scalar check in surrogate fragment renderer (aschempp)
14+
* bug #47003 [Cache] Ensured that redis adapter can use multiple redis sentinel hosts (warslett)
15+
* bug #43329 [Serializer] Respect default context in DateTimeNormalizer::denormalize (hultberg)
16+
* bug #47070 [Messenger] Fix function name in TriggerSql on postgresql bridge to support table name with schema (zimny9932)
17+
* bug #47086 Workaround disabled "var_dump" (nicolas-grekas)
18+
* bug #40828 [BrowserKit] Merge fields and files recursively if they are multidimensional array (januszmk)
19+
* bug #47010 [String] Fix `width` method in `AbstractUnicodeString` (TBoileau)
20+
* bug #47048 [Serializer] Fix XmlEncoder encoding attribute false (alamirault)
21+
* bug #47022 [Console] get full command path for command in search path (remicollet)
22+
* bug #47000 [ErrorHandler] Fix return type patching for list and class-string pseudo types (derrabus)
23+
* bug #43998 [HttpKernel] [HttpCache] Don't throw on 304 Not Modified (aleho)
24+
* bug #46792 [Bridge] Corrects bug in test listener trait (magikid)
25+
* bug #46985 [DoctrineBridge] Avoid calling `AbstractPlatform::hasNativeGuidType()` (derrabus)
26+
* bug #46958 [Serializer] Ignore getter with required parameters (Fix #46592) (astepin)
27+
* bug #46981 [Mime]  quote address names if they contain parentheses (xabbuh)
28+
* bug #46960 [FrameworkBundle] Fail gracefully when forms use disabled CSRF (HeahDude)
29+
* bug #46973 [DependencyInjection] Fail gracefully when attempting to autowire composite types (derrabus)
30+
* bug #45884 [Serializer] Fix inconsistent behaviour of nullable objects in key/value arrays (phramz)
31+
* bug #46963 [Mime] Fix inline parts when added via attachPart() (fabpot)
32+
* bug #46968 [PropertyInfo] Make sure nested composite types do not crash ReflectionExtractor (derrabus)
33+
* bug #46931 Flush backend output buffer after closing. (bradjones1)
34+
* bug #46947 [Serializer] Prevent that bad Ignore method annotations lead to incorrect results (astepin)
35+
* bug #46948 [Validator] : Fix "PHP Warning: Undefined array key 1" in NotCompromisedPasswordValidator (KevinVanSonsbeek)
36+
* bug #46905 [BrowserKit] fix sending request to paths containing multiple slashes (xabbuh)
37+
* bug #46244 [Validator] Fix traverse option on Valid constraint when used as Attribute (tobias-93)
38+
* bug #42033 [HttpFoundation] Fix deleteFileAfterSend on client abortion (nerg4l)
39+
* bug #46941 [Messenger] Fix calls to deprecated DBAL methods (derrabus)
40+
* bug #46863 [Mime] Fix invalid DKIM signature with multiple parts (BrokenSourceCode)
41+
* bug #46808 [HttpFoundation] Fix TypeError on null `$_SESSION` in `NativeSessionStorage::save()` (chalasr)
42+
* bug #46811 [DoctrineBridge] Fix comment for type on Query::setValue (middlewares) (l-vo)
43+
* bug #46790 [HttpFoundation] Prevent PHP Warning: Session ID is too long or contains illegal characters (BrokenSourceCode)
44+
* bug #46800 Spaces in system temp folder path cause deprecation errors in php 8 (demeritcowboy)
45+
* bug #46797 [Messenger] Ceil waiting time when multiplier is a float on retry (WissameMekhilef)
46+
1047
* 5.4.10 (2022-06-26)
1148

1249
* bug #46779 [String] Add an invariable word in french (lemonlab)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.11-DEV';
81+
public const VERSION = '5.4.11';
8282
public const VERSION_ID = 50411;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
8585
public const RELEASE_VERSION = 11;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = '';
8787

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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.