Skip to content

Commit 4535fab

Browse files
authored
Merge pull request #41196 from fabpot/release-5.3.0-BETA4
released v5.3.0-BETA4
2 parents 8fb0ed7 + bbbedc0 commit 4535fab

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG-5.3.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ in 5.3 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.3.0...v5.3.1
99

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

1237
* feature #40947 [Translation] Added Crowdin Translation Provider (andrii-bodnar)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7575

7676
private static $freshCache = [];
7777

78-
public const VERSION = '5.3.0-DEV';
78+
public const VERSION = '5.3.0-BETA4';
7979
public const VERSION_ID = 50300;
8080
public const MAJOR_VERSION = 5;
8181
public const MINOR_VERSION = 3;
8282
public const RELEASE_VERSION = 0;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = 'BETA4';
8484

8585
public const END_OF_MAINTENANCE = '05/2021';
8686
public const END_OF_LIFE = '01/2022';

0 commit comments

Comments
 (0)