8000 Merge pull request #47842 from fabpot/release-6.1.6 · symfony/symfony@785a274 · GitHub
[go: up one dir, main page]

Skip to content

Commit 785a274

Browse files
authored
Merge pull request #47842 from fabpot/release-6.1.6
released v6.1.6
2 parents 51e5cc0 + ac6a7a9 commit 785a274

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG-6.1.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ 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.6 (2022-10-12)
11+
12+
* bug #47621 [Serializer] Allow getting discriminated type by class name (TamasSzigeti)
13+
* bug #47833 [TwigBridge] Remove empty spaces between choices when using checkbox-inline or checkbox-switch (simondaigre)
14+
* bug #47808 [HttpClient] Fix seeking in not-yet-initialized requests (nicolas-grekas)
15+
* bug #47798 [DoctrineBridge] Fix auto mapping for bundles that contain only embeddables (jorissae)
16+
* bug #47702 [Messenger] Fix default serializer not handling DateTime objects properly (barton-webwings)
17+
* bug #47764 [Serializer] fixed traceable decoration priorities (mtarld)
18+
* bug #47779 [Console] Fix `Helper::removeDecoration` hyperlink bug (greew)
19+
* bug #47753 [Mime] sync message serializer code for forward-compatibility (xabbuh)
20+
* bug #47763 [PropertyInfo] a readonly property must not be reported as being writable (xabbuh)
21+
* bug #47731 [WebProfiler] Fix overflow issue in Forms panel (zolikonta)
22+
* bug #46956 [FrameworkBundle] Allow to specify `null` for exception mapping configuration values (andrew-demb)
23+
* bug #47746 [HttpFoundation] Fix BinaryFileResponse content type detection logic (X-Coder264)
24+
* bug #47626 [Notifier] [Expo] Throw exception on error-response from expo api (sdrewergutland)
25+
* bug #47317 [Security] Fix login url matching when app is not run with url rewriting or from a sub folder (sgehrig)
26+
1027
* 6.1.5 (2022-09-30)
1128

1229
* bug #47703 [Mailer][Mailjet] Apply the default value of 512 for max depths (nurtext)

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