From 48c6da02078e124d258d7b1cf9232517e777b405 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 13 Nov 2024 15:25:29 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 7.1.8 --- CHANGELOG-7.1.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG-7.1.md b/CHANGELOG-7.1.md index cb20690e32d8f..747dcf2c9962c 100644 --- a/CHANGELOG-7.1.md +++ b/CHANGELOG-7.1.md @@ -7,6 +7,22 @@ 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.8 (2024-11-13) + + * security #cve-2024-50342 [HttpClient] Resolve hostnames in NoPrivateNetworkHttpClient (nicolas-grekas) + * security #cve-2024-51996 [Security] Check owner of persisted remember-me cookie (jderusse) + * bug #58799 [String] Fix some spellings in `EnglishInflector` (alexandre-daubois) + * bug #58823 [TwigBridge] Fix emojify as function in Undefined Handler (smnandre) + * bug #56868 [Serializer] fixed object normalizer for a class with `cancel` method (er1z) + * bug #58601 [RateLimiter] Fix bucket size reduced when previously created with bigger size (Orkin) + * bug #58659 [AssetMapper] Fix `JavaScriptImportPathCompiler` regex for non-latin characters (GregRbs92) + * bug #58658 [Twitter][Notifier] Fix post INIT upload (matyo91) + * bug #58705 [Serializer] Revert Default groups (mtarld) + * bug #58763 [Messenger][RateLimiter] fix additional message handled when using a rate limiter (Jean-Beru) + * bug #58791 [RateLimiter] handle error results of DateTime::modify() (xabbuh) + * bug #58804 [Serializer][TypeInfo] fix support for phpstan/phpdoc-parser 2 (xabbuh) + * bug #58800 [PropertyInfo] fix support for phpstan/phpdoc-parser 2 (xabbuh) + * 7.1.7 (2024-11-06) * bug #58772 [DoctrineBridge] Backport detection fix of Xml/Yaml driver in DoctrineExtension (MatTheCat) From 101de82233f5d3d05a6f5ec451a6f1391c8ebcd3 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 13 Nov 2024 15:25:32 +0100 Subject: [PATCH 2/2] Update VERSION for 7.1.8 --- 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 5bce80509b417..41f16f410afdd 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.8-DEV'; + public const VERSION = '7.1.8'; public const VERSION_ID = 70108; public const MAJOR_VERSION = 7; public const MINOR_VERSION = 1; public const RELEASE_VERSION = 8; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2025'; public const END_OF_LIFE = '01/2025';