Skip to content

Commit 96e1ef4

Browse files
authored
Merge pull request #62414 from fabpot/release-8.0.0-RC2
released v8.0.0-RC2
2 parents b34ec0e + 2cba495 commit 96e1ef4

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG-8.0.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ in 8.0 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v8.0.0...v8.0.1
99

10+
* 8.0.0-RC2 (2025-11-16)
11+
12+
* bug #62411 [HttpKernel] Conflict with symfony/flex < 2.10 (nicolas-grekas)
13+
* bug #62409 [Yaml] Align unquoted multiline scalar parsing with spec for comments (yoeunes)
14+
* bug #62398 [Cache] Fix accepting named closures as early-expiration callbacks (nicolas-grekas)
15+
* bug #62406 [Notifier] do not use recipient phone numbers as sender e-mail addresses (xabbuh)
16+
* bug #62407 [FrameworkBundle] work around limitation in `JsonResponse` when the data is `null` (xabbuh)
17+
* bug #62402 [FrameworkBundle] Revert auto-import of #[Route] defined on controllers (nicolas-grekas)
18+
* bug #62400 [Form] Fix EnumType choice_label logic for grouped choices (yoeunes)
19+
* bug #62369 [Security] Set OIDC JWKS cache TTL from provider headers (Ali-HENDA)
20+
* bug #62393 [Dependencyinjection] Call default index method when index is not provided by tag (yoeunes)
21+
* bug #62372 [Cache] Recognize saveDeferred events as writes in `CacheDataCollector` (yitznewton)
22+
* bug #62389 [Routing] Align routing.schema.json with YamlFileLoader behavior (yoeunes)
23+
1024
* 8.0.0-RC1 (2025-11-13)
1125

1226
* bug #62335 [Console] Fix signal handlers not being cleared after command termination (yoeunes)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7171
*/
7272
private static array $freshCache = [];
7373

74-
public const VERSION = '8.0.0-DEV';
74+
public const VERSION = '8.0.0-RC2';
7575
public const VERSION_ID = 80000;
7676
public const MAJOR_VERSION = 8;
7777
public const MINOR_VERSION = 0;
7878
public const RELEASE_VERSION = 0;
79-
public const EXTRA_VERSION = 'DEV';
79+
public const EXTRA_VERSION = 'RC2';
8080

8181
public const END_OF_MAINTENANCE = '07/2026';
8282
public const END_OF_LIFE = '07/2026';

0 commit comments

Comments
 (0)