8000 Merge pull request #41144 from fabpot/release-5.3.0-BETA3 · symfony/symfony@f6ab4b5 · GitHub
[go: up one dir, main page]

Skip to content

Commit f6ab4b5

Browse files
authored
Merge pull request #41144 from fabpot/release-5.3.0-BETA3
released v5.3.0-BETA3
2 parents 6bfb509 + b30f848 commit f6ab4b5

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG-5.3.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ 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-BETA3 (2021-05-09)
11+
12+
* feature #40947 [Translation] Added Crowdin Translation Provider (andrii-bodnar)
13+
* bug #41132 [Runtime] don't display the shebang on the CLI (nicolas-grekas)
14+
* bug #41113 [Console] Fix Windows code page support (orkan)
15+
* bug #40902 [Security] Allow ips parameter in access_control to accept comma-separated string (edefimov)
16+
* bug #40980 [TwigBridge] Fix HTML for translatable custom-file label in Bootstrap 4 theme (acran)
17+
* bug #40955 [Notifier] [Bridge] Fix missed messageId for SendMessage object in slack notifier (WaylandAce)
18+
* bug #40943 [PropertyInfo] PhpDocExtractor: Handle "true" and "false" property types (Maciej Zgadzaj)
19+
* bug #40759 [Form] Add missing TranslatableMessage support to choice_label option of ChoiceType (alexandre-daubois)
20+
* bug #40917 [Config][DependencyInjection] Uniformize trailing slash handling (dunglas)
21+
* bug #40699 [PropertyInfo] Make ReflectionExtractor correctly extract nullability (shiftby)
22+
* bug #40874 [PropertyInfo] fix attribute namespace with recursive traits (soullivaneuh)
23+
* bug #40957 [PhpUnitBridge] Fix tests with ``@doesNotPerformAssertions`` annotations (alexpott)
24+
* bug #41099 [Cache] Check if phpredis version is compatible with stream parameter (nicolassing)
25+
* bug #40982 [Notifier] Fix return SentMessage then Messenger not used (WaylandAce)
26+
* bug #40972 Avoid regenerating the remember me token if it is still fresh (Seldaek)
27+
* bug #41072 [VarExporter] Add support of PHP enumerations (alexandre-daubois)
28+
* feature #40992 [Notifier] Add SlackOptions::threadTs() to send message as reply (WaylandAce)
29+
* bug #41104 Fix return type in isAllowedProperty method on ReflectionExtractor class (Tomanhez)
30+
* bug #41078 [Notifier] Make FailoverTransport always pick the first transport (jschaedl)
31+
* feature #39157 [TwigBridge] Add form templates for Bootstrap 5 (ker0x)
32+
* bug #41022 [PasswordHasher] Improved BC layer (derrabus)
33+
* bug #41105 [Inflector][String] Fixed singularize `edges` > `edge` (ruudk)
34+
* bug #41075 [ErrorHandler] Skip "same vendor" ``@method`` deprecations for `Symfony\*` classes unless symfony/symfony is being tested (nicolas-grekas)
35+
* bug #41096 Make Serializable implementation internal and final (derrabus)
36+
* bug #40994 [Config] More accurate message on invalid config builder (a-menshchikov)
37+
* bug #40767 [Routing] Fix localized paths (l-vo)
38+
1039
* 5.3.0-BETA2 (2021-05-01)
1140

1241
* feature #41002 [FrameworkBundle][HttpKernel] Move IDE file link formats from FrameworkExtension to FileLinkFormatter (MatTheCat)

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-BETA3';
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 = 'BETA3';
8484

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

0 commit comments

Comments
 (0)
0