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 74f3355

Browse filesBrowse files
authored
Merge pull request symfony#45217 from fabpot/release-5.4.3
released v5.4.3
2 parents a4af465 + 83c7e70 commit 74f3355
Copy full SHA for 74f3355

File tree

Expand file treeCollapse file tree

2 files changed

+47
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+47
-2
lines changed

‎CHANGELOG-5.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.4.md
+45Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,51 @@ 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.3 (2022-01-28)
11+
12+
* bug #45193 [FrameworkBundle] Fix missing arguments when a serialization default context is bound (ArnoudThibaut)
13+
* bug #44997 [Runtime] Fix --env and --no-debug with dotenv_overload (fancyweb)
14+
* bug #45188 [Dotenv] Fix bootEnv() override with .env.local.php when the env key already exists (fancyweb)
15+
* bug #45095 [Finder] Fix finding VCS re-included files in excluded directory (julienfalque)
16+
* bug #44987 [DoctrineBridge] Fix automapping (mbabker)
17+
* bug #44860 [Validator] Fix Choice constraint with associative choices array (derrabus)
18+
* bug #44939 [Form] UrlType should not add protocol to emails (GromNaN)
19+
* bug #43149 Silence warnings during tty detection (neclimdul)
20+
* bug #45154 [Serializer] Fix AbstractObjectNormalizer not considering pseudo type false (Thomas Nunninger)
21+
* bug #45185 [Notifier] Fix encoding of messages with FreeMobileTransport (94noni)
22+
* bug #45181 [Console] Fix PHP 8.1 deprecation in ChoiceQuestion (BrokenSourceCode)
23+
* bug #44634 [HttpKernel] Fix compatibility with php bridge and already started php sessions (alexander-schranz)
24+
* bug #45174 [Notifier] Use the UTF-8 encoding in smsapi-notifier (marphi)
25+
* bug #45140 [Yaml] Making the parser stateless (mamazu)
26+
* bug #45109 [Console] fix restoring stty mode on CTRL+C (nicolas-grekas)
27+
* bug #45103 [Process] Avoid calling fclose on an already closed resource (Seldaek)
28+
* bug #44941 [RateLimiter] Resolve crash on near-round timestamps (xesxen)
29+
* bug #45088 [Console] fix parsing escaped chars in StringInput (nicolas-grekas)
30+
* bug #45096 [Cache] Throw exception if incompatible version of psr/simple-cache is used (colinodell)
31+
* bug #45067 [RateLimiter] Implicit conversion fix (brian978)
32+
* bug #45063 [DependencyInjection] remove arbitratry limitation to exclude inline services from bindings (nicolas-grekas)
33+
* bug #44986 [DependencyInjection] copy synthetic status when resolving child definitions (kbond)
34+
* bug #45073 [HttpClient] Fix Failed to open stream: Too many open files (adrienfr)
35+
* bug #45053 [Console] use STDOUT/ERR in ConsoleOutput to save opening too many file descriptors (nicolas-grekas)
36+
* bug #45029 [Cache] Set mtime of cache files 1 year into future if they do not expire (Blacksmoke16)
37+
* bug #45012 [DoctrineBridge] Fix invalid guess with enumType (jderusse)
38+
* bug #45015 [HttpClient] fix resetting DNS/etc when calling CurlHttpClient::reset() (nicolas-grekas)
39+
* bug #45004 [HttpClient] Remove deprecated usage of GuzzleHttp\Promise\promise_for (plozmun)
40+
* bug #44998 [FrameworkBundle] Allow default cache pools to be overwritten by user (Seldaek)
41+
* bug #44890 [HttpClient] Remove deprecated usage of `GuzzleHttp\Promise\queue` (GrahamCampbell)
42+
* bug #45002 [PropertyAccess] Fix handling of uninitialized property of anonymous class (filiplikavcan)
43+
* bug #44979 [DependencyInjection] Add iterable to possible binding type (vladimir.panivko)
44+
* bug #44976 [FrameworkBundle] Avoid calling rtrim(null, '/') in AssetsInstallCommand (pavol-tk, GromNaN)
45+
* bug #44879 [DependencyInjection] Ignore argument type check in CheckTypeDeclarationsPass if it's a Definition with a factory (fancyweb)
46+
* bug #44920 Use correct tag for ExpoTransportFactory service (jschaedl)
47+
* bug #44931 Allow a zero time-limit for messenger:consume (fritzmg)
48+
* bug #44932 [DependencyInjection] Fix nested env var with resolve processor (Laurent Moreau)
49+
* bug #44912 [Console] Allow OutputFormatter::escape() to be used for escaping URLs used in <href> (Seldaek)
50+
* bug #44877 [Validator] Error using CssColor with doctrine annotations (sormes)
51+
* bug #44878 [HttpClient] Turn negative timeout to a very long timeout (fancyweb)
52+
* bug #44854 [Validator] throw when Constraint::_construct() has not been called (nicolas-grekas)
53+
* bug #44857 [Translation] [LocoProvider] Fix use of asset ids (danut007ro)
54+
1055
* 5.4.2 (2021-12-29)
1156

1257
* bug #44828 [Lock] Release DoctrineDbalPostgreSqlStore connection lock on failure (simon-watiau)

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