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 b0f5d7e

Browse filesBrowse files
authored
Merge pull request #52599 from fabpot/release-6.4.0-RC1
released v6.4.0-RC1
2 parents de3d115 + a4cf063 commit b0f5d7e
Copy full SHA for b0f5d7e

File tree

2 files changed

+11
-2
lines changed
Filter options

2 files changed

+11
-2
lines changed

‎CHANGELOG-6.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.4.md
+9Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ in 6.4 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/v6.4.0...v6.4.1
99

10+
* 6.4.0-RC1 (2023-11-15)
11+
12+
* bug #52588 [Messenger] Use extension_loaded call to check if pcntl extension is loaded, as SIGTERM might be set be swoole (Sergii Dolgushev)
13+
* bug #52567 [AssetMapper] Fixing js sourceMappingURL extraction when sourceMappingURL used in code (weaverryan)
14+
* bug #52579 [DomCrawler] UriResolver support path with colons (vdauchy)
15+
* bug #52581 [Messenger] attach all required parameters to query (xabbuh)
16+
* feature #52568 [VarExporter] Deprecate per-property lazy-initializers (nicolas-grekas)
17+
* feature #52560 [Mailer] Update default Mailjet port (Katario)
18+
1019
* 6.4.0-BETA3 (2023-11-10)
1120

1221
* bug #51666 [RateLimiter] CompoundLimiter was accepting requests even when some limiters already consumed all tokens (10n)

‎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
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676
*/
7777
private static array $freshCache = [];
7878

79-
public const VERSION = '6.4.0-DEV';
79+
public const VERSION = '6.4.0-RC1';
8080
public const VERSION_ID = 60400;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 0;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = 'RC1';
8585

8686
public const END_OF_MAINTENANCE = '11/2026';
8787
public const END_OF_LIFE = '11/2027';

0 commit comments

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