Skip to content
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

Release v5.4.15 #48029

Merged
merged 2 commits into from
Oct 28, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG-5.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ in 5.4 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.4.0...v5.4.1

* 5.4.15 (2022-10-28)

* bug #47990 [HttpClient] Fix retrying requests when the content is used by the strategy (nicolas-grekas)
* bug #48005 [ErrorHandler] s/</br>/<br> (PhilETaylor)
* bug #47907 [Console] Update Application.php (aleksandr-shevchenko)
* bug #47955 [Security][Serializer] Add missing args to trigger_deprecation (alamirault)
* bug #47932 Throw LogicException instead of Error when trying to generate logout-… (addiks)
* bug #47918 [Intl] Update the ICU data to 72.1 - 5.4 (jderusse)
* bug #47857 [HttpKernel] Fix empty request stack when terminating with exception (krzyc)
* bug #47879 [HttpClient] Fix buffering after calling AsyncContext::passthru() (nicolas-grekas, lubo13)
* bug #47878 [HttpKernel] Remove EOL when using error_log() in HttpKernel Logger (cyve)
* bug #47883 [Console] Fix error output on windows cli (Maximilian.Beckers)
* bug #47884 [Cache] Reserve numeric keys when doing memory leak prevention (simoheinonen)
* bug #47831 [Messenger] Fix amqp socket lost (GurvanVgx)
* bug #47855 [Routing] TypeError in Router when using UrlGenerator (Maximilian.Beckers)
* bug #47822 [Mailer] fix: use message object from event (rogamoore)
* bug #47858 [DoctrineBridge] Implement `EventManager::getAllListeners()` (derrabus)

* 5.4.14 (2022-10-12)

* bug #47621 [Serializer] Allow getting discriminated type by class name (TamasSzigeti)
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 $freshCache = [];

public const VERSION = '5.4.15-DEV';
public const VERSION = '5.4.15';
public const VERSION_ID = 50415;
public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 15;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '11/2024';
public const END_OF_LIFE = '11/2025';
Expand Down