8000 Merge pull request #48033 from fabpot/release-6.2.0-BETA2 · symfony/symfony@f665007 · GitHub
[go: up one dir, main page]

Skip to content

Commit f665007

Browse files
authored
Merge pull request #48033 from fabpot/release-6.2.0-BETA2
released v6.2.0-BETA2
2 parents 541e651 + ed9f1bc commit f665007

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ 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.0-BETA2 (2022-10-28)
11+
12+
* bug #48020 [FrameworkBundle] add router cache directory option to XML schema (xabbuh)
13+
* feature #47976 Add padding to HIBP check (rullzer)
14+
* bug #47990 [HttpClient] Fix retrying requests when the content is used by the strategy (nicolas-grekas)
15+
* bug #48005 [ErrorHandler] s/</br>/<br> (PhilETaylor)
16+
* bug #47907 [Console] Update Application.php (aleksandr-shevchenko)
17+
* bug #47992 [Mailer] Fix BC breaking event name change (chalasr)
18+
1019
* 6.2.0-BETA1 (2022-10-24)
1120

1221
* feature #47364 [DependencyInjection] Allow array attributes for service tags (aschempp)

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.0-DEV';
78+
public const VERSION = '6.2.0-BETA2';
7979
public const VERSION_ID = 60200;
8080
public const MAJOR_VERSION = 6;
8181
public const MINOR_VERSION = 2;
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 = '07/2023';
8686
public const END_OF_LIFE = '07/2023';

0 commit comments

Comments
 (0)
0