Skip to content

Commit d303433

Browse files
authored
Merge pull request symfony#46354 from fabpot/release-6.1.0-RC1
released v6.1.0-RC1
2 parents baa367e + 34c665d commit d303433

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG-6.1.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,38 @@ in 6.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/v6.1.0...v6.1.1
99

10+
* 6.1.0-RC1 (2022-05-14)
11+
12+
* feature #46335 [Form][FrameworkBundle][TwigBundle] Add Twig filter, form-type extension and improve service definitions for HtmlSanitizer (nicolas-grekas)
13+
* bug #46114 Fixes "Incorrectly nested style tag found" error when using multi-line header content (Perturbatio)
14+
* bug #46325 [Ldap] Fix LDAP connection options (buffcode)
15+
* bug #46341 Fix aliases handling in command name completion (Seldaek)
16+
* bug #46317 [Security/Http] Ignore invalid URLs found in failure/success paths (nicolas-grekas)
17+
* bug #46309 [Security] Fix division by zero (tvlooy)
18+
* bug #46327 [HttpKernel] Allow ErrorHandler ^5.0 to be used in HttpKernel 4.4 (mpdude)
19+
* bug #46310 [MonologBridge] Fix LevelName being removed in Monolog 3.0 (Seldaek)
20+
* bug #46297 [Serializer] Fix JsonSerializableNormalizer ignores circular reference handler in $context (BreyndotEchse)
21+
* bug #46291 [Console] Suppress unhandled error in some specific use-cases. (rw4lll)
22+
* bug #46302 [ErrorHandler] Fix list of tentative return types (nicolas-grekas)
23+
* bug #46293 [HttpClient] "debug" is missing if a request failed to even start (weaverryan)
24+
* bug #45981 [Serializer][PropertyInfo] Fix support for "false" built-in type on PHP 8.2 (alexandre-daubois)
25+
* feature #41676 [Console] Table vertical rendering (yoannrenard)
26+
* bug #46277 [HttpKernel] Fix SessionListener without session in request (edditor)
27+
* bug #46282 [DoctrineBridge] Treat firstResult === 0 like null (derrabus)
28+
* bug #46239 [Translation] Refresh local translations on PushCommand if the provider has domains (Florian-B)
29+
* bug #46274 [HtmlSanitizer] Fix node renderer handling of self-closing (void) elements (omniError)
30+
* bug #46276 [DependencyInjection] Fix lazyness of AutowiringFailedException (nicolas-grekas)
31+
* bug #46278 [Workflow] Fix deprecated syntax for interpolated strings (nicolas-grekas)
32+
* bug #46264 [Console] Better required argument check in InputArgument (jnoordsij)
33+
* bug #46272 [DependencyInjection] Fix resolving parameters found in #[Autowire] (nicolas-grekas)
34+
* bug #46262 [EventDispatcher] Fix removing listeners when using first-class callable syntax (javer)
35+
* feature #46153 [MonologBridge] Add support for Monolog 3 (Seldaek)
36+
* bug #46199 [HttpKernel] Handle previously converted `DateTime` arguments (mbabker)
37+
* bug #46216 [Form] fix populating single widget time view data with different timezones (xabbuh)
38+
* bug #46221 [DomCrawler][VarDumper] Fix html-encoding emojis (nicolas-grekas)
39+
* bug #46220 [Console] Fix fish completion script (wouterj)
40+
* bug #46167 [VarExporter] Fix exporting DateTime objects on PHP 8.2 (nicolas-grekas)
41+
1042
* 6.1.0-BETA2 (2022-04-27)
1143

1244
* feature #45282 [Serializer] Support canners in object normalizer (rmikalkenas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static array $freshCache = [];
8080

81-
public const VERSION = '6.1.0-DEV';
81+
public const VERSION = '6.1.0-RC1';
8282
public const VERSION_ID = 60100;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 1;
8585
public const RELEASE_VERSION = 0;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = 'RC1';
8787

8888
public const END_OF_MAINTENANCE = '01/2023';
8989
public const END_OF_LIFE = '01/2023';

0 commit comments

Comments
 (0)