8000 Merge pull request #46193 from fabpot/release-5.4.8 · symfony/symfony@42e79c6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 42e79c6

Browse files
authored
Merge pull request #46193 from fabpot/release-5.4.8
released v5.4.8
2 parents d52c7fa + dee04f1 commit 42e79c6

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

CHANGELOG-5.4.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ 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.8 (2022-04-27)
11+
12+
* bug #46154 [Mailer] Restore X-Transport after failure (zenas1210)
13+
* bug #46178 [DependencyInjection] Properly declare #[When] as allowed on functions (nicolas-grekas)
14+
* bug #46171 [VarDumper] Fix dumping floats on PHP8 (nicolas-grekas)
15+
* bug #46170 Fix dumping enums on PHP 8.2 (nicolas-grekas)
16+
* bug #46143 [Cache] Prevent fatal errors on php 8 when running concurrently with TagAwareAdapter v6.1 (sbelyshkin)
17+
* bug #46149 Modify processing of uploaded files to be compatible with PHP 8.1 (p-golovin)
18+
* bug #46125 [FrameworkBundle] Always add CacheCollectorPass (fancyweb)
19+
* bug #46121 Fix "Notice: Undefined index: headers" in messenger with Oracle (rjd22)
20+
* bug #46106 [String] Fix ansi escape sequences regex (fancyweb)
21+
* bug #46097 [Routing] fix router base url when default uri has trailing slash (Tobion)
22+
* bug #46054 [SecurityBundle] Use config's secret in remember-me signatures (jderusse)
23+
* bug #45980 [Finder] Add support of no-capture regex modifier in MultiplePcreFilterIterator (available from PHP 8.2) (alexandre-daubois)
24+
* bug #45394 [HttpKernel] Use the existing session id if available. (trsteel88)
25+
* bug #46008 [Workflow] Catch error when trying to get an uninitialized marking (lyrixx)
26+
* bug #45171 [Translation] Allow usage of Provider domains if possible (welcoMattic)
27+
* bug #40998 [Form] Use reference date in reverse transform (KDederichs)
28+
* bug #46012 [HttpKernel] Fix Symfony not working on SMB share (qinshuze)
29+
* bug #45983 [Messenger] DoctrineTransportFactory works with notify and decorated PostgreSQL driver (alamirault)
30+
* bug #45992 [Mailer] Return-Path has higher priority for envelope address than From address (tpetry)
31+
* bug #45998 [HttpClient] Fix sending content-length when streaming the body (nicolas-grekas)
32+
* bug #45565 Fix table header seperator wrapping (alamirault)
33+
* bug #45969 [Intl] Update the ICU data to 71.1 - 5.4 (jderusse)
34+
* bug #45968 [Intl] Update the ICU data to 71.1 - 4.4 (jderusse)
35+
* bug #45964 Fix use_cookies framework session configuration (alexander-schranz)
36+
* bug #45947 [FrameworkBundle] [Command] Fix `debug:router --no-interaction` error … (WilliamBoulle)
37+
* bug #45948 [RateLimiter] Adding default empty string value on Security::LAST_USERNAME (David-Crty)
38+
* bug #45931 [Process] Fix Process::getEnv() when setEnv() hasn't been called before (asika32764)
39+
* bug #45928 [ExpressionLanguage] Fix matching null against a regular expression (ausi)
40+
* bug #45925 [RateLimiter] Add typecase to SlidingWindow::getExpirationTime (georgringer)
41+
* bug #45910 [Messenger] reset connection on worker shutdown (SanderHagen)
42+
* bug #45909 [Form][TwigBundle] reset Twig form theme resources between requests (xabbuh)
43+
1044
* 5.4.7 (2022-04-02)
1145

1246
* bug #45906 [HttpClient] on redirections don't send content related request headers (xabbuh)

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