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

Skip to content

Commit 651b9e2

Browse files
authored
Merge pull request #44129 from fabpot/release-6.0.0-BETA3
released v6.0.0-BETA3
2 parents 1484d7c + 3f9e1c5 commit 651b9e2

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG-6.0.md

+21
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ in 6.0 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/v6.0.0...v6.0.1
99

10+
* 6.0.0-BETA3 (2021-11-18)
11+
12+
* feature #44125 Add a setter on DateTimeNormalizer to change the default context at runtime (Seldaek)
13+
* bug #44110 [FrameworkBundle] Fix default PHP attributes support in validation and serializer configuration when doctrine/annotations is not installed with PHP 8 (fancyweb)
14+
* bug #44115 [WebProfilerBundle] Tweak the colors of the security panel (javiereguiluz)
15+
* bug #44121 [Serializer] fix support for lazy properties (nicolas-grekas)
16+
* bug #44108 [FrameworkBundle][Messenger] remove `FlattenExceptionNormalizer` definition if serializer not available (kbond)
17+
* bug #44111 [Serializer] fix support for unset properties on PHP < 7.4 (nicolas-grekas)
18+
* bug #44098 [DependencyInjection] fix preloading (nicolas-grekas)
19+
* bug #44065 [FrameworkBundle] Add framework config for DBAL cache adapter (GromNaN)
20+
* bug #44096 Make ExpressionVoter Cacheable (jderusse)
21+
* bug #44070 [Process] intersect with getenv() to populate default envs (nicolas-grekas)
22+
* feature #43181 Allow AbstractDoctrineExtension implementations to support the newer bundle structure (mbabker)
23+
* bug #44060 [Cache] Fix calculate ttl in couchbase sdk 3.0 (ajcerezo)
24+
* bug #43990 [Translation] [Loco] Generate id parameter instead of letting Loco do it (welcoMattic)
25+
* bug #44043 [Cache] fix dbindex Redis (a1812)
26+
* feature #44015 [Cache] Decrease the probability of invalidation loss on tag eviction (nicolas-grekas)
27+
* bug #44064 [Cache] fix releasing not acquired locks (nicolas-grekas)
28+
* bug #44063 [DependencyInjection] fix creating 2nd container instances (nicolas-grekas)
29+
* bug #44056 [DependencyInjection] Fix YamlFileLoader return type (1ed)
30+
1031
* 6.0.0-BETA2 (2021-11-14)
1132

1233
* bug #44051 [Notifier] Fix package name (fabpot)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static array $freshCache = [];
8080

81-
public const VERSION = '6.0.0-DEV';
81+
public const VERSION = '6.0.0-BETA3';
8282
public const VERSION_ID = 60000;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 0;
8585
public const RELEASE_VERSION = 0;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = 'BETA3';
8787

8888
public const END_OF_MAINTENANCE = '07/2022';
8989
public const END_OF_LIFE = '07/2022';

0 commit comments

Comments
 (0)