Skip to content

Commit

Permalink
Merge pull request #52599 from fabpot/release-6.4.0-RC1
Browse files Browse the repository at this point in the history
released v6.4.0-RC1
  • Loading branch information
fabpot committed Nov 15, 2023
2 parents de3d115 + a4cf063 commit b0f5d7e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG-6.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ in 6.4 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.4.0...v6.4.1

* 6.4.0-RC1 (2023-11-15)

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

* 6.4.0-BETA3 (2023-11-10)

* bug #51666 [RateLimiter] CompoundLimiter was accepting requests even when some limiters already consumed all tokens (10n)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.4.0-DEV';
public const VERSION = '6.4.0-RC1';
public const VERSION_ID = 60400;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = 'RC1';

public const END_OF_MAINTENANCE = '11/2026';
public const END_OF_LIFE = '11/2027';
Expand Down

0 comments on commit b0f5d7e

Please sign in to comment.