Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1728f78

Browse files
authored
Merge pull request #46195 from fabpot/release-6.1.0-BETA2
released v6.1.0-BETA2
2 parents 634bca4 + 6842746 commit 1728f78

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG-6.1.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ 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-BETA2 (2022-04-27)
11+
12+
* feature #45282 [Serializer] Support canners in object normalizer (rmikalkenas)
13+
* feature #46157 [Routing] Remove variadic constructor signature (wouterj)
14+
* bug #46154 [Mailer] Restore X-Transport after failure (zenas1210)
15+
* bug #46178 [DependencyInjection] Properly declare #[When] as allowed on functions (nicolas-grekas)
16+
* bug #46171 [VarDumper] Fix dumping floats on PHP8 (nicolas-grekas)
17+
* bug #46170 Fix dumping enums on PHP 8.2 (nicolas-grekas)
18+
* bug #46143 [Cache] Prevent fatal errors on php 8 when running concurrently with TagAwareAdapter v6.1 (sbelyshkin)
19+
* bug #45896 [Cache] Optimize caching of tags (sbelyshkin)
20+
* bug #46149 Modify processing of uploaded files to be compatible with PHP 8.1 (p-golovin)
21+
* feature #46112 [DependencyInjection] Rename `#[InnerService]` to `#[MapDecorated]` (chalasr)
22+
* bug #46125 [FrameworkBundle] Always add CacheCollectorPass (fancyweb)
23+
* feature #45989 [FrameworkBundle] deprecate not setting http_method_override (Tobion)
24+
* feature #46042 [Routing] Add params variable to condition expression (HypeMC)
25+
* feature #46115 [FrameworkBundle] Add support for route attributes in kernel controller methods (dunglas)
26+
* bug #46121 Fix "Notice: Undefined index: headers" in messenger with Oracle (rjd22)
27+
* feature #45834 [DependencyInjection] add AsDecorator class attribute and InnerService parameter attribute (Jean-Beru)
28+
* bug #46106 [String] Fix ansi escape sequences regex (fancyweb)
29+
* feature #46056 [PropertyInfo] Add support for promoted properties in PhpStanExtractor (simPod)
30+
* feature #46047 [Notifier] smsapi - send messages in test mode (Patryk Kozłowski)
31+
* bug #46097 [Routing] fix router base url when default uri has trailing slash (Tobion)
32+
* feature #46052 [TwigBundle] Deprecate option "autoescape", use "autoescape_service[_method]" instead (nicolas-grekas)
33+
* bug #46054 [SecurityBundle] Use config's secret in remember-me signatures (jderusse)
34+
* feature #45528 [Routing] Add Requirement, a collection of universal regular-expressions constants to use as route parameter requirements (fancyweb)
35+
* bug #46051 Don't replace symfony/security-guard (derrabus)
36+
1037
* 6.1.0-BETA1 (2022-04-15)
1138

1239
* feature #44798 [FrameworkBundle] Integrate the HtmlSanitizer component (tgalopin, wouterj)

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-BETA2';
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 = 'BETA2';
8787

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

0 commit comments

Comments
 (0)