8000 Merge pull request #34472 from fabpot/release-5.0.0 · nesk/symfony@ea815ba · GitHub
[go: up one dir, main page]

Skip to content

Commit ea815ba

Browse files
authored
Merge pull request symfony#34472 from fabpot/release-5.0.0
released v5.0.0
2 parents 0f8fe5d + bac8c50 commit ea815ba

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG-5.0.md

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

10+
* 5.0.0 (2019-11-21)
11+
12+
* bug #34464 [Form] group constraints when calling the validator (nicolas-grekas)
13+
* bug #34451 [DependencyInjection] Fix dumping multiple deprecated aliases (shyim)
14+
* bug #34448 [Form] allow button names to start with uppercase letter (xabbuh)
15+
* bug #34434 [Routing] Fix ContainerLoader and ObjectLoaderTest (fancyweb)
16+
* bug #34428 [Security] Fix best encoder not wired using migrate_from (chalasr)
17+
1018
* 5.0.0-RC1 (2019-11-17)
1119

1220
* bug #34419 [Cache] Disable igbinary on PHP >= 7.4 (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6868

6969
private static $freshCache = [];
7070

71-
const VERSION = '5.0.0-DEV';
71+
const VERSION = '5.0.0';
7272
const VERSION_ID = 50000;
7373
const MAJOR_VERSION = 5;
7474
const MINOR_VERSION = 0;
7575
const RELEASE_VERSION = 0;
76-
const EXTRA_VERSION = 'DEV';
76+
const EXTRA_VERSION = '';
7777

7878
const END_OF_MAINTENANCE = '07/2020';
7979
const END_OF_LIFE = '07/2020';

0 commit comments

Comments
 (0)
0