Skip to content

Release v6.3.4 #51496

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG-6.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,40 @@ in 6.3 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.3.0...v6.3.1

* 6.3.4 (2023-08-26)

* bug #51475 [Serializer] Fix union of enum denormalization (mtarld)
* bug #51474 [Serializer] Fix wrong InvalidArgumentException thrown (mtarld)
* bug #51494 Fixed attachment base64 content string in MailerSendApiTransport (pavelwitassek)
* bug #51350 [Security] Prevent creating session in stateless firewalls (Seb33300)
* bug #51104 [Security] Fix loading user from UserBadge (guillaumesmo)
* bug #51473 [VarDumper] Fix managing collapse state in CliDumper (nicolas-grekas)
* bug #51369 [Serializer] Fix deserializing object collection properties (X-Coder264)
* bug #51399 [Serializer] Fix deserializing of nested snake_case attributes using CamelCaseToSnakeCaseNameConverter (Victor-Truhanovich)
* bug #51456 [Serializer] Fix serialized name with groups during denormalization (mtarld)
* bug #51445 [Security] FormLoginAuthenticator: fail for non-string password (dmaicher)
* bug #51424 [HttpFoundation] Fix base URI detection on IIS with UrlRewriteModule (derrabus)
* bug #51396 [HttpKernel] Fix missing Request in RequestStack for StreamedResponse (Ismail Turan)
* bug #51378 [Console] avoid multiple new line when message already ends with a new line in section output (joelwurtz)
* bug #51336 [Notifier] [Pushover] Fix invalid method call + improve exception message (ahmedghanem00)
* bug #51345 [AssetMapper] Fixing bug where a circular exception could be thrown while making error message (weaverryan)
* bug #48840 [Validator] Dump Valid constraints on debug command (macintoshplus)
* bug #51223 [Console] Fix linewraps in `OutputFormatter` (maxbeckers)
* bug #51307 [DependencyInjection] fix dump xml with array/object/enum default value (Jean-Beru)
* bug #51355 [Console] fix section output when multiples section with max height (joelwurtz)
* bug #51359 [Security] Fix error with lock_factory in login_throttling (BaptisteContreras)
* bug #51326 [FrameworkBundle] Fix xsd for handle-all-throwables (Jean-Beru)
* bug #51328 [Messenger] Always return bool from messenger amqp connection nack (Danielss89)
* bug #51295 [Mailer] update Brevo SMTP host (bastien-wink)
* bug #51301 [FrameworkBundle] add missing default-doctrine-dbal-provider cache pool attribute to XSD (xabbuh)
* bug #51296 [Process] Fix silencing `wait` when using a sigchild-enabled binary (nicolas-grekas)
* bug #51251 [DependencyInjection] Do not add `return` in `LazyClosure` when return type of closure is `void` (ruudk)
* bug #51219 [DependencyInjection][HttpKernel] Fix using `#[AutowireCallable]` with controller arguments (HypeMC)
* bug #51201 [Workflow] fix MermaidDumper when place contains special char (lyrixx)
* bug #49195 [Crawler] Fix regression where cdata nodes will return empty string (NanoSector)
* bug #51061 [DoctrineBridge] Bugfix - Allow to remove LazyLoaded listeners by object (VincentLanglet)
* bug #51190 [Clock] load function only if not loaded before (xabbuh)

* 6.3.3 (2023-07-31)

* bug #51178 [Finder] Revert "Fix children condition in ExcludeDirectoryFilterIterator" (derrabus)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.3.4-DEV';
public const VERSION = '6.3.4';
public const VERSION_ID = 60304;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 4;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '01/2024';
public const END_OF_LIFE = '01/2024';
Expand Down