Skip to content

Release v5.3.0-BETA4 #41196

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 12, 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
25 changes: 25 additions & 0 deletions CHANGELOG-5.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,31 @@ 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.0-BETA4 (2021-05-12)

* security #cve-2021-21424 [Security][Guard] Prevent user enumeration (chalasr)
* feature #41178 [FrameworkBundle] Introduce `AbstractController::renderForm()` instead of `handleForm()` (lyrixx)
* feature #41182 [DependencyInjection] allow PHP-DSL files to be env-conditional (nicolas-grekas)
* bug #41177 [DependencyInjection] fix empty instanceof-conditionals created by AttributeAutoconfigurationPass (nicolas-grekas)
* bug #41176 [DependencyInjection] fix dumping service-closure-arguments (nicolas-grekas)
* bug #41174 [Console] Fix Windows code page support (orkan)
* bug #41173 [Security] Make Login Rate Limiter also case insensitive for non-ascii user identifiers (Seldaek)
* bug #41170 [DependencyInjection] Don't try to load YamlFileLoader if it's not actually needed (nicolas-grekas)
* bug #41168 WDT: Only load "Sfjs" if it is not present already (weaverryan)
* feature #36864 [Messenger] Ability to distinguish retry and delay actions (theravel)
* bug #41164 [FrameworkBundle] fix debug:event-dispatcher and debug:firewall (nicolas-grekas)
* feature #41161 [HttpClient] Add `DecoratorTrait` to ease writing simple decorators (nicolas-grekas)
* bug #41147 [Inflector][String] wrong plural form of words ending by "pectus" (makraz)
* bug #41160 [HttpClient] Don't prepare the request in ScopingHttpClient (nicolas-grekas)
* bug #41156 [Security] Make Login Rate Limiter case insensitive (jderusse)
* bug #41155 [Translation] Improved Translation Providers (welcoMattic)
* feature #40927 [Translation] Added Lokalise Provider (welcoMattic)
* feature #40926 [Translation] Added PoEditor Provider (welcoMattic)
* bug #41137 [Security] Reset limiters on successful login (MatTheCat)
* bug #41148 [Runtime] fix defining $_SERVER[APP_ENV] (nicolas-grekas)
* bug #40758 [Security] NullToken signature (jderusse)
* bug #40763 Fix/Rewrite .gitignore regex builder (mvorisek)

* 5.3.0-BETA3 (2021-05-09)

* feature #40947 [Translation] Added Crowdin Translation Provider (andrii-bodnar)
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 $freshCache = [];

public const VERSION = '5.3.0-DEV';
public const VERSION = '5.3.0-BETA4';
public const VERSION_ID = 50300;
public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = 'BETA4';

public const END_OF_MAINTENANCE = '05/2021';
public const END_OF_LIFE = '01/2022';
Expand Down