Skip to content

Release v5.3.12 #44243

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
Nov 24, 2021
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
9 changes: 9 additions & 0 deletions CHANGELOG-5.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ in 5.3 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/v5.3.0...v5.3.1

* 5.3.12 (2021-11-24)

* security #cve-2021-41268 [SecurityBundle] Default signature_properties to the previous behavior (wouterj)
* security #cve-2021-41267 [HttpKernel] Fix missing extra trusted header in sub-request (jderusse)
* security #cve-2021-41270 [Serializer] Use single quote to escape formulas (jderusse)
* bug #44232 [Cache] fix connecting to local Redis sockets (nicolas-grekas)
* bug #44204 [HttpClient] fix closing curl multi handle when destructing client (nicolas-grekas)
* bug #44208 [Process] exclude argv/argc from possible default env vars (nicolas-grekas)

* 5.3.11 (2021-11-22)

* bug #44188 [VarExporter] fix exporting declared but unset properties when __sleep() is implemented (nicolas-grekas)
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 @@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl

private static $freshCache = [];

public const VERSION = '5.3.12-DEV';
public const VERSION = '5.3.12';
public const VERSION_ID = 50312;
public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 12;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

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