Skip to content

Commit 1b68abc

Browse files
authored
Merge pull request symfony#48518 from fabpot/release-6.2.1
released v6.2.1
2 parents ee94cc9 + 7f0c356 commit 1b68abc

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ 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.1 (2022-12-06)
11+
12+
* bug #48502 [DependencyInjection] Fix `ContainerBuilder` stats env usage with enum (alamirault)
13+
* bug #48509 [HttpKernel] Fix using entities with the `#[Cache()]` attribute (HypeMC)
14+
* bug #48505 [Mailer] Fix rendered templates for notifications (fabpot)
15+
* bug #48476 [WebProfilerBundle] Use same color as other icons for the close toolbar btn (ogizanagi)
16+
* bug #48483 [DependencyInjection] Remove refs that point to container.excluded services when allowed (nicolas-grekas)
17+
* bug #48346 [HttpKernel] In DateTimeValueResolver, convert previously defined date attribute to the expected class (GromNaN)
18+
* bug #48450 [WebProfilerBundle] Fix form panel expanders (MatTheCat)
19+
* bug #48459 [FrameworkBundle] [Framework] Fix Infobip Mailer transport factory import (gnito-org)
20+
* bug #48461 [VarExporter] Fix possible memory-leak when using lazy-objects (nicolas-grekas)
21+
* bug #48335 [TwigBridge] Amend `MoneyType` twig to include a space (mogilvie)
22+
* bug #48046 [WebProfilerBundle] Remove redundant code from logger template (HypeMC)
23+
* bug #48428 Fixed undefined variable error (Kevin Meijer)
24+
* bug #48416 [FrameworkBundle] don't register the MailerTestCommand symfony/console is not installed (xabbuh)
25+
* bug #48395 [String] Fix AsciiSlugger with emojis (fancyweb)
26+
* bug #48385 [Security] Reuse `AbstractFactory`'s config tree in `AccessTokenFactory` (chalasr)
27+
* bug #48292 [Security] [LoginLink] Throw InvalidLoginLinkException on missing parameter (MatTheCat)
28+
1029
* 6.2.0 (2022-11-30)
1130

1231
* bug #48395 [String] Fix AsciiSlugger with emojis (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 array $freshCache = [];
7777

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