diff --git a/CHANGELOG-7.0.md b/CHANGELOG-7.0.md index b71c7da646673..f4bc3f7460f11 100644 --- a/CHANGELOG-7.0.md +++ b/CHANGELOG-7.0.md @@ -7,6 +7,41 @@ in 7.0 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.0.0...v7.0.1 +* 7.0.0-RC2 (2023-11-26) + + * bug #52724 [Security] make secret required for DefaultLoginRateLimiter (RobertMe) + * feature #52720 [Cache] Remove database server version detection (derrabus) + * bug #52617 [AssetMapper] Fix resolving jsdeliver default + other exports from modules (ogizanagi) + * feature #52712 [AssetMapper] Exclude dot files (weaverryan) + * bug #52725 [AssetMapper] Fix: also download files referenced by url() in CSS (weaverryan) + * bug #52702 [AssetMapper] Fix eager imports are not deduplicated (smnandre) + * bug #52719 [Mime] Add `TemplatedEmail::$locale` to the serialized props (mkrauser) + * bug #52677 [Translation] [Lokalise] Fix language format on Lokalise Provider (welcoMattic) + * bug #52715 [Cache] fix detecting the database server version (xabbuh) + * bug #52688 [Cache] Add url decoding of password in `RedisTrait` DSN (alexandre-daubois) + * bug #52172 [Serializer] Fix denormalizing empty string into `object|null` parameter (Jeroeny) + * bug #52693 [Messenger] Fix message handlers with multiple `from_transports` (valtzu) + * bug #52684 [PropertyInfo] Fixed promoted property type detection for `PhpStanExtractor` (LastDragon-ru) + * bug #52681 [Serializer] Fix support for DiscriminatorMap in PropertyNormalizer (mtarld) + * bug #52680 [Serializer] Fix access to private properties/getters when using the ``@Ignore`` annotation (mtarld) + * bug #52713 [Serializer] Fix deserialization_path missing using contructor (mtarld) + * bug #52683 [Serializer] Fix constructor deserialization path (mtarld) + * bug #52707 [HttpKernel] Fix logging deprecations to the "php" channel when channel "deprecation" is not defined (nicolas-grekas) + * bug #52589 [Serializer] Fix XML attributes not added on empty node (mtarld) + * bug #52686 [Cache] fix detecting the server version with Doctrine DBAL 4 (xabbuh) + * bug #51797 [MonologBridge] Fix error cannot use object of type as array (vtsykun) + * bug #52629 [Messenger] Fix support for Redis Sentinel using php-redis 6.0.0 (pepeh) + * bug #52656 [FrameworkBundle] Add TemplateController to the list of allowed controllers for fragments (nicolas-grekas) + * bug #52459 [Cache][HttpFoundation][Lock] Fix PDO store not creating table + add tests (HypeMC) + * bug #52626 [Serializer] Fix denormalizing date intervals having both weeks and days (oneNevan) + * bug #52578 [Serializer] Fix denormalize constructor arguments (mtarld) + * bug #52526 Add some more non-countable English nouns (paullallier) + * bug #52604 [FrameworkBundle] register the virtual request stack together with common profiling services (xabbuh) + * bug #52039 [Scheduler] Continue with stored `Checkpoint::$time` on lock (Jeroeny) + * bug #52631 [DomCrawler] Revert "bug #52579 UriResolver support path with colons" (lyrixx) + * bug #52606 [DoctrineBridge] Fix use "attribute" driver by default (vtsykun) + * bug #52618 [VarExporter] Fix handling mangled property names returned by __sleep() (nicolas-grekas) + * 7.0.0-RC1 (2023-11-15) * bug #52597 [DependencyInjection] Fix dumping containers with null-referenced services (nicolas-grekas) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index db2c1de9cc351..5848b24ef7cb8 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl */ private static array $freshCache = []; - public const VERSION = '7.0.0-DEV'; + public const VERSION = '7.0.0-RC2'; public const VERSION_ID = 70000; public const MAJOR_VERSION = 7; public const MINOR_VERSION = 0; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = 'RC2'; public const END_OF_MAINTENANCE = '07/2024'; public const END_OF_LIFE = '07/2024';