File tree Expand file tree Collapse file tree
Open diff view settings
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree
Open diff view settings
Original file line number Diff line number Diff line change @@ -7,6 +7,25 @@ in 8.0 minor versions.
77To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v8.0.0...v8.0.1
99
10+ * 8.0.10 (2026-05-06)
11+
12+ * bug #63761 [ Scheduler] Fix checkpoint state expiring when cache has default TTL (Amoifr)
13+ * bug #64141 [ DependencyInjection] Fix lazy-autowiring an already-lazy service (nicolas-grekas)
14+ * bug #64138 [ Translation] Fix ` TranslationPushCommand::getDomainsFromTranslatorBag ` (MatTheCat)
15+ * bug #63744 [ Validator] Fix Compound constraint with nested Composite and validation groups (Amoifr)
16+ * bug #63757 [ Messenger] [ AmazonSqs ] Do not override queue-level DelaySeconds when no DelayStamp is set (psantus)
17+ * bug #64122 [ Cache] Ensure compatibility with Relay extension 0.22.0 (nicolas-grekas)
18+ * bug #64119 [ Yaml] fix flow collection drops ` &anchor ` and ` !!str &anchor ` items (ousamabenyounes)
19+ * bug #64016 [ Mailer] [ AzureMailer ] Fix inline attachments (kohlerdominik)
20+ * bug #64086 [ Messenger] Move ` --time-limit ` handling to Worker for proper capping with ` --sleep ` (Toflar)
21+ * bug #63858 [ Cache] Remove conflict with dbal<4.3 (flack)
22+ * bug #64103 [ AssetMapper] Stop baking CSP nonce into the importmap polyfill body (ousamabenyounes)
23+ * bug #64106 [ Config] Normalize ` backed-enum ` in array shapes (MatTheCat)
24+ * bug #64100 [ Translation] URL-encode tmp path in XliffUtils::shouldEnableEntityLoader (ousamabenyounes)
25+ * bug #64095 [ RateLimiter] Carry over reserved tokens past fixed window resets (ousamabenyounes)
26+ * bug #64111 [ Serializer] Fix low deps (nicolas-grekas)
27+ * bug #64099 [ Ldap] Cast ` default_socket_timeout ` to ` int ` (ousamabenyounes)
28+
1029* 8.0.9 (2026-05-01)
1130
1231 * bug #64090 [ DependencyInjection] Reject circular references through a factory builder's setup (nicolas-grekas)
Original file line number Diff line number Diff line change @@ -72,12 +72,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7272 */
7373 private static array $ freshCache = [];
7474
75- public const VERSION = '8.0.10-DEV ' ;
75+ public const VERSION = '8.0.10 ' ;
7676 public const VERSION_ID = 80010 ;
7777 public const MAJOR_VERSION = 8 ;
7878 public const MINOR_VERSION = 0 ;
7979 public const RELEASE_VERSION = 10 ;
80- public const EXTRA_VERSION = 'DEV ' ;
80+ public const EXTRA_VERSION = '' ;
8181
8282 public const END_OF_MAINTENANCE = '07/2026 ' ;
8383 public const END_OF_LIFE = '07/2026 ' ;
You can’t perform that action at this time.
0 commit comments