Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 23147f9

Browse filesBrowse files
authored
Merge pull request #41195 from fabpot/release-5.2.8
released v5.2.8
2 parents 293919f + 27b7ebe commit 23147f9
Copy full SHA for 23147f9

File tree

Expand file treeCollapse file tree

2 files changed

+33
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+33
-2
lines changed

‎CHANGELOG-5.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.2.md
+31Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,37 @@ in 5.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/v5.2.0...v5.2.1
99

10+
* 5.2.8 (2021-05-12)
11+
12+
* security #cve-2021-21424 [Security][Guard] Prevent user enumeration (chalasr)
13+
* bug #41176 [DependencyInjection] fix dumping service-closure-arguments (nicolas-grekas)
14+
* bug #41174 [Console] Fix Windows code page support (orkan)
15+
* bug #41173 [Security] Make Login Rate Limiter also case insensitive for non-ascii user identifiers (Seldaek)
16+
* bug #41168 WDT: Only load "Sfjs" if it is not present already (weaverryan)
17+
* bug #41147 [Inflector][String] wrong plural form of words ending by "pectus" (makraz)
18+
* bug #41160 [HttpClient] Don't prepare the request in ScopingHttpClient (nicolas-grekas)
19+
* bug #41156 [Security] Make Login Rate Limiter case insensitive (jderusse)
20+
* bug #41137 [Security] Reset limiters on successful login (MatTheCat)
21+
* bug #40758 [Security] NullToken signature (jderusse)
22+
* bug #40763 Fix/Rewrite .gitignore regex builder (mvorisek)
23+
* bug #41113 [Console] Fix Windows code page support (orkan)
24+
* bug #40902 [Security] Allow ips parameter in access_control to accept comma-separated string (edefimov)
25+
* bug #40980 [TwigBridge] Fix HTML for translatable custom-file label in Bootstrap 4 theme (acran)
26+
* bug #40955 [Notifier] [Bridge] Fix missed messageId for SendMessage object in slack notifier (WaylandAce)
27+
* bug #40943 [PropertyInfo] PhpDocExtractor: Handle "true" and "false" property types (Maciej Zgadzaj)
28+
* bug #40759 [Form] Add missing TranslatableMessage support to choice_label option of ChoiceType (alexandre-daubois)
29+
* bug #40917 [Config][DependencyInjection] Uniformize trailing slash handling (dunglas)
30+
* bug #40699 [PropertyInfo] Make ReflectionExtractor correctly extract nullability (shiftby)
31+
* bug #40874 [PropertyInfo] fix attribute namespace with recursive traits (soullivaneuh)
32+
* bug #40957 [PhpUnitBridge] Fix tests with ``@doesNotPerformAssertions`` annotations (alexpott)
33+
* bug #41099 [Cache] Check if phpredis version is compatible with stream parameter (nicolassing)
34+
* bug #40982 [Notifier] Fix return SentMessage then Messenger not used (WaylandAce)
35+
* bug #41072 [VarExporter] Add support of PHP enumerations (alexandre-daubois)
36+
* bug #41104 Fix return type in isAllowedProperty method on ReflectionExtractor class (Tomanhez)
37+
* bug #41078 [Notifier] Make FailoverTransport always pick the first transport (jschaedl)
38+
* bug #41105 [Inflector][String] Fixed singularize `edges` > `edge` (ruudk)
39+
* bug #41075 [ErrorHandler] Skip "same vendor" ``@method`` deprecations for `Symfony\*` classes unless symfony/symfony is being tested (nicolas-grekas)
40+
1041
* 5.2.7 (2021-05-01)
1142

1243
* bug #41008 [Security] Do not try to rehash null-passwords (tjveldhuizen)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7474

7575
private static $freshCache = [];
7676

77-
public const VERSION = '5.2.8-DEV';
77+
public const VERSION = '5.2.8';
7878
public const VERSION_ID = 50208;
7979
public const MAJOR_VERSION = 5;
8080
public const MINOR_VERSION = 2;
8181
public const RELEASE_VERSION = 8;
82-
public const EXTRA_VERSION = 'DEV';
82+
public const EXTRA_VERSION = '';
8383

8484
public const END_OF_MAINTENANCE = '07/2021';
8585
public const END_OF_LIFE = '07/2021';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.