10000 Merge pull request #41510 from fabpot/release-5.3.1 · symfony/symfony@3c83f21 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3c83f21

Browse files
authored
Merge pull request #41510 from fabpot/release-5.3.1
released v5.3.1
2 parents f8e021a + cd90160 commit 3c83f21

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG-5.3.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ in 5.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/v5.3.0...v5.3.1
99

10+
* 5.3.1 (2021-06-02)
11+
12+
* bug #41463 [Serializer][Validator] Fix not null return from "getCollectionValueTypes" (jderusse)
13+
* bug #41493 [Security] Readd deprecated methods to the interfaces (wouterj)
14+
* bug #41495 [HttpFoundation] Add ReturnTypeWillChange to SessionHandlers (nikic)
15+
* bug #41485 [HttpKernel] fix ArgumentMetadataFactory messes up controller arguments with attributes (sgehrig)
16+
* bug #41461 Fix Symfony 5.3 end of maintenance date (jmsche)
17+
1018
* 5.3.0 (2021-05-31)
1119

1220
* bug #41458 [FrameworkBundle] fix ConfigBuilderCacheWarmer (nicolas-grekas)

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 $freshCache = [];
7777

78-
public const VERSION = '5.3.1-DEV';
78+
public const VERSION = '5.3.1';
7979
public const VERSION_ID = 50301;
8080
public const MAJOR_VERSION = 5;
8181
public const MINOR_VERSION = 3;
8282
public const RELEASE_VERSION = 1;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = '';
8484

8585
public const END_OF_MAINTENANCE = '01/2022';
8686
public const END_OF_LIFE = '01/2022';

0 commit comments

Comments
 (0)
0