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 8f09899

Browse filesBrowse files
authored
Merge pull request #46783 from fabpot/release-6.1.2
released v6.1.2
2 parents 388f5a8 + 6108bf7 commit 8f09899
Copy full SHA for 8f09899

File tree

2 files changed

+30
-2
lines changed
Filter options

2 files changed

+30
-2
lines changed

‎CHANGELOG-6.1.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.1.md
+28Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ 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.2 (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 #46766 Initially set user null. (mogilvie)
17+
* bug #46735 [Messenger] Do not log the message object itself (ajardin)
18+
* bug #46748 [Security] Fix legacy impersonation system (dunglas)
19+
* bug #46747 Fix global state pollution between tests run with ApplicationTester (Seldaek)
20+
* bug #46730 [Intl] Fix the IntlDateFormatter::formatObject signature (damienalexandre)
21+
* bug #46668 [FrameworkBundle] Lower JsonSerializableNormalizer priority (aprat84)
22+
* bug #46711 [PhpUnitBridge] Exclude from baseline generation deprecations triggered in legacy test (mondrake)
23+
* bug #46678 [HttpFoundation] Update "[Session] Overwrite invalid session id" to only validate when files session storage is used (alexpott)
24+
* bug #46665 [HttpClient] Fix Copy as curl with base uri (HypeMC)
25+
* bug #46670 [HttpClient] Fix json encode flags usage in copy-as-curl generation (welcoMattic)
26+
* bug #45861 [Serializer] Try all possible denormalization route with union types when ALLOW_EXTRA_ATTRIBUTES=false (T-bond)
27+
* bug #46676 [DoctrineBridge] Extend type guessing on enum fields (Gigino Chianese)
28+
* bug #46699 [Cache] Respect $save option in all adapters (jrjohnson)
29+
* bug #46697 [HttpKernel] Disable session tracking while collecting profiler data (nicolas-grekas)
30+
* bug #46704 Allow passing null in twig_is_selected_choice (raziel057)
31+
* bug #46684 [MonologBridge] Fixed support of elasticsearch 7.+ in ElasticsearchLogstashHandler (lyrixx)
32+
* bug #46650 [WebProfilerBundle] Bump http-kernel requirement to ^6.1 (ostrolucky)
33+
* bug #46646 [Messenger] move resetting services at worker stopped into listener (Thomas Talbot)
34+
* bug #46611 [PropertyInfo] Fix multi phpdoc covered promoted properties (ostrolucky, simPod)
35+
* bug #46368 [Mailer] Fix for missing sender name in case with usage of the EnvelopeListener (bobahvas)
36+
* bug #46603 [Mailer] Fix Error Handling for OhMySMTP Bridge (paul-oms)
37+
1038
* 6.1.1 (2022-06-09)
1139

1240
* bug #46570 [HttpClient][WebProfilerBundle] Catch errors when encoding body for c… (Phillip Look)

‎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.2-DEV';
81+
public const VERSION = '6.1.2';
8282
public const VERSION_ID = 60102;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 1;
8585
public const RELEASE_VERSION = 2;
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.