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 9139d52

Browse filesBrowse files
authored
Merge pull request #44194 from fabpot/release-5.3.11
released v5.3.11
2 parents 569ae25 + 600d018 commit 9139d52
Copy full SHA for 9139d52

File tree

2 files changed

+44
-2
lines changed
Filter options

2 files changed

+44
-2
lines changed

‎CHANGELOG-5.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.3.md
+42Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,48 @@ in 5.3 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.3.0...v5.3.1
99

10+
* 5.3.11 (2021-11-22)
11+
12+
* bug #44188 [VarExporter] fix exporting declared but unset properties when __sleep() is implemented (nicolas-grekas)
13+
* bug #44176 [Console] Default ansi option to null (jderusse)
14+
* bug #44119 [HttpClient][Mime] Add correct IDN flags for IDNA2008 compliance (j-bernard)
15+
* bug #44131 [Yaml] properly parse quoted strings tagged with !!str (xabbuh)
16+
* bug #42323 [TwigBridge] do not merge label classes into expanded choice labels (xabbuh)
17+
* bug #44110 [FrameworkBundle] Fix default PHP attributes support in validation and serializer configuration when doctrine/annotations is not installed with PHP 8 (fancyweb)
18+
* bug #44121 [Serializer] fix support for lazy properties (nicolas-grekas)
19+
* bug #44108 [FrameworkBundle][Messenger] remove `FlattenExceptionNormalizer` definition if serializer not available (kbond)
20+
* bug #44111 [Serializer] fix support for unset properties on PHP < 7.4 (nicolas-grekas)
21+
* bug #44070 [Process] intersect with getenv() to populate default envs (nicolas-grekas)
22+
* bug #43990 [Translation] [Loco] Generate id parameter instead of letting Loco do it (welcoMattic)
23+
* bug #44043 [Cache] fix dbindex Redis (a1812)
24+
* bug #44050 [Notifier] Fix package names (fabpot)
25+
* bug #44042 Fix DateIntervalToStringTransformer::transform() doc (BenMorel)
26+
* bug #44034 [Yaml] don't try to replace references in quoted strings (xabbuh)
27+
* bug #44028 [ErrorHandler] Fix FlattenException::setPrevious argument typing (welcoMattic)
28+
* bug #44012 [DependencyInjection] fix inlining when non-shared services are involved (nicolas-grekas)
29+
* bug #44002 [Cache] Fix Memory leak (a1812)
30+
* bug #43981 [FrameworkBundle] fix registering late resettable services (nicolas-grekas)
31+
* bug #43988 [DoctrineBridge] add support for the JSON type (dunglas)
32+
* bug #43987 [PhpUnitBridge] Fix Uncaught ValueError (dunglas)
33+
* bug #43961 [HttpClient] Curl http client has to reinit curl multi handle on reset (rmikalkenas)
34+
* bug #43948 [Asset][Security] Fixed leftover deprecations PHP 8.1 (michaljusiega)
35+
* bug #43945 [Runtime] fix defining APP_DEBUG when Dotenv is not enabled (nicolas-grekas)
36+
* bug #43922 [DependencyInjection] only allow `ReflectionNamedType` for `ServiceSubscriberTrait` (kbond)
37+
* bug #43814 [Intl] Update the ICU data to 70.1 - 5.3 (jderusse)
38+
* bug #43915 [Messenger] Fix tests (jderusse)
39+
* bug #43901 [SecurityBundle] Default access_decision_manager.strategy option with merge (biozshock)
40+
* bug #43909 [VarExporter] escape unicode chars involved in directionality (nicolas-grekas)
41+
* bug #43900 [Security] Fix TypeError message in ChainUserProvider (derrabus)
42+
* bug #43884 [Console] Runtime conflict for psr/log >= 3.0 instead of composer conflict (fancyweb)
43+
* bug #43867 [VarDumper] Make dumping DateInterval instances timezone-independent (derrabus)
44+
* bug #43096 [Messenger] Use `TransportMessageIdStamp` in `InMemoryTransport` allows retrying (alexndlm)
45+
* bug #42168 [RateLimiter] Fix wait duration for fixed window policy (jlekowski)
46+
* bug #43501 [HttpKernel] fix ErrorException in CacheWarmerAggregate (Ahummeling)
47+
* bug #42361 [Translation] correctly handle intl domains with TargetOperation (acran)
48+
* bug #43833 [Runtime] Consider also $_ENV when resolving APP_RUNTIME and APP_RUNTIME_OPTIONS (Peter Simoncic)
49+
* bug #43834 [Inflector] Fix inflector for "zombies" (acodispo)
50+
* bug #43267 [Config] Fix signature generation with nested attributes on PHP 8.1 (agustingomes)
51+
1052
* 5.3.10 (2021-10-29)
1153

1254
* bug #43798 [Dotenv] Duplicate $_SERVER values in $_ENV if they don't exist (fancyweb)

‎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
@@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7575

7676
private static $freshCache = [];
7777

78-
public const VERSION = '5.3.11-DEV';
78+
public const VERSION = '5.3.11';
7979
public const VERSION_ID = 50311;
8080
public const MAJOR_VERSION = 5;
8181
public const MINOR_VERSION = 3;
8282
public const RELEASE_VERSION = 11;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = '';
8484

8585
public const END_OF_MAINTENANCE = '01/2022';
8686
public const END_OF_LIFE = '01/2022';

0 commit comments

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