Skip to content

Release v6.0.0-RC1 #44245

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
21 changes: 21 additions & 0 deletions CHANGELOG-6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ in 6.0 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.0.0...v6.0.1

* 6.0.0-RC1 (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 #44230 [Console] Add Suggestion class for more advanced completion suggestion (wouterj)
* 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)
* bug #44188 [VarExporter] fix exporting declared but unset properties when __sleep() is implemented (nicolas-grekas)
* bug #44176 [Console] Default ansi option to null (jderusse)
* bug #44179 [WebProfilerBundle] Fix JS error when toolbar is reloaded (jderusse)
* bug #44177 [SecurityBundle] Remove Guard (derrabus)
* bug #44172 [Security] Guard is incompatible with Symfony 6 (derrabus)
* bug #44119 [HttpClient][Mime] Add correct IDN flags for IDNA2008 compliance (j-bernard)
* bug #44139 [WebProfilerBundle] Prevent installation of incompatible mailer component versions (Anne-Julia Seitz)
* bug #43917 Allow autodetecting mapping type for any object (franmomu)
* bug #44130 [SecurityBundle] Remove outdated conditions based on authenticatorManagerEnabled (chalasr)
* bug #44131 [Yaml] properly parse quoted strings tagged with !!str (xabbuh)
* bug #42323 [TwigBridge] do not merge label classes into expanded choice labels (xabbuh)

* 6.0.0-BETA3 (2021-11-18)

* feature #44125 Add a setter on DateTimeNormalizer to change the default context at runtime (Seldaek)
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.0.0-DEV';
public const VERSION = '6.0.0-RC1';
public const VERSION_ID = 60000;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 0;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = 'RC1';

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