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 4888da0

Browse filesBrowse files
authored
Merge pull request #51496 from fabpot/release-6.3.4
released v6.3.4
2 parents d39f447 + 980f309 commit 4888da0
Copy full SHA for 4888da0

File tree

2 files changed

+36
-2
lines changed
Filter options

2 files changed

+36
-2
lines changed

‎CHANGELOG-6.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.3.md
+34Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ 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.4 (2023-08-26)
11+
12+
* bug #51475 [Serializer] Fix union of enum denormalization (mtarld)
13+
* bug #51474 [Serializer] Fix wrong InvalidArgumentException thrown (mtarld)
14+
* bug #51494 Fixed attachment base64 content string in MailerSendApiTransport (pavelwitassek)
15+
* bug #51350 [Security] Prevent creating session in stateless firewalls (Seb33300)
16+
* bug #51104 [Security] Fix loading user from UserBadge (guillaumesmo)
17+
* bug #51473 [VarDumper] Fix managing collapse state in CliDumper (nicolas-grekas)
18+
* bug #51369 [Serializer] Fix deserializing object collection properties (X-Coder264)
19+
* bug #51399 [Serializer] Fix deserializing of nested snake_case attributes using CamelCaseToSnakeCaseNameConverter (Victor-Truhanovich)
20+
* bug #51456 [Serializer] Fix serialized name with groups during denormalization (mtarld)
21+
* bug #51445 [Security] FormLoginAuthenticator: fail for non-string password (dmaicher)
22+
* bug #51424 [HttpFoundation] Fix base URI detection on IIS with UrlRewriteModule (derrabus)
23+
* bug #51396 [HttpKernel] Fix missing Request in RequestStack for StreamedResponse (Ismail Turan)
24+
* bug #51378 [Console] avoid multiple new line when message already ends with a new line in section output (joelwurtz)
25+
* bug #51336 [Notifier] [Pushover] Fix invalid method call + improve exception message (ahmedghanem00)
26+
* bug #51345 [AssetMapper] Fixing bug where a circular exception could be thrown while making error message (weaverryan)
27+
* bug #48840 [Validator] Dump Valid constraints on debug command (macintoshplus)
28+
* bug #51223 [Console] Fix linewraps in `OutputFormatter` (maxbeckers)
29+
* bug #51307 [DependencyInjection] fix dump xml with array/object/enum default value (Jean-Beru)
30+
* bug #51355 [Console] fix section output when multiples section with max height (joelwurtz)
31+
* bug #51359 [Security] Fix error with lock_factory in login_throttling (BaptisteContreras)
32+
* bug #51326 [FrameworkBundle] Fix xsd for handle-all-throwables (Jean-Beru)
33+
* bug #51328 [Messenger] Always return bool from messenger amqp connection nack (Danielss89)
34+
* bug #51295 [Mailer] update Brevo SMTP host (bastien-wink)
35+
* bug #51301 [FrameworkBundle] add missing default-doctrine-dbal-provider cache pool attribute to XSD (xabbuh)
36+
* bug #51296 [Process] Fix silencing `wait` when using a sigchild-enabled binary (nicolas-grekas)
37+
* bug #51251 [DependencyInjection] Do not add `return` in `LazyClosure` when return type of closure is `void` (ruudk)
38+
* bug #51219 [DependencyInjection][HttpKernel] Fix using `#[AutowireCallable]` with controller arguments (HypeMC)
39+
* bug #51201 [Workflow] fix MermaidDumper when place contains special char (lyrixx)
40+
* bug #49195 [Crawler] Fix regression where cdata nodes will return empty string (NanoSector)
41+
* bug #51061 [DoctrineBridge] Bugfix - Allow to remove LazyLoaded listeners by object (VincentLanglet)
42+
* bug #51190 [Clock] load function only if not loaded before (xabbuh)
43+
1044
* 6.3.3 (2023-07-31)
1145

1246
* bug #51178 [Finder] Revert "Fix children condition in ExcludeDirectoryFilterIterator" (derrabus)

‎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.4-DEV';
79+
public const VERSION = '6.3.4';
8080
public const VERSION_ID = 60304;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 3;
8383
public const RELEASE_VERSION = 4;
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.