Skip to content

Release v6.2.10 #50189

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
Apr 28, 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
41 changes: 41 additions & 0 deletions CHANGELOG-6.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,47 @@ in 6.2 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.2.0...v6.2.1

* 6.2.10 (2023-04-28)

* bug #50143 [Console] trim(): Argument #1 () must be of type string, bool given (danepowell)
* bug #50139 Check if trace.curlCommand is defined in profiler (Toflar)
* bug #50066 [Dumper] Trim leading newlines when checking if value begins with a space (bradtreloar)
* bug #50115 [FrameworkBundle] Make service edges unique (rmikalkenas)
* bug #50111 Fix the list of supported shells for completions in a phar (stof)
* bug #50110 [Console] Fix the usage of the zsh completion through the fpath discovery (stof)
* bug #50074 [Cache] Send Predis SSL options in the $hosts parameter (magnusnordlander)
* bug #50088 [DependencyInjection] Do not ignore tags `name` attribute when it does not define their name (MatTheCat)
* bug #50099 [Cache] Fix success interpretation when pruning cache (staabm)
* bug #50092 [Security] Fix return type of AuthenticationSuccessHandlerInterface::onAuthenticationSuccess() (nicolas-grekas)
* bug #48288 [Security] Make onAuthenticationSuccess Response optional (db306)
* bug #50086 [VarExporter] Fix forwarding references to proxied classes (nicolas-grekas)
* bug #50072 [HttpClient] Fix global state preventing two CurlHttpClient instances from working together (nicolas-grekas)
* bug #50040 [Translation] Crowdin Bridge: Fix locale vs LanguageId (Peter Culka)
* bug #50061 [DependencyInjection] Fix support for inner collections when using `<bind>` (zerustech)
* bug #50022 [DependencyInjection] Fallback to default value when autowiring undefined parameters for optional arguments (radar3301)
* bug #50056 [Form] Fix "prototype_data" option creating duplicates instead of new lines (Thorry84)
* bug #50017 [Validator] Fix support of Enum to `ConstraintValidator::formatValue` (PhoneixS)
* bug #49356 [Process] Path resolution changes for PHP in the cgi-fcgi mode (isdn)
* bug #48886 [Console] Fix computing column width containing multibyte chars (cay89)
* bug #50049 [Messenger] Fix deprecation layer of RedeliveryStamp (nicolas-grekas)
* bug #47505 [Mime] Form field values with integer keys not resolved correctly (claudiu-cristea)
* bug #50048 [PhpUnitBridge] Fix PHPUnit 10.1 compatibility (enumag)
* bug #50047 [VarDumper] Make the server TCP connection sync (ogizanagi)
* bug #48837 [Messenger] [Redis] Fixed problem where worker stops handling messages on first empty message (jvmanji)
* bug #49317 [Messenger] Fix warning message on failed messenger show command (gstapinato)
* bug #49992 [Mailer] [Mailjet] Use body MessageID instead of X-MJ-Request-GUID (Starfox64)
* bug #48972 [HttpFoundation] Fix memory limit problems in BinaryFileResponse (glady)
* bug #48108 [PropertyAccess] Readonly properties must have no PropertyWriteInfo (CasvanDongen)
* bug #49009 [Form] Cast choices value callback result to string (Matth--)
* bug #49537 [Serializer] Unexpected value should throw UnexpectedValueException (ThomasTr)
* bug #49581 Avoid leading .. for temporary files from Filesystem recursive remove (giosh94mhz)
* bug #50036 [ErrorHandler] Don't throw deprecations for HttplugClient (nicolas-grekas)
* bug #50024 [Serializer] Fix denormalization of object with typed constructor arg (not castable) and with COLLECT_DENORMALIZATION_ERRORS (lyrixx)
* bug #50004 [HttpClient] fix proxied redirects in curl client (matthi4s)
* bug #50008 [Intl] Update the ICU data to 73.1 (jderusse)
* bug #50015 [Serializer] Fix serializer normalize attribute context (akalineskou)
* bug #49987 [Console] Restoring the ability to output unicode text to the Win10 console (aleksandr-shevchenko)

* 6.2.9 (2023-04-13)

* bug #49957 [ErrorHandler] Fix sending `Vary` header with `SerializerErrorRenderer` (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 array $freshCache = [];

public const VERSION = '6.2.10-DEV';
public const VERSION = '6.2.10';
public const VERSION_ID = 60210;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 2;
public const RELEASE_VERSION = 10;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

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