8000 Merge pull request #48248 from fabpot/release-6.2.0-BETA3 · symfony/symfony@9333353 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9333353

Browse files
authored
Merge pull request #48248 from fabpot/release-6.2.0-BETA3
released v6.2.0-BETA3
2 parents 631673c + c94cbce commit 9333353

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ in 6.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/v6.2.0...v6.2.1
99

10+
* 6.2.0-BETA3 (2022-11-19)
11+
12+
* bug #48217 [Console] Improve error message when shell is not detected in completion command (GromNaN)
13+
* bug #48222 [Translation] [Lokalize] Configure `replace_breaks` to prevent issues with multilines translations (Kocal)
14+
* bug #48210 [Console]  Fix signal handlers called after event listeners and skip exit (GromNaN)
15+
* bug #48198 [Messenger] Fix time-limit check exception (alamirault)
16+
* feature #48189 [Clock] Provide `modify()` in MockClock (dbrumann)
17+
* bug #48207 [Yaml] Restore deprecated php/const: syntax in YAML key (GromNaN)
18+
* bug #48209 [VarExporter] Use `array<property-name,Closure>` for partial initialization of lazy ghost objects (nicolas-grekas)
19+
* bug #48186 [WebProfilerBundle] Minor tweaks in profiler redesign (javiereguiluz)
20+
* bug #48122 [PhpUnitBridge] Fix language deprecations incorrectly marked as direct (wouterj)
21+
* bug #47998 [Console] Fix console `ProgressBar::override()` after manual `ProgressBar::cleanup()` (maxbeckers)
22+
* bug #48041 [FrameworkBundle] Split loggers debug compiler pass (MatTheCat)
23+
* bug #48032 [SecurityBundle] Set `UserValueResolver`'s priority higher than `EntityValueResolver` (kbond)
24+
* bug #48156 [Mime] When serializing File parts convert to string to allow proper unserialization (ovrflo)
25+
* bug #48170 [Routing] Fix PSR-4 directory loader for abstract classes (derrabus)
26+
* bug #48173 [HttpClient] Handle Amp HTTP client v5 incompatibility gracefully (fancyweb)
27+
* bug #48172 [HttpKernel] Don’t try to wire Response argument with controller.service_arguments (MatTheCat)
28+
* bug #48160 Adding missing argument to sprintf (weaverryan)
29+
* bug #48085 [Messenger] Tell about messenger:consume invalid limit options (MatTheCat)
30+
* bug #48120 [Messenger] Do not throw 'no handlers' exception when skipping handlers due to duplicate handling (wouterj)
31+
* bug #48112 [HttpFoundation] Compare cookie with null value as empty string in ResponseCookieValueSame (fancyweb)
32+
* bug #48119 [FrameworkBundle][Lock] Allow to disable lock without defining a resource (MatTheCat)
33+
* bug #48110 [HttpKernel] Fix deprecation for DateTimeValueResolver with null on non-nullable argument (GromNaN)
34+
* bug #48093 [DependencyInjection] don't move locator tag for service subscriber (RobertMe)
35+
* bug #48075 [Mailer] Stream timeout not detected fgets returns false (Sezil)
36+
* bug #48092 Fix the notification email theme for asynchronously dispatched emails (krisbuist)
37+
* bug #48097 Fix search scope when performing fallback mapping driver detection (spideyfusion)
38+
* bug #48103 [HttpClient] Do not set http_version instead of setting it to null (Tetragramat)
39+
* bug #48077 [FrameworkBundle] Allow UUID v7 in uid configuration (achterin)
40+
* bug #48027 [DependencyInjection] Don't autoconfigure tag when it's already set with attributes (nicolas-grekas)
41+
* feature #48045 [DependencyInjection] Allow enum as service parameter in php config files (alexndlm)
42+
* bug #48062 [Notifier] Mark tokens with #[SensitiveParameter] (nicolas-grekas)
43+
* bug #48050 [HttpFoundation] Check IPv6 is valid before comparing it (PhilETaylor)
44+
1045
* 6.2.0-BETA2 (2022-10-28)
1146

1247
* bug #48020 [FrameworkBundle] add router cache directory option to XML schema (xabbuh)

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

78-
public const VERSION = '6.2.0-DEV';
78+
public const VERSION = '6.2.0-BETA3';
7979
public const VERSION_ID = 60200;
8080
public const MAJOR_VERSION = 6;
8181
public const MINOR_VERSION = 2;
8282
public const RELEASE_VERSION = 0;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = 'BETA3';
8484

8585
public const END_OF_MAINTENANCE = '07/2023';
8686
public const END_OF_LIFE = '07/2023';

0 commit comments

Comments
 (0)
0