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 adc422e

Browse filesBrowse files
authored
Merge pull request #52219 from fabpot/release-6.3.6
released v6.3.6
2 parents d87cd8d + 516e3da commit adc422e
Copy full SHA for adc422e

File tree

2 files changed

+32
-2
lines changed
Filter options

2 files changed

+32
-2
lines changed

‎CHANGELOG-6.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.3.md
+30Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ 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.6 (2023-10-21)
11+
12+
* bug #52201 [HttpKernel] Resolve EBADP error on flock with LOCK_SH with NFS (driskell)
13+
* bug #52194 [Validator] Handle `null` case (OskarStark)
14+
* bug #52158 [Messenger] Fix graceful exit with ids (HypeMC)
15+
* bug #52105 [Cache] Remove temporary cache item file on `rename()` failure (cedric-anne)
16+
* bug #52021 [Form] Fix merging params & files when "multiple" is enabled (priyadi)
17+
* bug #51819 [HttpFoundation] Do not swallow trailing `=` in cookie value (OskarStark)
18+
* bug #52095 [Notifier][Sendinblue] Handle error responses without a message key (stof)
19+
* bug #51907 [Serializer] Fix collecting only first missing constructor argument (HypeMC)
20+
* bug #52080 [Messenger] Fix graceful exit (HypeMC)
21+
* bug #52075 [Messenger] Fix DoctrineOpenTransactionLoggerMiddleware (ro0NL)
22+
* bug #52005 [Translation] Prevent creating empty keys when key ends with a period (javleds)
23+
* bug #52035 [DoctrineBridge] Fix DBAL 4 compatibility (derrabus)
24+
* bug #52040 [Cache] Fix ArrayAdapter::freeze() return type (fancyweb)
25+
* bug #52036 [Cache][VarExporter] Fix proxy generation to deal with edgy behaviors of internal classes (nicolas-grekas)
26+
* bug #51947 [Cache][Doctrine][DoctrineBridge][Lock][Messenger] Compatibility with ORM 3 and DBAL 4 (derrabus)
27+
* bug #51972 [HttpKernel] Handle nullable callback of `StreamedResponse` (elementaire)
28+
* bug #52017 [Mailer] Capitalize sender header for Mailgun (Romanavr)
29+
* bug #52009 [FrameworkBundle] Configure `logger` as error logger if the Monolog Bundle is not registered (MatTheCat)
30+
* bug #51969 [FrameworkBundle] Fix calling `Kernel::warmUp()` when running `cache:warmup` (nicolas-grekas)
31+
* bug #51985 [WebProfilerBundle] Fix markup to make link to profiler appear on errored WDT (MatTheCat)
32+
* bug #44766 [RateLimiter] TokenBucket policy fix for adding tokens with a predefined frequency (relo-san)
33+
* bug #51825 Fix order array sum normalizedData and nestedData (jerowork)
34+
* bug #51876 [HttpClient] Fix type error with http_version 1.1 (Filnor)
35+
* bug #51858 [Security] Fix resetting traceable listeners (chalasr)
36+
* bug #51843 [FrameworkBundle] Fix call to invalid method in NotificationAssertionsTrait (ker0x)
37+
* bug #51791 [Messenger] Check if PCNTL is installed (HypeMC)
38+
* bug #47342 Change incorrect message, when the sender in the global envelope or the from header of asEmailMessage() is not defined. (fredericlesueurs)
39+
1040
* 6.3.5 (2023-09-30)
1141

1242
* bug #51773 [Mailer] [Mailgun] Fix outlook sender (Romanavr)

‎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
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676
*/
7777
private static array $freshCache = [];
7878

79-
public const VERSION = '6.3.6-DEV';
79+
public const VERSION = '6.3.6';
8080
public const VERSION_ID = 60306;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 3;
8383
public const RELEASE_VERSION = 6;
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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.