File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Filter options
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Original file line number Diff line number Diff line change @@ -7,6 +7,16 @@ in 6.4 minor versions.
7
7
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
8
8
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.4.0...v6.4.1
9
9
10
+ * 6.4.5 (2024-03-04)
11
+
12
+ * bug #54113 [ AssetMapper] Throw exception in Javascript compiler when PCRE error (smnandre)
13
+ * bug #54129 [ Clock] Add attributes to support PHPUnit 10 + 11 (ruudk)
14
+ * bug #54079 [ AssetMapper] Fix ` JavaScriptImportPathCompiler ` regression in regex (PhilETaylor)
15
+ * bug #54102 [ HttpClient] Fix deprecation on PHP 8.3 (nicolas-grekas)
16
+ * bug #54089 [ Mailer] [ Brevo] Remove tags from mandatory event arguments (palgalik)
17
+ * bug #54081 [ DoctrineBridge] Safeguard dynamic access to Doctrine metadata properties (derrabus)
18
+ * bug #54080 [ Routing] Enhance error handling in StaticPrefixCollection for compatibility with libpcre2-10.43 (Lustmored)
19
+
10
20
* 6.4.4 (2024-02-27)
11
21
12
22
* bug #53985 [ HttpKernel] Allow tagged controllers in ControllerResolver (marein)
Original file line number Diff line number Diff line change @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
76
76
*/
77
77
private static array $ freshCache = [];
78
78
79
- public const VERSION = '6.4.5-DEV ' ;
79
+ public const VERSION = '6.4.5 ' ;
80
80
public const VERSION_ID = 60405 ;
81
81
public const MAJOR_VERSION = 6 ;
82
82
public const MINOR_VERSION = 4 ;
83
83
public const RELEASE_VERSION = 5 ;
84
- public const EXTRA_VERSION = 'DEV ' ;
84
+ public const EXTRA_VERSION = '' ;
85
85
86
86
public const END_OF_MAINTENANCE = '11/2026 ' ;
87
87
public const END_OF_LIFE = '11/2027 ' ;
You can’t perform that action at this time.
0 commit comments