Skip to content

Release v6.2.11 #50454

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
May 27, 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
36 changes: 36 additions & 0 deletions CHANGELOG-6.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,42 @@ 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.11 (2023-05-27)

* bug #50442 [SecurityBundle] Update security-1.0.xsd to include missing access-token definition (aegypius)
* bug #50429 [Console] block input stream if needed (joelwurtz)
* bug #50312 [Security] Skip clearing CSRF Token on stateless logout (chalasr)
* bug #50315 [Translation] Fix handling of null messages in `ArrayLoader` (rob006)
* bug #50338 [Console] Remove ``exec`` and replace it by ``shell_exec`` (maxbeckers)
* bug #50193 [Serializer] Fix `SerializedPath` not working with constructor arguments (HypeMC)
* bug #50280 [PropertyAccess] Fix nullsafe operator on array index (HypeMC)
* bug #50362 [FrameworkBundle] Fix Workflow without a marking store definition uses marking store definition of previously defined workflow (krciga22)
* bug #50309 [HttpFoundation] UrlHelper is now aware of RequestContext changes (giosh94mhz)
* bug #50309 [HttpFoundation] UrlHelper is now aware of RequestContext changes (giosh94mhz)
* bug #50352 [Notifier][TurboSMS] Fix get sender name (ZhukV)
* bug #50354 [Process] Stop the process correctly even if underlying input stream is not closed (joelwurtz)
* bug #50332 [PropertyInfo] Fix `PhpStanExtractor` when constructor has no docblock (HypeMC)
* bug #50253 [FrameworkBundle] Generate caches consistently on successive run of `cache:clear` command (Okhoshi)
* bug #49063 [Messenger] Respect `isRetryable` decision of the retry strategy for re-delivery (FlyingDR)
* bug #50251 [Serializer] Handle datetime deserialization in U format (tugmaks)
* bug #50266 [HttpFoundation] Fix file streaming after connection aborted (rlshukhov)
* bug #50277 [Messenger] Add `IS_REPEATABLE` flag to `AsMessageHandler` attribute (adrianguenter)
* bug #50269 Fix param type annotation (l-vo)
* bug #50268 Allow resources in Query::setParam (l-vo)
* bug #50256 [HttpClient] Fix setting duplicate-name headers when redirecting with AmpHttpClient (nicolas-grekas)
* bug #50214 [WebProfilerBundle] Remove legacy filters remnants (MatTheCat)
* bug #50235 [HttpClient] Fix getting through proxies via CONNECT (nicolas-grekas)
* bug #50241 [HttpKernel] Prevent initialising lazy services during services reset (tucksaun)
* bug #50244 [HttpKernel] Fix restoring surrogate content from cache (nicolas-grekas)
* bug #50246 [DependencyInjection] Do not check errored definitions’ type (MatTheCat)
* bug #49557 [PropertyInfo] Fix phpDocExtractor nullable array value type (fabpot)
* bug #50213 [ErrorHandler] Prevent conflicts with WebProfilerBundle’s JavaScript (MatTheCat)
* bug #50192 [Serializer] backed enum throw notNormalizableValueException outside construct method (alli83)
* bug #50238 [HttpKernel] Don't use eval() to render ESI/SSI (nicolas-grekas)
* bug #50226 [HttpClient] Ensure HttplugClient ignores invalid HTTP headers (nicolas-grekas)
* bug #50203 [Messenger] Fix registering message handlers (nicolas-grekas)
* bug #50204 [ErrorHandler] Skip Httplug deprecations for HttplugClient (nicolas-grekas)

* 6.2.10 (2023-04-28)

* bug #50143 [Console] trim(): Argument #1 () must be of type string, bool given (danepowell)
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.11-DEV';
public const VERSION = '6.2.11';
public const VERSION_ID = 60211;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 2;
public const RELEASE_VERSION = 11;
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