From c4ff3f67f207e2ddb448cc815d696492b83f97c1 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 31 May 2024 09:46:26 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 7.1.0 --- CHANGELOG-7.1.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG-7.1.md b/CHANGELOG-7.1.md index 78fc0fb2f693d..3f492b322276e 100644 --- a/CHANGELOG-7.1.md +++ b/CHANGELOG-7.1.md @@ -7,6 +7,21 @@ in 7.1 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/v7.1.0...v7.1.1 +* 7.1.0 (2024-05-31) + + * bug #57248 [DoctrineBridge] Revert deprecating by-{id} mapping of entities (nicolas-grekas) + * 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 #57069 [Config] gracefully handle cases when no resolver is set (xabbuh) + * bug #57109 [Notifier] keep boolean options when their value is false (xabbuh) + * bug #56848 [DoctrineBridge] Undeprecate DoctrineExtractor::getTypes() (derrabus) + * bug #54971 [Serializer] Cache readability/writability computation (mtarld) + * bug #54979 [Cache] Fix irrelevant deprecation when connecting to Couchbase (derrabus) + * bug #56827 Fix CharsetValidator with string encoding (alamirault) + * bug #54977 [DependencyInjection] Fix prepending strategy for php config loader (yceruto) + * bug #56488 [VarExporter] Fix exporting default values involving global constants (kylekatarnls) + * 7.1.0-RC1 (2024-05-17) * bug #54970 [DependencyInjection] Process PHP configs using the ContainerConfigurator (MatTheCat) From 4f6752adab9e1ecc50e4c4cce12efabd5d88f1ae Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 31 May 2024 09:46:30 +0200 Subject: [PATCH 2/2] Update VERSION for 7.1.0 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 6816457cbee87..a3269806200b8 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static array $freshCache = []; - public const VERSION = '7.1.0-DEV'; + public const VERSION = '7.1.0'; public const VERSION_ID = 70100; public const MAJOR_VERSION = 7; public const MINOR_VERSION = 1; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2025'; public const END_OF_LIFE = '01/2025';