Skip to content

Commit 04a5541

Browse files
authored
Merge pull request #62272 from fabpot/release-8.0.0-BETA2
released v8.0.0-BETA2
2 parents b925625 + 2768b0e commit 04a5541

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG-8.0.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ 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-BETA2 (2025-11-02)
11+
12+
* feature #62270 [Lock][DynamoDB] Allow symfony/lock 8.0 (DavidPrevot)
13+
* bug #62267 [Config] Use the empty string instead of null as an array offset (santysisi)
14+
* feature #62266 [Mailer][MicrosoftGraph] Bump to PHP >= 8.4 (santysisi)
15+
* bug #62261 [Cache] Add missing SQLitePlatform use statement in DoctrineDbalAdapter (yoeunes)
16+
* feature #62230 [Messenger] Support signing messages per handler (nicolas-grekas)
17+
* bug #62246 [HttpFoundation] Allow Request::setFormat() to override predefined formats (longwave)
18+
* feature #60153 [Serializer] Allow forcing timezone in `DateTimeNormalizer` during denormalization (frankdekker)
19+
* bug #62240 [DomCrawler] Handle malformed tags in HTML5 parser (longwave)
20+
* bug #62242 [MonologBridge] Accept HttpExceptionInterface in HttpCodeActivationStrategy (GromNaN)
21+
* bug #62222 [Cache] fix ext-redis 6.2.0 compatibility (xabbuh)
22+
* bug #62211 [Workflow] State contamination due to class-based setter cache (nicolas-grekas)
23+
* bug #62184 [EventDispatcher][FrameworkBundle] Rework union types on `#[AsEventListener]` (HypeMC)
24+
* bug #62199 [Workflow] State Contamination in Marking Stores due to Class-based Getter Cache (siganushka)
25+
* bug #62197 [Validator] Fix call to undefined getParser() in YamlValidator (yoeunes)
26+
* bug #62203 [Mailer] Fix contentId assignment for inline attachments (webflo)
27+
* bug #62201 [HtmlSanitizer] Remove `srcdoc` from allowed attributes (Spomky)
28+
* feature #62190 [Runtime] Expose `project_dir` as `APP_PROJECT_DIR` env var (nicolas-grekas)
29+
* bug #62191 [FrameworkBundle] Change HttpCache directory to use new getShareDir (alexander-schranz)
30+
* bug #62169 [HttpClient] Fix caching client decorating scoping client (pierredup)
31+
* bug #62185 [FrameworkBundle] Add missing `container.excluded` to `serializer.attribute_metadata` (HypeMC)
32+
* bug #62186 [DomCrawler] Fix converting HTML5 trees to DOM nodes (nicolas-grekas)
33+
* bug #62182 [VarDumper] Fix dumping CurlHttpClient instances (nicolas-grekas)
34+
* bug #62180 [DomCrawler] Properly ignore errors when using the native HTML5 parser (nicolas-grekas)
35+
* bug #62178 [FrameworkBundle] Expose share directory in AboutCommand (ro0NL)
36+
* bug #62167 [Lock][DynamoDB] Enable `http_client` injection and fix tests using AmpV5 client (GromNaN)
37+
* feature #62170 [HttpKernel] Add `KernelInterface::getShareDir()`, `APP_SHARE_DIR` and `kernel.share_dir` (nicolas-grekas)
38+
1039
* 8.0.0-BETA1 (2025-10-27)
1140

1241
* feature #59974 [Runtime] Make project_dir configurable (wickedOne)

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-BETA2';
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 = 'BETA2';
8080

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

0 commit comments

Comments
 (0)