Skip to content

Commit 4e0f8e1

Browse files
authored
Merge pull request symfony#54765 from fabpot/release-6.4.7
released v6.4.7
2 parents ea61ad3 + be31b0b commit 4e0f8e1

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

CHANGELOG-6.4.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ 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.7 (2024-04-29)
11+
12+
* bug #54699 [DoctrineBridge] Update AbstractSchemaListener to adjust more database params (ywisax)
13+
* bug #54691 [Finder] Also consider .git inside the basedir of in() directory (nickvergessen)
14+
* bug #54724 [AssetMapper] Check asset/vendor directory is writable (smnandre)
15+
* bug #54750 [Validator] detect wrong usages of minMessage/maxMessage in options (xabbuh)
16+
* bug #54751 [Validator]  detect wrong e-mail validation modes (xabbuh)
17+
* bug #54723 [Form] read form values using the chain data accessor (xabbuh)
18+
* bug #54706 [Yaml] call substr() with integer offsets (xabbuh)
19+
* bug #54675 [PropertyInfo] Fix PHPStan properties type in trait (mtarld)
20+
* bug #54673 [Messenger] explicitly cast boolean SSL stream options (xabbuh)
21+
* bug #54665 Add test for AccessTokenHeaderRegex and adjust regex (Spomky)
22+
* bug #54635 [Serializer] Revert "Fix object normalizer when properties has the same name as their accessor" - it was a BC Break (NeilPeyssard)
23+
* bug #54625 [Intl] Remove resources data from classmap generation (shyim)
24+
* bug #54598 [TwigBridge]  implement NodeVisitorInterface instead of extending AbstractNodeVisitor (xabbuh)
25+
* bug #54072 [HttpKernel] Fix datacollector caster for reference object property (ebuildy)
26+
* bug #54395 [Serializer] Fixing PHP warning in the ObjectNormalizer with MaxDepth enabled (jaydiablo)
27+
* bug #54564 [Translation] Skip state=needs-translation entries only when source == target (nicolas-grekas)
28+
* bug #54579 [Cache] Always select database for persistent redis connections (uncaught)
29+
* bug #54059 [Security] Validate that CSRF token in form login is string similar to username/password (glaubinix)
30+
* bug #54530 [Clock] initialize the current time with midnight before modifying the date (xabbuh)
31+
* bug #54547 [HttpKernel] Force non lazy controller services (smnandre)
32+
* bug #54517 [HttpClient] Let curl handle transfer encoding (michaelhue)
33+
* bug #52917 [Serializer] Fix unexpected allowed attributes (mtarld)
34+
* bug #54063 [FrameworkBundle] Fix registration of the bundle path to translation (FlyingDR)
35+
* bug #54392 [Messenger] Make Doctrine connection ignore unrelated tables on setup (MatTheCat)
36+
* bug #54513 [HtmlSanitizer] Ignore Processing Instructions (smnandre)
37+
* bug #54506 [HttpFoundation] Set content-type header in RedirectResponse (smnandre)
38+
* bug #52698 [Serializer] Fix XML scalar to object denormalization (mtarld)
39+
* bug #54485 [Serializer] Ignore when using #[Ignore] on a non-accessor (nicolas-grekas)
40+
* bug #54105 [Messenger] Improve deadlock handling on `ack()` and `reject()` (jwage)
41+
* bug #54242 [HttpClient] [EventSourceHttpClient] Fix consuming SSEs with \r\n separator (fancyweb)
42+
* bug #54487 [Validator] Accept `Stringable` in `ExecutionContext::build/addViolation()` (alexandre-daubois)
43+
* bug #54456 [DomCrawler] Encode html entities only if nessecary (ausi)
44+
* bug #54484 [Serializer] reset backed_enum priority, and re-prioritise translatable (GwendolenLynch)
45+
* bug #54471 [Filesystem] Strengthen the check of file permissions in `dumpFile` (alexandre-daubois)
46+
* bug #54403 [FrameworkBundle] [Command] Fix #54402: Suppress PHP warning when is_readable() tries to access dirs outside of open_basedir restrictions (Jeldrik Geraedts)
47+
* bug #54440 [Console] return null when message with name is not set (xabbuh)
48+
* bug #54468 [Translation] Fix LocaleSwitcher throws when intl not loaded (smnandre)
49+
1050
* 6.4.6 (2024-04-03)
1151

1252
* bug #54400 [HttpClient] stop all server processes after tests have run (xabbuh)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.7-DEV';
79+
public const VERSION = '6.4.7';
8080
public const VERSION_ID = 60407;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 7;
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)