8000 Merge pull request #42264 from fabpot/release-5.2.12 · rubanooo/symfony@5463d8f · GitHub
[go: up one dir, main page]

Skip to content

Commit 5463d8f

Browse files
authored
Merge pull request symfony#42264 from fabpot/release-5.2.12
released v5.2.12
2 parents 34a5daf + 83014d1 commit 5463d8f

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

CHANGELOG-5.2.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ 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.12 (2021-07-26)
11+
12+
* bug #42212 [Lock] Handle lock with long key (jderusse)
13+
* bug #42223 [Debug][ErrorHandler] Do not use the php80 polyfill (nicolas-grekas)
14+
* bug #42207 [Console] fix table setHeaderTitle without headers (a1812)
15+
* bug #42130 [Translation] fix fallback to Locale::getDefault() (nicolas-grekas)
16+
* bug #42184 [Mailer] Make sure Http TransportException is not leaking (Nyholm)
17+
* bug #42091 [Console] Run commands when implements SignalableCommandInterface without pcntl and they have'nt signals (PaolaRuby)
18+
* bug #42150 [Form] Fix 'invalid_message' use in multiple ChoiceType (alexandre-daubois)
19+
* bug #42183 [Notifier] Allow passing a previous throwable to exceptions (derrabus)
20+
* bug #42182 [Notifier] Make sure Http TransportException is not leaking (Nyholm)
21+
* bug #42173 [Messenger] [Redis] Fix auth option wrongly considered invalid (chalasr)
22+
* bug #42174 Indicate compatibility with psr/log 2 and 3 (derrabus)
23+
* bug #42112 [HttpFoundation] fix FileBag under PHP 8.1 (alexpott)
24+
* bug #42131 [PhpUnitBridge] Fix composer resolution on Windows (Rainrider)
25+
* bug #42097 [DependencyInjection] Support for intersection types (derrabus)
26+
* bug #42114 [HttpFoundation] Fix return types of SessionHandler::gc() (derrabus)
27+
* bug #42099 [VarDumper] Support for intersection types (derrabus)
28+
* bug #42011 [Cache] Support decorated Dbal drivers in PdoAdapter (Jeroeny)
29+
* bug #42068 Add a Special Case for Translating Choices in en_US_POSIX (chrisguitarguy)
30+
* bug #42074 Fix ctype_digit deprecation (alexpott)
31+
* bug #42084 [WebProfilerBundle] Fix the values of some CSS properties (javiereguiluz)
32+
* bug #42079 [FrameworkBundle] Fixed file operations in Sodium vault seal (javiereguiluz)
33+
* bug #42067 [Messenger] [Redis] Make `auth` option works (welcoMattic)
34+
* bug #42054 [DoctrineBridge] fix setting default mapping type to attribute/annotation on php 8/7 respectively (nicolas-grekas)
35+
* bug #42059 [Messenger] Fixed BC layer for RedeliveryStamp (Nyholm)
36+
* bug #42049 [TwigBridge] do not render the same label id attribute twice (xabbuh)
37+
* bug #42032 [HttpKernel] recover from failed deserializations (xabbuh)
38+
* bug #42035 [Messenger] Fix use_notify default value for PostgreSqlConnection (tgalopin)
39+
* bug #41990 [Lock] fix derivating semaphore from key (nicolas-grekas)
40+
* bug #40529 [Translation] Missing translations from traits (insekticid)
41+
* bug #41384 Fix SkippedTestSuite (jderusse)
42+
* bug #41966 [Console] Revert "bug #41952 fix handling positional arguments" (chalasr, nicolas-grekas)
43+
* bug #41905 [EventDispatcher] Correct the called event listener method case (JJsty1e)
44+
* bug #41952 [Console] fix handling positional arguments (nicolas-grekas)
45+
* bug #41887 [PhpUnitBridge] Fix deprecation handler with PHPUnit 10 (YaFou)
46+
1047
* 5.2.11 (2021-06-30)
1148

1249
* bug #41893 [Filesystem] Workaround cannot dumpFile into "protected" folders on Windows (arnegroskurth)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.12-DEV';
77+
public const VERSION = '5.2.12';
7878
public const VERSION_ID = 50212;
7979
public const MAJOR_VERSION = 5;
8080
public const MINOR_VERSION = 2;
8181
public const RELEASE_VERSION = 12;
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