Merge pull request #41144 from fabpot/release-5.3.0-BETA3

released v5.3.0-BETA3
This commit is contained in:
Fabien Potencier 2021-05-09 18:06:35 +02:00 committed by GitHub
commit f6ab4b5b26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 2 deletions

View File

@ -7,6 +7,35 @@ 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 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 To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.3.0...v5.3.1
* 5.3.0-BETA3 (2021-05-09)
* feature #40947 [Translation] Added Crowdin Translation Provider (andrii-bodnar)
* bug #41132 [Runtime] don't display the shebang on the CLI (nicolas-grekas)
* bug #41113 [Console] Fix Windows code page support (orkan)
* bug #40902 [Security] Allow ips parameter in access_control to accept comma-separated string (edefimov)
* bug #40980 [TwigBridge] Fix HTML for translatable custom-file label in Bootstrap 4 theme (acran)
* bug #40955 [Notifier] [Bridge] Fix missed messageId for SendMessage object in slack notifier (WaylandAce)
* bug #40943 [PropertyInfo] PhpDocExtractor: Handle "true" and "false" property types (Maciej Zgadzaj)
* bug #40759 [Form] Add missing TranslatableMessage support to choice_label option of ChoiceType (alexandre-daubois)
* bug #40917 [Config][DependencyInjection] Uniformize trailing slash handling (dunglas)
* bug #40699 [PropertyInfo] Make ReflectionExtractor correctly extract nullability (shiftby)
* bug #40874 [PropertyInfo] fix attribute namespace with recursive traits (soullivaneuh)
* bug #40957 [PhpUnitBridge] Fix tests with ``@doesNotPerformAssertions`` annotations (alexpott)
* bug #41099 [Cache] Check if phpredis version is compatible with stream parameter (nicolassing)
* bug #40982 [Notifier] Fix return SentMessage then Messenger not used (WaylandAce)
* bug #40972 Avoid regenerating the remember me token if it is still fresh (Seldaek)
* bug #41072 [VarExporter] Add support of PHP enumerations (alexandre-daubois)
* feature #40992 [Notifier] Add SlackOptions::threadTs() to send message as reply (WaylandAce)
* bug #41104 Fix return type in isAllowedProperty method on ReflectionExtractor class (Tomanhez)
* bug #41078 [Notifier] Make FailoverTransport always pick the first transport (jschaedl)
* feature #39157 [TwigBridge] Add form templates for Bootstrap 5 (ker0x)
* bug #41022 [PasswordHasher] Improved BC layer (derrabus)
* bug #41105 [Inflector][String] Fixed singularize `edges` > `edge` (ruudk)
* bug #41075 [ErrorHandler] Skip "same vendor" ``@method`` deprecations for `Symfony\*` classes unless symfony/symfony is being tested (nicolas-grekas)
* bug #41096 Make Serializable implementation internal and final (derrabus)
* bug #40994 [Config] More accurate message on invalid config builder (a-menshchikov)
* bug #40767 [Routing] Fix localized paths (l-vo)
* 5.3.0-BETA2 (2021-05-01) * 5.3.0-BETA2 (2021-05-01)
* feature #41002 [FrameworkBundle][HttpKernel] Move IDE file link formats from FrameworkExtension to FileLinkFormatter (MatTheCat) * feature #41002 [FrameworkBundle][HttpKernel] Move IDE file link formats from FrameworkExtension to FileLinkFormatter (MatTheCat)

View File

@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private static $freshCache = []; private static $freshCache = [];
public const VERSION = '5.3.0-DEV'; public const VERSION = '5.3.0-BETA3';
public const VERSION_ID = 50300; public const VERSION_ID = 50300;
public const MAJOR_VERSION = 5; public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 3; public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 0; public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV'; public const EXTRA_VERSION = 'BETA3';
public const END_OF_MAINTENANCE = '05/2021'; public const END_OF_MAINTENANCE = '05/2021';
public const END_OF_LIFE = '01/2022'; public const END_OF_LIFE = '01/2022';