Skip to content

Commit 33377e7

Browse files
authored
Merge pull request #49090 from fabpot/release-6.2.5
released v6.2.5
2 parents 20bcf1e + c8b1ac5 commit 33377e7

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,39 @@ in 6.2 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.2.0...v6.2.1
99

10+
* 6.2.5 (2023-01-24)
11+
12+
* bug #49078 [Security/Http] Check tokens before loading users from providers (nicolas-grekas)
13+
* bug #49077 [DependencyInjection] Fix named arguments when using ContainerBuilder before compilation (nicolas-grekas)
14+
* bug #49031 [Cache] fix collecting cache stats when nesting computations (nicolas-grekas)
15+
* bug #49046 Fix for Windows when projects are deployed on junctions/symlinks (nerdgod)
16+
* bug #49025 [Notifier] [OvhCloud] handle invalid receiver (seferov)
17+
* bug #49034 [Security] Return default value instead of deferring to lower prio resolvers when using #[CurrentUser] and no user is found (Seldaek)
18+
* bug #48993 [VarDumper] Fix JS to expand / collapse (nicolas-grekas)
19+
* bug #48983 Fix BC user_identifier support after deprecation username (vtsykun)
20+
* bug #48986 [Validator] Fix Email validator logic (fabpot)
21+
* bug #48969 [PropertyInfo] Fixes constructor extractor for mixed type (michael.kubovic)
22+
* bug #48978 [Serializer] use method_exists() instead of catching reflection exceptions (xabbuh)
23+
* bug #48958 [DependencyInjection] fixes validation of non-scalar attribute values (ju1ius)
24+
* bug #48937 [SecurityBundle] Fix using same handler for multiple authenticators (RobertMe)
25+
* bug #48971 [DependencyInjection] Fix dump order of inlined deps (nicolas-grekas)
26+
* bug #48966 [HttpClient] Let curl handle content-length headers (nicolas-grekas)
27+
* bug #48968 [VarExporter] Fix exporting enums (nicolas-grekas)
28+
* bug #48933 [Validator] Fix bad handling of nulls when the 'fields' option of the Unique constraint is set (plfort)
29+
* bug #48926 [DependencyInjection] Fix support for named arguments on non-autowired services (nicolas-grekas)
30+
* bug #48943 [FrameworkBundle] Fix deprecation when accessing a "container.private" service from the test container (nicolas-grekas)
31+
* bug #48939 [VarExporter] Fix signature of `Lazy*Trait::createLazy*()` (nicolas-grekas)
32+
* bug #48931 [DependencyInjection] Fix dumping inlined withers (nicolas-grekas)
33+
* bug #48898 [HttpClient] Move Http clients data collecting at a late level (pforesi)
34+
* bug #48896 [DoctrineBridge] Fix detecting mapping with one line annotations (franmomu)
35+
* bug #48916 [FrameworkBundle] restore call to addGlobalIgnoredName (alexislefebvre)
36+
* bug #48917 [Config] Fix XML dump when node example is an array (alexandre-daubois)
37+
* bug #48904 [Validator] Allow egulias/email-validator v4 (chalasr)
38+
* bug #48830 [Translation] fix PhpAstExtractor also extracts messages if t() contains both unnamed and named arguments (gassan)
39+
* bug #48846 [Translation] Fix for resolving Constraint Validator FQCN defined as foo.bar.class parameters (gassan)
40+
* bug #48866 [Validator] fix: Case-insensitive extensions in File-Constraint (spackmat)
41+
* bug #48831 [Uid] Fix validating nil and max uuid (fancyweb)
42+
1043
* 6.2.4 (2022-12-29)
1144

1245
* bug #48822 [WebProfilerBundle] Fix the usage of web fonts (javiereguiluz)

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 array $freshCache = [];
7777

78-
public const VERSION = '6.2.5-DEV';
78+
public const VERSION = '6.2.5';
7979
public const VERSION_ID = 60205;
8080
public const MAJOR_VERSION = 6;
8181
public const MINOR_VERSION = 2;
8282
public const RELEASE_VERSION = 5;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = '';
8484

8585
public const END_OF_MAINTENANCE = '07/2023';
8686
public const END_OF_LIFE = '07/2023';

0 commit comments

Comments
 (0)