Skip to content

Commit

Permalink
Merge pull request #48029 from fabpot/release-5.4.15
Browse files Browse the repository at this point in the history
released v5.4.15
  • Loading branch information
fabpot committed Oct 28, 2022
2 parents ff2a9f4 + cd80d4b commit cd78e13
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
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

0 comments on commit cd78e13

Please sign in to comment.