8000 Merge pull request #47738 from fabpot/release-5.4.13 · enumag/symfony@dcedd9c · GitHub
[go: up one dir, main page]

Skip to content

Commit dcedd9c

Browse files
authored
Merge pull request symfony#47738 from fabpot/release-5.4.13
released v5.4.13
2 parents 885994e + ed62ced commit dcedd9c

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

CHANGELOG-5.4.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,37 @@ 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.13 (2022-09-30)
11+
12+
* bug #47317 [Security] Fix login url matching when app is not run with url rewriting or from a sub folder (sgehrig)
13+
* bug #47637 [FrameworkBundle] Fix passing `serializer.default_context` option to normalizers (wuchen90)
14+
* bug #47695 [FrameworkBundle] Filter out trans paths that are covered by a parent folder path (natewiebe13)
15+
* bug #45554 [Serializer] Fixed framework.serializer.default_context is not working for JsonEncoder (siganushka)
16+
* bug #47547 [Ldap] Do not run ldap_set_option on failed connection (tatankat)
17+
* bug #47578 [Security] Fix AbstractFormLoginAuthenticator return types (AndrolGenhald)
18+
* bug #47614 [FrameworkBundle] Fix a phpdoc in mailer assertions (HeahDude)
19+
* bug #47516 [HttpFoundation] Prevent BinaryFileResponse::prepare from adding content type if no content is sent (naitsirch)
20+
* bug #47533 [Messenger] decode URL-encoded characters in DSN's usernames/passwords (xabbuh)
21+
* bug #47530 [HttpFoundation] Always return strings from accept headers (ausi)
22+
* bug #47523 [Uid] Ensure ULIDs are monotonic even when the time goes backward (nicolas-grekas)
23+
* bug #47528 [Form] fix UUID tranformer (nicolas-grekas)
24+
* bug #47488 [Security] Fix valid remember-me token exposure to the second consequent request (Ivan Kurnosov)
25+
* bug #47518 [Uid] Fix validating UUID variant bits (nicolas-grekas)
26+
* bug #47441 [HttpClient] [HttpClientBundle] Bugfix for delayed retryableHttpClient (martkop26)
27+
* bug #47499 [Uid][Validator] Stop to first ULID format violation (ogizanagi)
28+
* bug #47491 [HttpKernel] Prevent exception in RequestDataCollector if request stack is empty (aschempp)
29+
* bug #47497 [Bridge] Fix mkdir() race condition in ProxyCacheWarmer (andrey-tech)
30+
* bug #47415 [HttpClient] Psr18Client ignore invalid HTTP headers (nuryagdym)
31+
* bug #47394 [Console] [Completion] Make bash completion run in non interactive mode (Seldaek)
32+
* bug #47455 [Mime] Fix TextPart broken after being serialized (fabpot)
33+
* bug #47423 [String] CamelCase/SnakeCase on uppercase word (mpiot)
34+
* bug #47435 [HttpKernel] lock when writting profiles (nicolas-grekas)
35+
* bug #47417 [WebProfilerBundle] Fix profile search bar link query params (HeahDude)
36+
* bug #47437 [Mime] Fix email rendering when having inlined parts that are not related to the content (fabpot)
37+
* bug #47434 [HttpFoundation] move flushing outside of Response::closeOutputBuffers (nicolas-grekas)
38+
* bug #47351 [FrameworkBundle] Do not throw when describing a factory definition (MatTheCat)
39+
* bug #47403 [Mailer] Fix edge cases in STMP transports (fabpot)
40+
1041
* 5.4.12 (2022-08-26)
1142

1243
* bug #47391 [LokaliseBridge] Fix push command --delete-missing options when there are no missing messages (rwionczek)

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.13-DEV';
81+
public const VERSION = '5.4.13';
8282
public const VERSION_ID = 50413;
8383
public const MAJOR_VERSION = 5;
8484
public const MINOR_VERSION = 4;
8585
public const RELEASE_VERSION = 13;
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