8000 Merge pull request #50012 from fabpot/release-6.2.9 · magnusnordlander/symfony@d84cc7a · GitHub
[go: up one dir, main page]

Skip to content

Commit d84cc7a

Browse files
authored
Merge pull request symfony#50012 from fabpot/release-6.2.9
released v6.2.9
2 parents 9de1fd7 + 4d86332 commit d84cc7a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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.9 (2023-04-13)
11+
12+
* bug #49957 [ErrorHandler] Fix sending `Vary` header with `SerializerErrorRenderer` (nicolas-grekas)
13+
* bug #49983 [DomCrawler] Avoid passing null to substr/strrpos methods (VincentLanglet)
14+
* bug #49079 [DoctrineBridge] fix issue with missing stopwatch events (dmaicher)
15+
* bug #49926 [HttpClient] Fix canceling MockResponse (fancyweb)
16+
* bug #49889 [FrameworkBundle] Fix registering ExpressionValidator (nicolas-grekas)
17+
1018
* 6.2.8 (2023-03-31)
1119

1220
* bug #49835 [Form] CollectionType apply prototypeOptions to ResizeFormListener new fields (Thorry84)

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