Skip to content

Commit 083143d

Browse files
authored
Merge pull request symfony#46782 from fabpot/release-6.0.10
released v6.0.10
2 parents 3a2fa91 + 6f20e51 commit 083143d

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

CHANGELOG-6.0.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@ in 6.0 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.0.0...v6.0.1
99

10+
* 6.0.10 (2022-06-26)
11+
12+
* bug #46779 [String] Add an invariable word in french (lemonlab)
13+
* bug #46765 [Serializer] Fix denormalization union types with constructor (Gwemox)
14+
* bug #46769 [HttpKernel] Fix a PHP 8.1 deprecation notice in HttpCache (mpdude)
15+
* bug #46760 Fix double authentication via RememberMe resulting in wrong RememberMe cookie being set in client (heiglandreas)
16+
* bug #46735 [Messenger] Do not log the message object itself (ajardin)
17+
* bug #46748 [Security] Fix legacy impersonation system (dunglas)
18+
* bug #46747 Fix global state pollution between tests run with ApplicationTester (Seldaek)
19+
* bug #46730 [Intl] Fix the IntlDateFormatter::formatObject signature (damienalexandre)
20+
* bug #46668 [FrameworkBundle] Lower JsonSerializableNormalizer priority (aprat84)
21+
* bug #46711 [PhpUnitBridge] Exclude from baseline generation deprecations triggered in legacy test (mondrake)
22+
* bug #46678 [HttpFoundation] Update "[Session] Overwrite invalid session id" to only validate when files session storage is used (alexpott)
23+
* bug #45861 [Serializer] Try all possible denormalization route with union types when ALLOW_EXTRA_ATTRIBUTES=false (T-bond)
24+
* bug #46676 [DoctrineBridge] Extend type guessing on enum fields (Gigino Chianese)
25+
* bug #46699 [Cache] Respect $save option in all adapters (jrjohnson)
26+
* bug #46697 [HttpKernel] Disable session tracking while collecting profiler data (nicolas-grekas)
27+
* bug #46704 Allow passing null in twig_is_selected_choice (raziel057)
28+
* bug #46684 [MonologBridge] Fixed support of elasticsearch 7.+ in ElasticsearchLogstashHandler (lyrixx)
29+
* bug #46646 [Messenger] move resetting services at worker stopped into listener (Thomas Talbot)
30+
* bug #46368 [Mailer] Fix for missing sender name in case with usage of the EnvelopeListener (bobahvas)
31+
* bug #46603 [Mailer] Fix Error Handling for OhMySMTP Bridge (paul-oms)
32+
* bug #46545 Fix getting class constraints on debug command (loic425)
33+
* bug #46548 [Mime] Allow url as a path in the DataPart::fromPath (wkania)
34+
* bug #46576 Fix choice filter error when loading mix of grouped and non-grouped choices (BreyndotEchse)
35+
* bug #46594 [FrameworkBundle] Fix XML cache config (HeahDude)
36+
* bug #46610 [Messenger] use the outermost wrapping DBAL connection (xabbuh)
37+
* bug #46595 [Console] Escape in command name & description from getDefaultName() (ogizanagi)
38+
* bug #46608 [Console] Fix deprecation when description is null (HypeMC)
39+
* bug #46574 [Console] Escape in command name & description from PHP (getDefault* methods) (ogizanagi)
40+
* bug #46577 [Serializer] Fix ignore attribute in Xml files (alamirault)
41+
* bug #46565 [WebProfilerBundle] Fix dark theme selected line highlight color & reuse css vars (ogizanagi)
42+
* bug #46525 [Serializer] Get attributeContext after converting name (zenas1210)
43+
* bug #46535 [Mime] Check that the path is a file in the DataPart::fromPath (wkania)
44+
* bug #46543 [Cache] do not pass null to strlen() (xabbuh)
45+
* bug #46515 [PropertyInfo] Fix extracting int range type (norkunas)
46+
* bug #46478 [Contracts] remove static cache from `ServiceSubscriberTrait` (kbond)
47+
1048
* 6.0.9 (2022-05-27)
1149

1250
* bug #46386 [Console]  Fix missing negative variation of negatable options in shell completion (GromNaN)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static array $freshCache = [];
8080

81-
public const VERSION = '6.0.10-DEV';
81+
public const VERSION = '6.0.10';
8282
public const VERSION_ID = 60010;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 0;
8585
public const RELEASE_VERSION = 10;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = '';
8787

8888
public const END_OF_MAINTENANCE = '01/2023';
8989
public const END_OF_LIFE = '01/2023';

0 commit comments

Comments
 (0)