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 228a275

Browse filesBrowse files
authored
Merge pull request #52790 from fabpot/release-6.4.0
released v6.4.0
2 parents d04ef91 + 68c0ba5 commit 228a275
Copy full SHA for 228a275

File tree

2 files changed

+12
-2
lines changed
Filter options

2 files changed

+12
-2
lines changed

‎CHANGELOG-6.4.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.4.md
+10Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ 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 (2023-11-29)
11+
12+
* bug #52786 [Serializer] Revert allowed attributes fix (mtarld)
13+
* bug #52765 [Translation] Remove ``@internal`` from abstract testcases (OskarStark)
14+
* bug #52780 [DependencyInjection] don't check parameter values if they are not set (xabbuh)
15+
* bug #52762 [VarExporter] Work around php/php-src#12695 for lazy objects, fixing nullsafe-related behavior (nicolas-grekas)
16+
* bug #52759 [VarExporter] Fix serializing objects that implement __sleep() and that are made lazy (nicolas-grekas)
17+
* bug #52767 [Serializer] Fix normalization relying on allowed attributes only (mtarld)
18+
* bug #52727 [String] Fix Inflector for 'icon' (podhy)
19+
1020
* 6.4.0-RC2 (2023-11-26)
1121

1222
* bug #52724 [Security] make secret required for DefaultLoginRateLimiter (RobertMe)

‎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';
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 = '';
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.