Skip to content

Release v6.0.19 #49087

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
Jan 24, 2023
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
26 changes: 26 additions & 0 deletions CHANGELOG-6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ 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.19 (2023-01-24)

* bug #49078 [Security/Http] Check tokens before loading users from providers (nicolas-grekas)
* bug #49077 [DependencyInjection] Fix named arguments when using ContainerBuilder before compilation (nicolas-grekas)
* bug #49031 [Cache] fix collecting cache stats when nesting computations (nicolas-grekas)
* bug #49046 Fix for Windows when projects are deployed on junctions/symlinks (nerdgod)
* bug #49025 [Notifier] [OvhCloud] handle invalid receiver (seferov)
* bug #48993 [VarDumper] Fix JS to expand / collapse (nicolas-grekas)
* bug #48983 Fix BC user_identifier support after deprecation username (vtsykun)
* bug #48986 [Validator] Fix Email validator logic (fabpot)
* bug #48969 [PropertyInfo] Fixes constructor extractor for mixed type (michael.kubovic)
* bug #48978 [Serializer] use method_exists() instead of catching reflection exceptions (xabbuh)
* bug #48937 [SecurityBundle] Fix using same handler for multiple authenticators (RobertMe)
* bug #48971 [DependencyInjection] Fix dump order of inlined deps (nicolas-grekas)
* bug #48966 [HttpClient] Let curl handle content-length headers (nicolas-grekas)
* bug #48968 [VarExporter] Fix exporting enums (nicolas-grekas)
* bug #48926 [DependencyInjection] Fix support for named arguments on non-autowired services (nicolas-grekas)
* bug #48943 [FrameworkBundle] Fix deprecation when accessing a "container.private" service from the test container (nicolas-grekas)
* bug #48931 [DependencyInjection] Fix dumping inlined withers (nicolas-grekas)
* bug #48898 [HttpClient] Move Http clients data collecting at a late level (pforesi)
* bug #48896 [DoctrineBridge] Fix detecting mapping with one line annotations (franmomu)
* bug #48916 [FrameworkBundle] restore call to addGlobalIgnoredName (alexislefebvre)
* bug #48917 [Config] Fix XML dump when node example is an array (alexandre-daubois)
* bug #48904 [Validator] Allow egulias/email-validator v4 (chalasr)
* bug #48831 [Uid] Fix validating nil and max uuid (fancyweb)

* 6.0.18 (2022-12-29)

* bug #48823 [Cache] Fix possibly null value passed to preg_match() in RedisTrait (chalasr)
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.19-DEV';
public const VERSION = '6.0.19';
public const VERSION_ID = 60019;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 0;
public const RELEASE_VERSION = 19;
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