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

Commit b2b6392

Browse filesBrowse files
authored
Merge pull request #41283 from fabpot/release-5.3.0-RC1
released v5.3.0-RC1
2 parents e34cd7d + f81797d commit b2b6392
Copy full SHA for b2b6392

File tree

2 files changed

+21
-2
lines changed
Filter options

2 files changed

+21
-2
lines changed

‎CHANGELOG-5.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.3.md
+19Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ 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-RC1 (2021-05-19)
11+
12+
* security #cve-2021-21424 [Security\Core] Fix user enumeration via response body on invalid credentials (chalasr)
13+
* bug #41275 Fixes Undefined method call (faizanakram99)
14+
* feature #41175 [Security] [RememberMe] Add support for parallel requests doing remember-me re-authentication (Seldaek)
15+
* bug #41269 [SecurityBundle] Remove invalid unused service (chalasr)
16+
* feature #41247 [Security] Deprecate the old authentication mechanisms (chalasr)
17+
* bug #41139 [Security] [DataCollector] Remove allows anonymous information in datacollector (ismail1432)
18+
* bug #41254 [Security\Http] Fix handling `secure: auto` using the new RememberMeAuthenticator (chalasr)
19+
* bug #41230 [FrameworkBundle][Validator] Fix deprecations from Doctrine Annotations+Cache (derrabus)
20+
* bug #41206 [Mailer] Fix SES API call with UTF-8 Addresses (jderusse)
21+
* bug #41240 Fixed deprecation warnings about passing null as parameter (derrabus)
22+
* bug #41241 [Finder] Fix gitignore regex build with "**" (mvorisek)
23+
* bug #41224 [HttpClient] fix adding query string to relative URLs with scoped clients (nicolas-grekas)
24+
* bug #41233 [DependencyInjection][ProxyManagerBridge] Don't call class_exists() on null (derrabus)
25+
* bug #41214 [Console] fix registering command aliases when using the new "cmd|alias" syntax for names (nicolas-grekas)
26+
* bug #41211 [Notifier] Add missing charset to content-type for Slack notifier (norkunas)
27+
* bug #41210 [Console] Fix Windows code page support (orkan)
28+
1029
* 5.3.0-BETA4 (2021-05-12)
1130

1231
* security #cve-2021-21424 [Security][Guard] Prevent user enumeration (chalasr)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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-RC1';
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 = 'RC1';
8484

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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.