8000 Merge pull request #37019 from fabpot/release-5.1.0 · JudicaelR/symfony@729e21c · GitHub
[go: up one dir, main page]

Skip to content

Commit 729e21c

Browse files
authored
Merge pull request symfony#37019 from fabpot/release-5.1.0
released v5.1.0
2 parents af444f8 + 70780fc commit 729e21c

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG-5.1.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ in 5.1 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.1.0...v5.1.1
99

10+
* 5.1.0 (2020-05-31)
11+
12+
* bug #37009 [Validator] use "allowedVariables" to configure the ExpressionLanguageSyntax constraint (xabbuh)
13+
* bug #37008 [Security] Fixed AbstractToken::hasUserChanged() (wouterj)
14+
* bug #36894 [Validator] never directly validate Existence (Required/Optional) constraints (xabbuh)
15+
* bug #37007 [Console] Fix QuestionHelper::disableStty() (chalasr)
16+
* bug #36865 [Form] validate subforms in all validation groups (xabbuh)
17+
* bug #36907 Fixes sprintf(): Too few arguments in form transformer (pedrocasado)
18+
* bug #36868 [Validator] Use Mime component to determine mime type for file validator (pierredup)
19+
* bug #37000 Add meaningful message when using ProcessHelper and Process is not installed (l-vo)
20+
* bug #36990 [Messenger] Change the default notify timeout value for PostgreSQL (fabpot)
21+
* bug #36995 [TwigBridge] fix fallback html-to-txt body converter (nicolas-grekas)
22+
* bug #36993 [ErrorHandler] fix setting $trace to null in FatalError (nicolas-grekas)
23+
* bug #36987 Handle fetch mode deprecation of DBAL 2.11. (derrabus)
24+
* bug #36984 [SecurityBundle] Fixed version constraint on security-core and security-guard (wouterj)
25+
* bug #36974 [Security] Fixed handling of CSRF logout error (wouterj)
26+
1027
* 5.1.0-RC2 (2020-05-26)
1128

1229
* bug #36966 Fix extra SQL support in Doctrine migrations (fabpot)

src/Symfony/Component/HttpKernel/Kernel.php

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

7474
private static $freshCache = [];
7575

76-
const VERSION = '5.1.0-DEV';
76+
const VERSION = '5.1.0';
7777
const VERSION_ID = 50100;
7878
const MAJOR_VERSION = 5;
7979
const MINOR_VERSION = 1;
8080
const RELEASE_VERSION = 0;
81-
const EXTRA_VERSION = 'DEV';
81+
const EXTRA_VERSION = '';
8282

8383
const END_OF_MAINTENANCE = '01/2021';
8484
const END_OF_LIFE = '01/2021';

0 commit comments

Comments
 (0)
0