Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Release v5.3.4 #42267

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
Jul 26, 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
49 changes: 49 additions & 0 deletions 49 CHANGELOG-5.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,55 @@ in 5.3 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.3.0...v5.3.1

* 5.3.4 (2021-07-26)

* bug #41504 [Translation] Fix default value for locales in translation push|pull commands (welcoMattic)
* bug #42243 [Translation] [Lokalise] Fix `base_uri` (welcoMattic, Nyholm)
* bug #42212 [Lock] Handle lock with long key (jderusse)
* bug #42223 [Debug][ErrorHandler] Do not use the php80 polyfill (nicolas-grekas)
* bug #42207 [Console] fix table setHeaderTitle without headers (a1812)
* bug #42130 [Translation] fix fallback to Locale::getDefault() (nicolas-grekas)
* bug #42184 [Mailer] Make sure Http TransportException is not leaking (Nyholm)
* bug #42091 [Console] Run commands when implements SignalableCommandInterface without pcntl and they have'nt signals (PaolaRuby)
* bug #42150 [Form] Fix 'invalid_message' use in multiple ChoiceType (alexandre-daubois)
* bug #42183 [Notifier] Allow passing a previous throwable to exceptions (derrabus)
* bug #42185 [Notifier] Make sure Http TransportException is not leaking (Nyholm)
* bug #42182 [Notifier] Make sure Http TransportException is not leaking (Nyholm)
* bug #42173 [Messenger] [Redis] Fix auth option wrongly considered invalid (chalasr)
* bug #42174 Indicate compatibility with psr/log 2 and 3 (derrabus)
* bug #41897 [Security] fix #41891 Save hashed tokenValue in RememberMe cookie (qurben)
* bug #42156 Fix missing assignment (Seldaek)
* bug #42112 [HttpFoundation] fix FileBag under PHP 8.1 (alexpott)
* bug #42131 [PhpUnitBridge] Fix composer resolution on Windows (Rainrider)
* bug #42097 [DependencyInjection] Support for intersection types (derrabus)
* bug #42114 [HttpFoundation] Fix return types of SessionHandler::gc() (derrabus)
* bug #42099 [VarDumper] Support for intersection types (derrabus)
* bug #42011 [Cache] Support decorated Dbal drivers in PdoAdapter (Jeroeny)
* bug #42068 Add a Special Case for Translating Choices in en_US_POSIX (chrisguitarguy)
* bug #42074 Fix ctype_digit deprecation (alexpott)
* bug #42084 [WebProfilerBundle] Fix the values of some CSS properties (javiereguiluz)
* bug #42079 [FrameworkBundle] Fixed file operations in Sodium vault seal (javiereguiluz)
* bug #42078 [DoctrineBridge] [Doctrine Bridge] Fix an exception message (javiereguiluz)
* bug #42067 [Messenger] [Redis] Make `auth` option works (welcoMattic)
* bug #42054 [DoctrineBridge] fix setting default mapping type to attribute/annotation on php 8/7 respectively (nicolas-grekas)
* bug #42059 [Messenger] Fixed BC layer for RedeliveryStamp (Nyholm)
* bug #42060 [Messenger] AmqpTransport implements QueueReceiverInterface (xabbuh)
* bug #42049 [TwigBridge] do not render the same label id attribute twice (xabbuh)
* bug #42019 [DependencyInjection] Fix TaggedLocator attribute without indexAttribute argument (Lucas Bäuerle)
* bug #42032 [HttpKernel] recover from failed deserializations (xabbuh)
* bug #42035 [Messenger] Fix use_notify default value for PostgreSqlConnection (tgalopin)
* bug #42009 [Console] Fix save correct name in setDefaultCommand() for PHP8 (a1812)
* bug #41990 [Lock] fix derivating semaphore from key (nicolas-grekas)
* bug #41986 [Notifier] Fix TransportTestCase (OskarStark)
* bug #40529 [Translation] Missing translations from traits (insekticid)
* bug #41384 Fix SkippedTestSuite (jderusse)
* bug #41966 [Console] Revert "bug #41952 fix handling positional arguments" (chalasr, nicolas-grekas)
* bug #41905 [EventDispatcher] Correct the called event listener method case (JJsty1e)
* bug #41961 [Serializer] Need to clear cache when updating Annotation Groups on Entities (monteiro)
* bug #41952 [Console] fix handling positional arguments (nicolas-grekas)
* bug #41917 Rethrow exception in `DoctrineTokenProvider` (jderusse)
* bug #41887 [PhpUnitBridge] Fix deprecation handler with PHPUnit 10 (YaFou)

* 5.3.3 (2021-06-30)

* bug #41910 [Security] Handle concurency in Csrf DoctrineTokenProvider (jderusse)
Expand Down
4 changes: 2 additions & 2 deletions 4 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 $freshCache = [];

public const VERSION = '5.3.4-DEV';
public const VERSION = '5.3.4';
public const VERSION_ID = 50304;
public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 4;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '01/2022';
public const END_OF_LIFE = '01/2022';
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.