Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 04f9305

Browse filesBrowse files
authored
data #64377 Release v8.1.0-RC1
Release v8.1.0-RC1
2 parents f05cf45 + 8d65fc6 commit 04f9305
Copy full SHA for 04f9305

2 files changed

+39-2Lines changed: 39 additions & 2 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎CHANGELOG-8.1.md‎

Copy file name to clipboardExpand all lines: CHANGELOG-8.1.md
+37Lines changed: 37 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ in 8.1 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.1.0...v8.1.1
99

10+
* 8.1.0-RC1 (2026-05-27)
11+
12+
* security #cve-2026-48747 [Mailer] Pin Mailomat webhook signature algorithm to SHA-256 (nicolas-grekas)
13+
* security #cve-2026-48761 [HtmlSanitizer] Sanitize URL attributes on <object>, <applet>, <iframe>, <img>, and the URL inside <meta http-equiv="refresh"> content (nicolas-grekas)
14+
* security #cve-2026-48760 [HtmlSanitizer] Reject percent-encoded BiDi marks and Unicode whitespace in URLs (nicolas-grekas)
15+
* security #cve-2026-48736 [HttpFoundation] Block IPv6 transition forms in IpUtils::PRIVATE_SUBNETS (nicolas-grekas)
16+
* security #cve-2026-48736 [HttpClient] Block IPv6 transition forms in NoPrivateNetworkHttpClient (nicolas-grekas)
17+
* security #cve-2026-48489 [Security] Don't honor user-supplied _failure_path on failure_forward (nicolas-grekas)
18+
* security #cve-2026-48784 [Routing] Fix dot-segment encoding for chained "../" and "./" in generated URLs (nicolas-grekas)
19+
* bug #64356 [Tui] Throw when ext-zip is not installed and one tries to load a zipped figlet (nicolas-grekas)
20+
* bug #64355 [Console] Format message in ConsoleSectionOutput::overwrite() (nicolas-grekas)
21+
* bug #64349 [HttpClient] ntlm regression on authPersistNonNTLM=false connections with reset() (Dooij)
22+
* bug #64348 [FrameworkBundle] Allow to pass `doctrine_open_transaction_logger`’s entity manager name positionally (MatTheCat)
23+
* feature #64334 [Form] Add `handle_missing_data` option to opt into MissingDataHandler for absent forms (hlecorche)
24+
* bug #64345 [Mime][String] Reject objects in typed-string properties during __unserialize (nicolas-grekas)
25+
* bug #64344 [Mailer][Notifier] Harden Mailchimp signature comparison and Smsbox IP allowlist (nicolas-grekas)
26+
* bug #64330 [Cache] Fix strlen(null) deprecation on RelayCluster path in RedisTrait::doClear() (signor-pedro)
27+
* bug #64335 [Scheduler] Recover pending RecurringMessages after consumer stops midway (ousamabenyounes)
28+
* bug #64338 [SecurityBundle] Fix Security::login() across firewalls (ousamabenyounes)
29+
* bug #64347 [Process] Stop leaking CGI/FastCGI request-context vars to subprocesses (nicolas-grekas)
30+
* bug #64343 [Mime][RateLimiter][Routing][Security] Harden __unserialize against __toString trampolines (nicolas-grekas)
31+
* bug #64342 [HtmlSanitizer] Honor universal attribute sanitizers, apply maxInputLength to text contexts, document forceAttribute and allowAttribute caveats (nicolas-grekas)
32+
* bug #64341 [FrameworkBundle][Mailer] Harden default IP allowlist for Postmark and Brevo webhook parsers (nicolas-grekas)
33+
* bug #64337 [Security] Initialize lazy users before serializing them (MatTheCat)
34+
* bug #64346 [Runtime] Trust argv on CLI-like SAPIs to fix subprocess args (nicolas-grekas)
35+
* bug #64336 [Cache] Accept '_' and ':' in prefix passed to AbstractAdapter::clear() (nicolas-grekas)
36+
* bug #64316 [Yaml] Allow trailing newlines after the end-of-document marker (nicolas-grekas)
37+
* bug #64289 [Translation] Don’t check the error message to know if Lokalise keys are missing (MatTheCat)
38+
* bug #64208 [AssetMapper] Rewrite relative paths in `export ... from` statements (ousamabenyounes)
39+
* bug #64311 [DependencyInjection] Fix `service()` as invokable factory in array-based PHP config (nicolas-grekas)
40+
* feature #64312 [FrameworkBundle][Validator] Add `framework.validation.property_metadata_existence_check` config (nicolas-grekas)
41+
* bug #64310 [HttpKernel][WebProfilerBundle] Check logs priority name for both `WARNING` and `warning` (MatTheCat)
42+
* bug #64260 [HttpClient] Various fixes and hardenings (Lctrs)
43+
* bug #64234 [Tui] Fix unattached widget element styles (masskrdjn)
44+
* bug #64309 [FrameworkBundle] Sign transports for unrouted messages too (nicolas-grekas)
45+
* bug #64223 [Tui] Fix invisible border with null color in BorderPattern's inverse strategies (sblondeau)
46+
1047
* 8.1.0-BETA3 (2026-05-20)
1148

1249
* security #cve-2026-46626 [Runtime] Fix CVE-2024-50340 patch bypass by gating argv on $_SERVER['QUERY_STRING'] (nicolas-grekas)
Collapse file

‎src/Symfony/Component/HttpKernel/Kernel.php‎

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ abstract class Kernel extends AbstractKernel implements KernelInterface, Reboota
4545
private bool $resetServices = false;
4646
private bool $handlingHttpCache = false;
4747

48-
public const VERSION = '8.1.0-DEV';
48+
public const VERSION = '8.1.0-RC1';
4949
public const VERSION_ID = 80100;
5050
public const MAJOR_VERSION = 8;
5151
public const MINOR_VERSION = 1;
5252
public const RELEASE_VERSION = 0;
53-
public const EXTRA_VERSION = 'DEV';
53+
public const EXTRA_VERSION = 'RC1';
5454

5555
public const END_OF_MAINTENANCE = '01/2027';
5656
public const END_OF_LIFE = '01/2027';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.