8000 Merge pull request #53313 from fabpot/release-6.3.11 · priyadi/symfony@4bda973 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4bda973

Browse files
authored
Merge pull request symfony#53313 from fabpot/release-6.3.11
released v6.3.11
2 parents 8e89354 + 525e090 commit 4bda973

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

CHANGELOG-6.3.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,48 @@ in 6.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/v6.3.0...v6.3.1
99

10+
* 6.3.11 (2023-12-30)
11+
12+
* bug #53054 [Cache] Fix expiration time for CouchbaseCollection (alexandre-daubois)
13+
* bug #53259 [RateLimit] Test and fix peeking behavior on rate limit policies (wouterj)
14+
* bug #52406 [Validator] Fix `Constraints\Email::ERROR_NAMES` (mathroc)
15+
* bug #53140 [Serializer] Skip uninitialized properties with deep_object_to_populate (mtarld)
16+
* bug #53195 [HttpKernel] Fix default locale is ignored when `set_locale_from_accept_language` is used (jkobus)
17+
* bug #52928 [Dotenv] Allow environment variables starting with an underscore (xabbuh)
18+
* bug #53243 [Mailer][Postmark] Add missing changelog for webhook support (OskarStark)
19+
* bug #53232 [Notifier] [Smsc] Require login and password (OskarStark)
20+
* bug #53225 [WebProfilerBundle] Fix the design of the compact toolbar button (javiereguiluz)
21+
* bug #53178 [Translation][Crowdin] Use project language mapping (andrii-bodnar)
22+
* bug #53187 [Messenger] Fix using negative delay (J-roen)
23+
* bug #53133 [Validator] Fix using known option names as field names (HypeMC)
24+
* bug #53172 [SecurityBundle] Prevent to login/logout without a request context (symfonyaml)
25+
* bug #53153 [WebProfilerBundle] Fix JS error when evaluating scripts (jderusse)
26+
* bug #52998 [Notifier] [Bridges] Provide EventDispatcher and HttpClient to the transport (rdavaillaud)
27+
* bug #52817 [Serializer] Do not instantiate object if it is not instantiable (maxbaldanza)
28+
* bug #53079 [DoctrineBridge] Add check for lazy object interface (maxbaldanza)
29+
* bug #53115 [Serializer] Fix partial denormalization with missing constructor arguments (HypeMC)
30+
* bug #53125 [Mailer] add the MailPace transport to the UnsupportedSchemeException (xabbuh)
31+
* bug #53081 [Serializer] Keep stack trace for enum value denormalizer error (kylekatarnls)
32+
* bug #53107 [HttpKernel] Don't validate partially denormalized object (HypeMC)
33+
* bug #52891 [HttpKernel] Fix request attribute value ignored with pinned resolvers (HypeMC)
34+
* bug #53057 [HttpKernel] Move ``@internal`` from `AbstractSessionListener` class to its methods and properties (Florian-Merle)
35+
* bug #52990 [TwigBridge] don't use deprecated and internal Twig functions (xabbuh)
36+
* bug #53007 [FrameworkBundle] Fix webhook parser service removal and add notifier parser service removal (alexandre-daubois)
37+
* bug #52996 [Validator] add missing translation (xabbuh)
38+
* bug #52978 [Webhook] [Framework] Added missing XML attribute in config XSD (TimoBakx)
39+
* bug #52584 [WebProfilerBundle] Fix intercept external redirects (HeahDude)
40+
* bug #52964 [ExpressionLanguage] Fix null coalescing propagation (fancyweb)
41+
* bug #52940 [Console] Fix color support check on non-Windows platforms (theofidry)
42+
* bug #52896 [Messenger] Avoid reconnecting active Redis connections. (BusterNeece)
43+
* bug #52923 Avoid incompatibility with symfony/console 7 (jdecool)
44+
* bug #52927 [Dotenv] Properly handle `SYMFONY_DOTENV_VARS` being the empty string (xabbuh)
45+
* bug #52935 [Validator] Missing translations for Slovak (sk) #51954 (Jan Vernarsky)
46+
* bug #52941 [Console] Fix xterm detection (theofidry)
47+
* bug #52795 [FrameworkBundle]  do not overwrite an application's default serialization context (xabbuh)
48+
* bug #52885 [Serializer] fix nullable int cannot be serialized (nikophil)
49+
* bug #52886 [HttpKernel] Catch `TypeError` if the wrong type is used in `BackedEnumValueResolver` (alexandre-daubois)
50+
* bug #52864 [HttpClient][Mailer][Process] always pass microseconds to usleep as integers (xabbuh)
51+
1052
* 6.3.10 (2023-12-01)
1153

1254
* bug #52804 [Serializer] Fix support of plain object types denormalization (andersonamuller)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676
*/
7777
private static array $freshCache = [];
7878

79-
public const VERSION = '6.3.11-DEV';
79+
public const VERSION = '6.3.11';
8080
public const VERSION_ID = 60311;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 3;
8383
public const RELEASE_VERSION = 11;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '01/2024';
8787
public const END_OF_LIFE = '01/2024';

0 commit comments

Comments
 (0)
0