Skip to content

Commit

Permalink
Merge pull request #54158 from fabpot/release-6.4.5
Browse files Browse the repository at this point in the history
released v6.4.5
  • Loading branch information
fabpot committed Mar 4, 2024
2 parents 5f78910 + e394573 commit 86b66dc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG-6.4.md
Expand Up @@ -7,6 +7,16 @@ 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.5 (2024-03-04)

* bug #54113 [AssetMapper] Throw exception in Javascript compiler when PCRE error (smnandre)
* bug #54129 [Clock] Add attributes to support PHPUnit 10 + 11 (ruudk)
* bug #54079 [AssetMapper] Fix `JavaScriptImportPathCompiler` regression in regex (PhilETaylor)
* bug #54102 [HttpClient] Fix deprecation on PHP 8.3 (nicolas-grekas)
* bug #54089 [Mailer] [Brevo] Remove tags from mandatory event arguments (palgalik)
* bug #54081 [DoctrineBridge] Safeguard dynamic access to Doctrine metadata properties (derrabus)
* bug #54080 [Routing] Enhance error handling in StaticPrefixCollection for compatibility with libpcre2-10.43 (Lustmored)

* 6.4.4 (2024-02-27)

* bug #53985 [HttpKernel] Allow tagged controllers in ControllerResolver (marein)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.4.5-DEV';
public const VERSION = '6.4.5';
public const VERSION_ID = 60405;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 5;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

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

0 comments on commit 86b66dc

Please sign in to comment.