Skip to content

Commit c42242c

Browse files
authored
Merge pull request symfony#52858 from fabpot/release-6.3.10
released v6.3.10
2 parents c7ad175 + 2b25088 commit c42242c

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG-6.3.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ in 6.3 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.3.0...v6.3.1
99

10+
* 6.3.10 (2023-12-01)
11+
12+
* bug #52804 [Serializer] Fix support of plain object types denormalization (andersonamuller)
13+
* bug #52845 [Routing] Restore aliases removal in RouteCollection::remove() (fancyweb)
14+
* bug #52846 [PhpUnitBridge]  run composer update for compatibility with PHPUnit versions shipping composer.lock (xabbuh)
15+
* bug #52823 add parameter types in query builder (javiercno)
16+
* bug #52808 [DependencyInjection] Fix dumping containers with null-referenced services (nicolas-grekas)
17+
* bug #52797 [VarExporter] Fix lazy ghost trait when using nullsafe operator (nicolas-grekas)
18+
* bug #52806 [Routing] Fix removing aliases pointing to removed route in `RouteCollection::remove()` (fancyweb)
19+
1020
* 6.3.9 (2023-11-29)
1121

1222
* bug #52786 [Serializer] Revert allowed attributes fix (mtarld)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676
*/
7777
private static array $freshCache = [];
7878

79-
public const VERSION = '6.3.10-DEV';
79+
public const VERSION = '6.3.10';
8080
public const VERSION_ID = 60310;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 3;
8383
public const RELEASE_VERSION = 10;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '01/2024';
8787
public const END_OF_LIFE = '01/2024';

0 commit comments

Comments
 (0)