Skip to content

Release v5.2.11 #41914

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
Jun 30, 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
40 changes: 40 additions & 0 deletions CHANGELOG-5.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,46 @@ in 5.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/v5.2.0...v5.2.1

* 5.2.11 (2021-06-30)

* bug #41893 [Filesystem] Workaround cannot dumpFile into "protected" folders on Windows (arnegroskurth)
* bug #41896 [Messenger] fix FlattenExceptionNormalizer (nicolas-grekas)
* bug #41242 [SecurityBundle] Change information label from red to yellow (94noni)
* bug #41665 [HttpKernel] Keep max lifetime also when part of the responses don't set it (mpdude)
* bug #41760 [ErrorHandler] fix handling buffered SilencedErrorContext (nicolas-grekas)
* bug #41807 [HttpClient] fix Psr18Client when allow_url_fopen=0 (nicolas-grekas)
* bug #40857 [DependencyInjection] Add support of PHP enumerations (alexandre-daubois)
* bug #41767 [Config] fix tracking default values that reference the parent class (nicolas-grekas)
* bug #41768 [DependencyInjection] Fix binding "iterable $foo" when using the PHP-DSL (nicolas-grekas)
* bug #41801 [Uid] Fix fromString() with low base58 values (fancyweb)
* bug #41793 [Cache] handle prefixed redis connections when clearing pools (nicolas-grekas)
* bug #41804 [Cache] fix eventual consistency when using RedisTagAwareAdapter with a cluster (nicolas-grekas)
* bug #41773 [Cache] Disable locking on Windows by default (nicolas-grekas)
* bug #41655 [Mailer] fix encoding of addresses using SmtpTransport (dmaicher)
* bug #41663 [HttpKernel] [HttpCache] Keep s-maxage=0 from ESI sub-responses (mpdude)
* bug #41739 Avoid broken action URL in text notification mail (mbrodala)
* bug #41701 [VarDumper] Fix tests for PHP 8.1 (alexandre-daubois)
* bug #41795 [FrameworkBundle] Replace var_export with VarExporter to use array short syntax in secrets list files (alexandre-daubois)
* bug #41779 [DependencyInjection] throw proper exception when decorating a synthetic service (nicolas-grekas)
* bug #41776 [ErrorHandler] [DebugClassLoader] Do not check Phake mocks classes (adoy)
* bug #41780 [PhpUnitBridge] fix handling the COMPOSER_BINARY env var when using simple-phpunit (Taluu)
* bug #41670 [HttpFoundation] allow savePath of NativeFileSessionHandler to be null (simon.chrzanowski)
* bug #41751 [Messenger] prevent reflection usages when classes do not exist (xabbuh)
* bug #41616 [Messenger] Remove TLS related options when not using TLS (odolbeau)
* bug #41719 [FrameworkBundle] fix Could not find service "test.service_container" (smilesrg)
* bug #41674 [HttpClient] fix compat with cURL <= 7.37 (nicolas-grekas)
* bug #41656 [HttpClient] throw exception when AsyncDecoratorTrait gets an already consumed response (nicolas-grekas)
* bug #41644 [Config] fix tracking attributes in ReflectionClassResource (nicolas-grekas)
* bug #41621 [Process] Fix incorrect parameter type (bch36)
* bug #41624 [HttpClient] Revert bindto workaround for unaffected PHP versions (derrabus)
* bug #41549 [Security] Fix opcache preload with alias classes (jderusse)
* bug #41491 [Serializer] Do not allow to denormalize string with spaces only to valid a DateTime object (sidz)
* bug #41218 [DependencyInjection] Update loader’s directory when calling ContainerConfigurator::withPath (MatTheCat)
* bug #41505 [FrameworkBundle] fix KernelBrowser::loginUser with a stateless firewall (dunglas)
* bug #41509 [SecurityBundle] Link UserProviderListener to correct firewall dispatcher (Matth--)
* bug #41386 [Console] Escape synopsis output (jschaedl)
* bug #41495 [HttpFoundation] Add ReturnTypeWillChange to SessionHandlers (nikic)

* 5.2.10 (2021-06-01)

* bug #41000 [Form] Use !isset for checks cause this doesn't falsely include 0 (Kai Dederichs)
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 @@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl

private static $freshCache = [];

public const VERSION = '5.2.11-DEV';
public const VERSION = '5.2.11';
public const VERSION_ID = 50211;
public const MAJOR_VERSION = 5;
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/2021';
public const END_OF_LIFE = '07/2021';
Expand Down