Skip to content

Release v6.1.6 #47842

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG-6.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ in 6.1 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.1.0...v6.1.1

* 6.1.6 (2022-10-12)

* bug #47621 [Serializer] Allow getting discriminated type by class name (TamasSzigeti)
* bug #47833 [TwigBridge] Remove empty spaces between choices when using checkbox-inline or checkbox-switch (simondaigre)
* bug #47808 [HttpClient] Fix seeking in not-yet-initialized requests (nicolas-grekas)
* bug #47798 [DoctrineBridge] Fix auto mapping for bundles that contain only embeddables (jorissae)
* bug #47702 [Messenger] Fix default serializer not handling DateTime objects properly (barton-webwings)
* bug #47764 [Serializer] fixed traceable decoration priorities (mtarld)
* bug #47779 [Console] Fix `Helper::removeDecoration` hyperlink bug (greew)
* bug #47753 [Mime] sync message serializer code for forward-compatibility (xabbuh)
* bug #47763 [PropertyInfo] a readonly property must not be reported as being writable (xabbuh)
* bug #47731 [WebProfiler] Fix overflow issue in Forms panel (zolikonta)
* bug #46956 [FrameworkBundle] Allow to specify `null` for exception mapping configuration values (andrew-demb)
* bug #47746 [HttpFoundation] Fix BinaryFileResponse content type detection logic (X-Coder264)
* bug #47626 [Notifier] [Expo] Throw exception on error-response from expo api (sdrewergutland)
* bug #47317 [Security] Fix login url matching when app is not run with url rewriting or from a sub folder (sgehrig)

* 6.1.5 (2022-09-30)

* bug #47703 [Mailer][Mailjet] Apply the default value of 512 for max depths (nurtext)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.1.6-DEV';
public const VERSION = '6.1.6';
public const VERSION_ID = 60106;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 1;
public const RELEASE_VERSION = 6;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '01/2023';
public const END_OF_LIFE = '01/2023';
Expand Down