8000 Merge pull request #52358 from fabpot/release-6.4.0-BETA2 · symfony/symfony@f99a8d2 · GitHub
[go: up one dir, main page]

Skip to content

Commit f99a8d2

Browse files
authored
Merge pull request #52358 from fabpot/release-6.4.0-BETA2
released v6.4.0-BETA2
2 parents 0f67d51 + 9283fc1 commit f99a8d2

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG-6.4.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ 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-BETA2 (2023-10-29)
11+
12+
* bug #52329 [HttpClient] Psr18Client: parse HTTP Reason Phrase for Response (Hanmac)
13+
* bug #52323 [AssetMapper] Allowing circular references in JavaScriptImportPathCompiler (weaverryan)
14+
* bug #52331 [AssetMapper] Fix file deleting errors & remove nullable MappedAsset on JS import (weaverryan)
15+
* bug #52332 [Yaml] Fix deprecated passing null to trim() (javaDeveloperKid)
16+
* bug #52349 [AssetMapper] Fix in-file imports to resolve via filesystem (weaverryan)
17+
* bug #52343 [Intl] Update the ICU data to 74.1 (jderusse)
18+
* bug #52347 [Form] Fix merging form data and files (ter) (Jan Pintr)
19+
* bug #52330 [AssetMapper] Fixing memory bug where we stored way more file content than needed (weaverryan)
20+
* bug #52325 [AssetMapper] jsdelivr "no version" import syntax (weaverryan)
21+
* bug #52307 [Scheduler] Save checkpoint in a finally block (FrancoisPog)
22+
* feature #52193 [PhpUnitBridge] Allow setting the locale using SYMFONY_PHPUNIT_LOCALE env var (VincentLanglet)
23+
* bug #52290 [DebugBundle] ignore a not-existing virtual request stack (xabbuh)
24+
* bug #52308 [SecurityBundle] Fix missing login-link element in xsd schema (fancyweb)
25+
* bug #51331 [Messenger] add handler description as array key to `HandlerFailedException::getWrappedExceptions()` (kbond)
26+
* bug #51992 [Serializer] Fix using `DateIntervalNormalizer` with union types (Jeroeny)
27+
* bug #52276 DB table locks on messenger_messages with many failures (bn-jdcook)
28+
* bug #52232 [Messenger] declare constructor argument as optional for backwards compatibility (xabbuh)
29+
* bug #52254 [AssetMapper] Adding import-parsing case where import contains a path (weaverryan)
30+
* bug #52283 [Serializer] Handle default context when denormalizing timestamps in DateTimeNormalizer (mtarld)
31+
* bug #52272 [VarDump] Fix order of dumped properties - parent goes first (lyrixx)
32+
* bug #52274 [FrameworkBundle] re-introduce conflict rule with WebProfilerBundle < 6.4 (xabbuh)
33+
* bug #52268 [Mailer][Notifier] Update Sendinblue / Brevo API host (Stephanie)
34+
* bug #52255 [Form] Skip merging params & files if there are no files in the first place (dmaicher, priyadi)
35+
* bug #52234  add return type hints to EntityFactory (xabbuh)
36+
* bug #52229 [FrameworkBundle] Fix CommandDataCollector is always registered (smnandre)
37+
* bug #52218 [FrameworkBundle] Add conflict with `WebProfilerBundle` < 6.4 (HeahDude)
38+
1039
* 6.4.0-BETA1 (2023-10-21)
1140

1241
* feature #51847 [AssetMapper] Allowing for files to be written to some non-local location (weaverryan)

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.0-DEV';
79+
public const VERSION = '6.4.0-BETA2';
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 = 'BETA2';
8585

8686
public const END_OF_MAINTENANCE = '11/2026';
8787
public const END_OF_LIFE = '11/2027';

0 commit comments

Comments
 (0)
0