Skip to content

Commit 6e8975b

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: [MonologBridge] Fix support for monolog 3.0 fix tests Bump Symfony version to 6.4.0 Update VERSION for 6.4.0-BETA2 Update CHANGELOG for 6.4.0-BETA2 Bump Symfony version to 6.3.8 Update VERSION for 6.3.7 Update CHANGELOG for 6.3.7 [Validator] Added Chinese(zh_CN) translations
2 parents 5511139 + 89fdb22 commit 6e8975b

File tree

4 files changed

+70
-2
lines changed

4 files changed

+70
-2
lines changed

CHANGELOG-6.3.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ in 6.3 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.3.0...v6.3.1
99

10+
* 6.3.7 (2023-10-29)
11+
12+
* bug #52329 [HttpClient] Psr18Client: parse HTTP Reason Phrase for Response (Hanmac)
13+
* bug #52332 [Yaml] Fix deprecated passing null to trim() (javaDeveloperKid)
14+
* bug #52343 [Intl] Update the ICU data to 74.1 (jderusse)
15+
* bug #52347 [Form] Fix merging form data and files (ter) (Jan Pintr)
16+
* bug #52307 [Scheduler] Save checkpoint in a finally block (FrancoisPog)
17+
* bug #52308 [SecurityBundle] Fix missing login-link element in xsd schema (fancyweb)
18+
* bug #51992 [Serializer] Fix using `DateIntervalNormalizer` with union types (Jeroeny)
19+
* bug #52276 DB table locks on messenger_messages with many failures (bn-jdcook)
20+
* bug #52232 [Messenger] declare constructor argument as optional for backwards compatibility (xabbuh)
21+
* bug #52283 [Serializer] Handle default context when denormalizing timestamps in DateTimeNormalizer (mtarld)
22+
* bug #52268 [Mailer][Notifier] Update Sendinblue / Brevo API host (Stephanie)
23+
* bug #52255 [Form] Skip merging params & files if there are no files in the first place (dmaicher, priyadi)
24+
1025
* 6.3.6 (2023-10-21)
1126

1227
* bug #52201 [HttpKernel] Resolve EBADP error on flock with LOCK_SH with NFS (driskell)

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/Messenger/Bridge/Doctrine/Transport/Connection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,8 @@ private function createAvailableMessagesQueryBuilder(): QueryBuilder
341341
$now,
342342
], [
343343
Types::STRING,
344-
Types::DATETIME_MUTABLE,
345-
Types::DATETIME_MUTABLE,
344+
Types::DATETIME_IMMUTABLE,
345+
Types::DATETIME_IMMUTABLE,
346346
]);
347347
}
348348

src/Symfony/Component/Validator/Resources/translations/validators.zh_CN.xlf

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,30 @@
402402
<source>The value of the netmask should be between {{ min }} and {{ max }}.</source>
403403
<target>网络掩码的值应当在 {{ min }} 和 {{ max }} 之间。</target>
404404
</trans-unit>
405+
<trans-unit id="104">
406+
<source>The filename is too long. It should have {{ filename_max_length }} character or less.|The filename is too long. It should have {{ filename_max_length }} characters or less.</source>
407+
<target>该文件名过长,最长不应超过{{ filename_max_length }} 个字符。</target>
408+
</trans-unit>
409+
<trans-unit id="105">
410+
<source>The password strength is too low. Please use a stronger password.</source>
411+
<target>该密码强度太低。请使用更复杂的密码。</target>
412+
</trans-unit>
413+
<trans-unit id="106">
414+
<source>This value contains characters that are not allowed by the current restriction-level.</source>
415+
<target>该值包含了当前限制级别不允许的字符。</target>
416+
</trans-unit>
417+
<trans-unit id="107">
418+
<source>Using invisible characters is not allowed.</source>
419+
<target>不允许使用隐藏字符。</target>
420+
</trans-unit>
421+
<trans-unit id="108">
422+
<source>Mixing numbers from different scripts is not allowed.</source>
423+
<target>不可混合使用不同语系的数字。</target>
424+
</trans-unit>
425+
<trans-unit id="109">
426+
<source>Using hidden overlay characters is not allowed.</source>
427+
<target>不允许使用隐藏的覆盖字符。</target>
428+
</trans-unit>
405429
</body>
406430
</file>
407431
</xliff>

0 commit comments

Comments
 (0)