Skip to content

Release v6.4.10 #57844

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
Jul 26, 2024
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
26 changes: 26 additions & 0 deletions CHANGELOG-6.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ in 6.4 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.4.0...v6.4.1

* 6.4.10 (2024-07-26)

* bug #57803 [FrameworkBundle] move adding detailed JSON error messages to the validate phase (xabbuh)
* bug #57815 [Console][PhpUnitBridge][VarDumper] Fix `NO_COLOR` empty value handling (alexandre-daubois)
* bug #57828 [Translation] Fix CSV escape char in `CsvFileLoader` on PHP >= 7.4 (alexandre-daubois)
* bug #57812 [Validator] treat uninitialized properties referenced by property paths as null (xabbuh)
* bug #57816 [DoctrineBridge] fix messenger bus dispatch inside an active transaction (IndraGunawan)
* bug #57799 [ErrorHandler][VarDumper] Remove PHP 8.4 deprecations (alexandre-daubois)
* bug #57772 [WebProfilerBundle] Add word wrap in tables in dialog to see all the text in workflow listeners dialog (SpartakusMd)
* bug #57802 [PropertyInfo] Fix nullable value returned from extractFromMutator on CollectionType (benjilebon)
* bug #57832 [DependencyInjection] Do not try to load default method name on interface (lyrixx)
* bug #57748 [SecurityBundle] use firewall-specific user checkers when manually logging in users (xabbuh)
* bug #57753 [ErrorHandler] restrict the maximum length of the X-Debug-Exception header (xabbuh)
* bug #57674 [Cache] Improve `dbindex` DSN parameter parsing (constantable)
* bug #57679 [WebProfilerBundle] Change incorrect check for the `stateless` request attribute (themasch)
* bug #57663 [Cache] use copy() instead of rename() on Windows (xabbuh)
* bug #57617 [PropertyInfo] Handle collection in PhpStan same as PhpDoc (mtarld)
* bug #54057 [Messenger] Passing actual `Envelope` to `WorkerMessageRetriedEvent` (daffoxdev)
* bug #57645 [Routing] Discard in-memory cache of routes when writing the file-based cache (mpdude)
* bug #57621 [Mailer]  force HTTP 1.1 for Mailgun API requests (xabbuh)
* bug #57616 [String] Revert "Fixed u()->snake(), b()->snake() and s()->snake() methods" (nicolas-grekas)
* bug #57593 [SecurityBundle] Compare paths after realpath() has been applied to both (xabbuh)
* bug #57594 [String] Normalize underscores in snake() (xabbuh)
* bug #57585 [HttpFoundation] Fix MockArraySessionStorage to generate more conform ids (Seldaek)
* bug #57589 [FrameworkBundle] fix AssetMapper usage without assets enabled (xabbuh)

* 6.4.9 (2024-06-28)

* bug #57553 [HttpKernel] Enable optional cache-warmers when cache-dir != build-dir (nicolas-grekas)
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.4.10-DEV';
public const VERSION = '6.4.10';
public const VERSION_ID = 60410;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 10;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '11/2026';
public const END_OF_LIFE = '11/2027';
Expand Down