Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 03ed2b5

Browse filesBrowse files
authored
Merge pull request #47400 from fabpot/release-6.1.4
released v6.1.4
2 parents bd72598 + a8165ab commit 03ed2b5
Copy full SHA for 03ed2b5

File tree

2 files changed

+41
-2
lines changed
Filter options

2 files changed

+41
-2
lines changed

‎CHANGELOG-6.1.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.1.md
+39Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,45 @@ in 6.1 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.1.0...v6.1.1
99

10+
* 6.1.4 (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 #47150 [Serializer] Revert deprecation of `ContextAwareEncoderInterface` and `ContextAwareDecoderInterface` (nicolas-grekas)
18+
* bug #47329 Email image parts: regex for single closing quote (rr-it)
19+
* bug #47335 [Security] [AbstractToken] getUserIdentifier() must return a string (mpiot)
20+
* bug #47283 [HttpFoundation] Prevent accepted rate limits with no remaining token to be preferred over denied ones (MatTheCat)
21+
* bug #47128 [Serializer] Throw InvalidArgumentException if the data needed in the constructor doesn't belong to a backedEnum (allison guilhem)
22+
* bug #47273 [HttpFoundation] Do not send Set-Cookie header twice for deleted session cookie (X-Coder264)
23+
* bug #47255 [Serializer] Fix get accessor regex in AnnotationLoader (jsor)
24+
* bug #47238 [HttpKernel] Fix passing `null` to `\trim()` method in LoggerDataCollector (SVillette)
25+
* bug #47216 [Translation] Crowdin provider throw Exception when status is 50x (alamirault)
26+
* bug #47209 Always attempt to listen for notifications (goetas)
27+
* bug #47211 [Validator] validate nested constraints only if they are in the same group (xabbuh)
28+
* bug #47218 [Console] fix dispatch signal event check for compatibility with the contract interface (xabbuh)
29+
* bug #47200 [Form] ignore missing keys when mapping DateTime objects to uninitialized arrays (xabbuh)
30+
* bug #47189 [Validator] Add additional hint when `egulias/email-validator` needs to be installed (mpdude)
31+
* bug #47195 [FrameworkBundle] fix writes to static $kernel property (xabbuh)
32+
* bug #47185 [String] Fix snake conversion (simPod)
33+
* bug #47175 [DowCrawler] Fix locale-sensitivity of whitespace normalization (nicolas-grekas)
34+
* bug #47172 [Translation] Fix reading intl-icu domains with LocoProvider (nicolas-grekas)
35+
* bug #47171 [TwigBridge] suggest to install the Twig bundle when the required component is already installed (xabbuh)
36+
* bug #47169 [Serializer] Fix throwing right exception in ArrayDenormalizer with invalid type (norkunas)
37+
* bug #47162 [Mailer] Fix error message in case of an SMTP error (fabpot)
38+
* bug #47161 [Mailer] Fix logic (fabpot)
39+
* bug #47157 [Messenger] Fix Doctrine transport on MySQL (nicolas-grekas)
40+
* bug #47155 [Filesystem] Remove needless `mb_*` calls (HellFirePvP)
41+
* bug #46190 [Translation] Fix translator overlapse (Xavier RENAUDIN)
42+
* bug #47142 [Mailer] Fix error message in case of an STMP error (fabpot)
43+
* bug #45333 [Console] Fix ConsoleEvents::SIGNAL subscriber dispatch (GwendolenLynch)
44+
* bug #47145 [HttpClient] Fix shared connections not being freed on PHP < 8 (nicolas-grekas)
45+
* bug #47143 [HttpClient] Fix memory leak when using StreamWrapper (nicolas-grekas)
46+
* bug #47130 [HttpFoundation] Fix invalid ID not regenerated with native PHP file sessions (BrokenSourceCode)
47+
* bug #47129 [FrameworkBundle] remove the ChatterInterface alias when the chatter service is removed (xabbuh)
48+
1049
* 6.1.3 (2022-07-29)
1150

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

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.1.4-DEV';
81+
public const VERSION = '6.1.4';
8282
public const VERSION_ID = 60104;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 1;
8585
public const RELEASE_VERSION = 4;
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.