8000 Merge pull request #58345 from fabpot/release-6.4.12 · symfony/symfony@5532c34 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5532c34

Browse files
authored
Merge pull request #58345 from fabpot/release-6.4.12
released v6.4.12
2 parents 4ff29e4 + 461bdd7 commit 5532c34

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG-6.4.md

+25
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ 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.12 (2024-09-21)
11+
12+
* bug #58339 [Notifier] allow the Novu bridge to be used with symfony/notifier 7.x (xabbuh)
13+
* bug #58327 [FrameworkBundle] Do not access the container when the kernel is shut down (jderusse)
14+
* bug #58316 [Form] Don't call the constructor of LogicalOr (derrabus)
15+
* bug #58290 [FrameworkBundle] fix XSD to allow to configure locks without resources (xabbuh)
16+
* bug #58291 [Process] Fix finding executables independently of open_basedir (BlackbitDevs)
17+
* bug #58279 [Yaml] parse empty sequence elements as null (xabbuh)
18+
* bug #58289 [HttpKernel] Skip logging uncaught exceptions in `ErrorHandler`, assume `$kernel->terminateWithException()` will do it (nicolas-grekas)
19+
* bug #58185 [Filesystem] make sure temp files can be cleaned up on Windows (xabbuh)
20+
* bug #58226 [Serializer] Fix for method named `get()` (mihai-stancu)
21+
* bug #58242 [Notifier][TurboSMS] Process partial accepted response from transport (ZhukV)
22+
* bug #58260 [Cache] Fix RedisSentinel param types (Paweł Stasicki)
23+
* bug #58278 [HttpClient] Fix setting `CURLMOPT_MAXCONNECTS` (HypeMC)
24+
* bug #58274 [Dotenv] throw a meaningful exception when parsing dotenv files with BOM (xabbuh)
25+
* bug #58240 [FrameworkBundle] Fix service reset between tests (HypeMC)
26+
* bug #58266 [HttpKernel] pass CSV escape characters explicitly (xabbuh)
27+
* bug #58181 [HttpFoundation] Update links for `X-Accel-Redirect` and fail properly when `X-Accel-Mapping` is missing (nicolas-grekas)
28+
* bug #58195 [Process] Fix the removal of host-specific configuration when managing the ini settings in `PhpSubprocess` (M-arcus)
29+
* bug #58218 Work around `parse_url()` bug (nicolas-grekas)
30+
* bug #58207 [TwigBridge] Avoid calling deprecated mergeGlobals() (derrabus)
31+
* bug #58198 [TwigBundle] Add support for resetting globals between HTTP requests (fabpot)
32+
* bug #58169 [Cache] Fix compatibility with Redis 6.1.0 pre-releases (cedric-anne)
33+
* bug #58143 [Ldap] Fix extension deprecation (alexandre-daubois)
34+
1035
* 6.4.11 (2024-08-30)
1136

1237
* bug #58110 [PropertyAccess] Fix handling property names with a `.` (alexandre-daubois)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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.12-DEV';
79+
public const VERSION = '6.4.12';
8080
public const VERSION_ID = 60412;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 12;
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