Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3b7b94d

Browse files
authored
Merge pull request symfony#41019 from fabpot/release-5.3.0-BETA2
released v5.3.0-BETA2
2 parents cebbe5d + a977a28 commit 3b7b94d

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

CHANGELOG-5.3.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ 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-BETA2 (2021-05-01)
11+
12+
* feature #41002 [FrameworkBundle][HttpKernel] Move IDE file link formats from FrameworkExtension to FileLinkFormatter (MatTheCat)
13+
* bug #41014 [Routing] allow extending Route attribute (robmro27)
14+
* feature #39913 [OptionsResolver] Add prototype definition support for nested options (yceruto)
15+
* bug #41008 [Security] Do not try to rehash null-passwords (tjveldhuizen)
16+
* bug #41013 [Console] Remove spaces between arguments GithubActionReporter (franmomu)
17+
* bug #40920 [PasswordHasher] accept hashing passwords with nul bytes or longer than 72 bytes when using bcrypt (nicolas-grekas)
18+
* bug #40993 [Security] [Security/Core] fix checking for bcrypt (nicolas-grekas)
19+
* bug #40986 [Console] Negatable option are null by default (jderusse)
20+
* bug #40923 [Yaml] expose references detected in inline notation structures (xabbuh)
21+
* bug #40951 [FrameworkBundle] Make debug:event-dispatcher search case insensitive (javiereguiluz)
22+
* bug #40966 [Messenger] fix manual amqp setup when autosetup disabled (Tobion)
23+
* bug #40956 [Config] [ConfigBuilder] Set FQCN as properties type instead of class name (MatTheCat)
24+
* bug #40964 [HttpFoundation] Fixes for PHP 8.1 deprecations (jrmajor)
25+
* bug #40950 [Config] Remove double semicolons from autogenerated config classes (HypeMC)
26+
* bug #40903 [Config] Builder: Remove typehints and allow for EnvConfigurator (Nyholm)
27+
* bug #40919 [Mailer] use correct spelling when accessing the SMTP php.ini value (xabbuh)
28+
* bug #40514 [Yaml] Allow tabs as separators between tokens (bertramakers)
29+
* bug #40882 [Cache] phpredis: Added full TLS support for RedisCluster (jackthomasatl)
30+
* feature #38475 [Translation] Adding Translation Providers (welcoMattic)
31+
* bug #40877 [Config] Make sure one can build cache on Windows and then run in (Docker) Linux (Nyholm)
32+
* bug #40878 [Config] Use plural name on array values (Nyholm)
33+
* bug #40872 [DependencyInjection] [AliasDeprecatedPublicServicesPass] Noop when the service is private (fancyweb)
34+
* feature #40800 [DependencyInjection] Add `#[Target]` to tell how a dependency is used and hint named autowiring aliases (nicolas-grekas)
35+
* bug #40859 [Config] Support extensions without configuration in ConfigBuilder warmup (wouterj)
36+
* bug #40852 [Notifier] Add missing entries in scheme to package map (jschaedl)
37+
1038
* 5.3.0-BETA1 (2021-04-18)
1139

1240
* feature #40838 [SecurityBundle] Deprecate public services to private (fancyweb)

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

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

0 commit comments

Comments
 (0)