Skip to content

Commit

Permalink
Merge pull request #57291 from fabpot/release-6.4.8
Browse files Browse the repository at this point in the history
released v6.4.8
  • Loading branch information
fabpot committed Jun 2, 2024
2 parents 97d734f + 370131b commit 817a4b2
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG-6.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,49 @@ 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.8 (2024-06-02)

* bug #57284 [Mime] Fix TextPart using an unknown File (fabpot)
* bug #57282 [Scheduler] Throw an exception when no dispatcher has been passed to a Schedule (fabpot)
* bug #57275 Fix autoload configs to avoid warnings when building optimized autoloaders (Seldaek)
* bug #54572 [Mailer] Fix sendmail transport failure handling and interactive mode (bobvandevijver)
* bug #57228 [Mime] fix PHP 7 compatibility (xabbuh)
* bug #57065 [Mime] Fixed `Mime\Message::ensureValidity()` when a required header is set, but has an empty body (rhertogh)
* bug #57109 [Notifier] keep boolean options when their value is false (xabbuh)
* bug #54971 [Serializer] Cache readability/writability computation (mtarld)
* bug #56488 [VarExporter] Fix exporting default values involving global constants (kylekatarnls)
* bug #49186 [Serializer] Improve exception message in UnwrappingDenormalizer (andersonamuller)
* bug #54694 [PropertyInfo] Update DoctrineExtractor for new DBAL 4 BIGINT type (llupa)
* bug #54913 [Serializer] Fix CurrentType for missing property (ElisDN)
* bug #54797 [PhpUnitBridge] Fix `DeprecationErrorHandler` with PhpUnit 10 (HypeMC)
* bug #54878 [Filesystem] Fix dumpFile `stat failed` error hitting custom handler (acoulton)
* bug #54924 [Validator] IBAN Check digits should always between 2 and 98 (karstennilsen)
* bug #54919 [ErrorHandler] Do not call xdebug_get_function_stack() with xdebug >= 3.0 when not in develop mode (fmata)
* bug #54910 [HttpFoundation]  filter out empty HTTP header parts (xabbuh)
* bug #54888 [String] Fix folded in compat mode (smnandre)
* bug #54863 [Process] Return `false` when `open_basedir` prevents access to `/dev/tty` (mjauvin)
* bug #54860 [HttpClient] Revert fixing curl default options (alexandre-daubois)
* bug #54850 [VarExporter] fix `ProxyHelper::generateLazyProxy()` when a method returns null (nikophil)
* bug #54842 [Messenger] Don't drop stamps when message validation fails (valtzu)
* bug #54838 [WebProfilerBundle] Fix assignment to constant variable (HypeMC)
* bug #54837 [Mailer] [Sendgrid] Use `DataPart::getContentId()` when `DataPart::setContentId()` is used (SherinBloemendaal)
* bug #54839 Fix exception thrown during `LDAP_MODIFY_BATCH_REMOVE_ALL` batch operations (phasdev)
* bug #54834 [Validator] Check `Locale` class existence before using it (alexandre-daubois)
* bug #54830 [HttpClient] Fix cURL default options for PHP 8.4 (alexandre-daubois)
* bug #54828 [Serializer] Fix `GetSetMethodNormalizer` not working with setters with optional args (HypeMC)
* bug #54816 [Cache] Fix support for predis/predis:^2.0 (mfettig)
* bug #54804 [Serializer] separate the property info and write info extractors (xabbuh)
* bug #54800 [WebProfilerBundle] fix compatibility with Twig 3.10 (xabbuh)
* bug #54794 [Strings][EnglishInflector] Fix incorrect pluralisation of 'Album' (timporter)
* bug #54714 [Serializer] convert empty CSV header names into numeric keys (xabbuh)
* bug #54775 [Messenger] accept AbstractAsset instances when filtering schemas (xabbuh)
* bug #54758 [Validator] handle edge cases when constructing constraints with named arguments (xabbuh)
* bug #54759 [Filesystem] better distinguish URL schemes and Windows drive letters (xabbuh)
* bug #54791 [FrameworkBundle] move wiring of the property info extractor to the ObjectNormalizer (xabbuh)
* bug #54760 [Validator] handle union and intersection types for cascaded validations (xabbuh)
* bug #54776 [Cache] fix: remove unwanted cast to int (Arend Hummeling)
* bug #54700 [Dotenv] show overridden vars too when running debug:dotenv (HMRDevil)

* 6.4.7 (2024-04-29)

* bug #54699 [DoctrineBridge] Update AbstractSchemaListener to adjust more database params (ywisax)
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.8-DEV';
public const VERSION = '6.4.8';
public const VERSION_ID = 60408;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 8;
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

0 comments on commit 817a4b2

Please sign in to comment.