Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce7a18a

Browse files
authored
Merge pull request #47399 from fabpot/release-6.0.12
released v6.0.12
2 parents 9115681 + f48f8cd commit ce7a18a

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

CHANGELOG-6.0.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,42 @@ 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.12 (2022-08-26)
11+
12+
* bug #47372 [Console] Fix OutputFormatterStyleStack::getCurrent return type (alamirault)
13+
* bug #47391 [LokaliseBridge] Fix push command --delete-missing options when there are no missing messages (rwionczek)
14+
* bug #47368 [Security] Count remember me cookie parts before accessing the second (MatTheCat)
15+
* bug #47358 Fix broken request stack state if throwable is thrown. (Warxcell)
16+
* bug #47304 [Serializer] Fix caching context-aware encoders/decoders in ChainEncoder/ChainDecoder (Guite)
17+
* bug #47329 Email image parts: regex for single closing quote (rr-it)
18+
* bug #47335 [Security] [AbstractToken] getUserIdentifier() must return a string (mpiot)
19+
* bug #47283 [HttpFoundation] Prevent accepted rate limits with no remaining token to be preferred over denied ones (MatTheCat)
20+
* bug #47128 [Serializer] Throw InvalidArgumentException if the data needed in the constructor doesn't belong to a backedEnum (allison guilhem)
21+
* bug #47273 [HttpFoundation] Do not send Set-Cookie header twice for deleted session cookie (X-Coder264)
22+
* bug #47255 [Serializer] Fix get accessor regex in AnnotationLoader (jsor)
23+
* bug #47238 [HttpKernel] Fix passing `null` to `\trim()` method in LoggerDataCollector (SVillette)
24+
* bug #47216 [Translation] Crowdin provider throw Exception when status is 50x (alamirault)
25+
* bug #47209 Always attempt to listen for notifications (goetas)
26+
* bug #47211 [Validator] validate nested constraints only if they are in the same group (xabbuh)
27+
* bug #47218 [Console] fix dispatch signal event check for compatibility with the contract interface (xabbuh)
28+
* bug #47200 [Form] ignore missing keys when mapping DateTime objects to uninitialized arrays (xabbuh)
29+
* bug #47189 [Validator] Add additional hint when `egulias/email-validator` needs to be installed (mpdude)
30+
* bug #47195 [FrameworkBundle] fix writes to static $kernel property (xabbuh)
31+
* bug #47185 [String] Fix snake conversion (simPod)
32+
* bug #47175 [DowCrawler] Fix locale-sensitivity of whitespace normalization (nicolas-grekas)
33+
* bug #47171 [TwigBridge] suggest to install the Twig bundle when the required component is already installed (xabbuh)
34+
* bug #47169 [Serializer] Fix throwing right exception in ArrayDenormalizer with invalid type (norkunas)
35+
* bug #47161 [Mailer] Fix logic (fabpot)
36+
* bug #47157 [Messenger] Fix Doctrine transport on MySQL (nicolas-grekas)
37+
* bug #47155 [Filesystem] Remove needless `mb_*` calls (HellFirePvP)
38+
* bug #46190 [Translation] Fix translator overlapse (Xavier RENAUDIN)
39+
* bug #47142 [Mailer] Fix error message in case of an STMP error (fabpot)
40+
* bug #45333 [Console] Fix ConsoleEvents::SIGNAL subscriber dispatch (GwendolenLynch)
41+
* bug #47145 [HttpClient] Fix shared connections not being freed on PHP < 8 (nicolas-grekas)
42+
* bug #47143 [HttpClient] Fix memory leak when using StreamWrapper (nicolas-grekas)
43+
* bug #47130 [HttpFoundation] Fix invalid ID not regenerated with native PHP file sessions (BrokenSourceCode)
44+
* bug #47129 [FrameworkBundle] remove the ChatterInterface alias when the chatter service is removed (xabbuh)
45+
1046
* 6.0.11 (2022-07-29)
1147

1248
* bug #47069 [Security] Allow redirect after login to absolute URLs (Tim Ward)

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.12-DEV';
81+
public const VERSION = '6.0.12';
8282
public const VERSION_ID = 60012;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 0;
8585
public const RELEASE_VERSION = 12;
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)