Skip to content

Commit faa9547

Browse files
authored
Merge pull request #48809 from fabpot/release-6.2.3
released v6.2.3
2 parents db31160 + 304cbbb commit faa9547

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ 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.3 (2022-12-28)
11+
12+
* bug #48805 [DependencyInjection] Fix resolving parameters when dumping lazy proxies (nicolas-grekas)
13+
* bug #48787 [PhpUnitBridge] Use verbose deprecation output for quiet types only when it reaches the threshold (ogizanagi)
14+
* bug #48784 [Console] Correctly overwrite progressbars with different line count per step (ncharalampidis)
15+
* bug #48801 [Form] Make `ButtonType` handle `form_attr` option (MatTheCat)
16+
* bug #48791 [DependencyInjection] Fix deduplicating service instances in circular graphs (nicolas-grekas)
17+
* bug #48790 [WebProfilerBundle] fix Mailer detail on click (Jean-Beru)
18+
* bug #48771 [CssSelector] Fix escape patterns (fancyweb)
19+
* bug #48774 [Translation] Fix undefined variable messages in ConstraintVisitor (alamirault)
20+
* bug #48727 [PropertyAccess] Fix nullsafe chain like x?.y (Vincz)
21+
* bug #48711 [Cache] RedisTrait::createConnection does not pass auth value from redis sentinel cluster DSN (evgkord)
22+
* bug #48724 [VarExporter] Fix exporting classes with __unserialize() but not __serialize() (fancyweb)
23+
* bug #48746 [Validator] Fix IBAN format for Tunisia and Mauritania (smelesh)
24+
* bug #48738 [Workflow] Allow spaces in place names so the PUML dump doesn't break (Kamil Musial)
25+
* bug #48742 [VarExporter] Generate proxies for static abstract methods (nicolas-grekas)
26+
* bug #48735 [SecurityBundle] Prevent RuntimeException on profiler (marphi)
27+
* bug #48718 Compatibility with doctrine/annotations 2 (derrabus)
28+
* bug #48688 [FrameworkBundle] Add MailPace definition (skmedix)
29+
1030
* 6.2.2 (2022-12-16)
1131

1232
* bug #48661 [Serializer] fix context attribute with serializedName (nikophil)

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.3-DEV';
78+
public const VERSION = '6.2.3';
7979
public const VERSION_ID = 60203;
8080
public const MAJOR_VERSION = 6;
8181
public const MINOR_VERSION = 2;
8282
public const RELEASE_VERSION = 3;
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)