8000 Merge pull request #46633 from fabpot/release-6.1.1 · symfony/symfony@1556f3d · GitHub
[go: up one dir, main page]

Skip to content

Commit 1556f3d

Browse files
authored
Merge pull request #46633 from fabpot/release-6.1.1
released v6.1.1
2 parents d1c9c3b + 692b3ff commit 1556f3d

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

CHANGELOG-6.1.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ 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.1 (2022-06-09)
11+
12+
* bug #46570 [HttpClient][WebProfilerBundle] Catch errors when encoding body for c… (Phillip Look)
13+
* bug #46583 [HttpClient] Copy as curl fixes (HypeMC)
14+
* bug #46625 [FrameworkBundle] Disable Serializer data collect by default (chalasr)
15+
* bug #46545 Fix getting class constraints on debug command (loic425)
16+
* bug #46548 [Mime] Allow url as a path in the DataPart::fromPath (wkania)
17+
* bug #46576 Fix choice filter error when loading mix of grouped and non-grouped choices (BreyndotEchse)
18+
* bug #46594 [FrameworkBundle] Fix XML cache config (HeahDude)
19+
* bug #46610 [Messenger] use the outermost wrapping DBAL connection (xabbuh)
20+
* bug #46595 [Console] Escape in command name & description from getDefaultName() (ogizanagi)
21+
* bug #46608 [Console] Fix deprecation when description is null (HypeMC)
22+
* bug #46586 [HttpKernel] Fix BackedEnumValueResolver already resolved enum value (janatjak)
23+
* bug #46574 [Console] Escape in command name & description from PHP (getDefault* methods) (ogizanagi)
24+
* bug #46577 [Serializer] Fix ignore attribute in Xml files (alamirault)
25+
* bug #46565 [WebProfilerBundle] Fix dark theme selected line highlight color & reuse css vars (ogizanagi)
26+
* bug #46553 [WebProfilerBundle] normalizer and encoder can be undefined in template (kor3k)
27+
* bug #46538 [FrameworkBundle][HtmlSanitizer] Fix calling `allowStaticElements` when setting `allow_all_static_elements: true` (norkunas)
28+
* bug #46525 [Serializer] Get attributeContext after converting name (zenas1210)
29+
* bug #46535 [Mime] Check that the path is a file in the DataPart::fromPath (wkania)
30+
* bug #46543 [Cache] do not pass null to strlen() (xabbuh)
31+
* bug #46523 [HttpFoundation] Revert "Send `Content-Length` when calling `Response::send()` and the content is a non-empty string" (nicolas-grekas)
32+
* bug #46526 [Serializer] Added missing __call to TraceableEncoder (danielburger1337)
33+
* bug #46527 [Serializer] Forget partially collected traces (mtarld)
34+
* bug #46515 [PropertyInfo] Fix extracting int range type (norkunas)
35+
* bug #46511 [Serializer] Added missing __call to TraceableNormalizer and TraceableSerializer (danielburger1337)
36+
* bug #46478 [Contracts] remove static cache from `ServiceSubscriberTrait` (kbond)
37+
* bug #46480 [FrameworkBundle][TwigBundle] Fix registering html-sanitizer services (nicolas-grekas)
38+
* bug #46475 [MonologBridge] ensure that the $response property is initialized before being read (xabbuh)
39+
1040
* 6.1.0 (2022-05-27)
1141

1242
* bug #46453 [PropertyInfo] Fix resolution of partially docblock covered constructors (ostrolucky)

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.1-DEV';
81+
public const VERSION = '6.1.1';
8282
public const VERSION_ID = 60101;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 1;
8585
public const RELEASE_VERSION = 1;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = '';
8787

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

0 commit comments

Comments
 (0)
0