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

Skip to content

Commit c149a08

Browse files
authored
Merge pull request #46469 from fabpot/release-6.1.0
released v6.1.0
2 parents 5b3bfeb + 756eed1 commit c149a08

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 (2022-05-27)
11+
12+
* bug #46453 [PropertyInfo] Fix resolution of partially docblock covered constructors (ostrolucky)
13+
* bug #46454 [ExpressionLanguage] Fix null-safe chaining (HypeMC)
14+
* bug #46386 [Console]  Fix missing negative variation of negatable options in shell completion (GromNaN)
15+
* bug #46387 [Console] Complete negatable options (Fish) (GromNaN)
16+
* bug #46448 [DependencyInjection] Fix "proxy" tag: resolve its parameters and pass it to child definitions (nicolas-grekas)
17+
* bug #46442 [FrameworkBundle] Revert "bug #46125 Always add CacheCollectorPass (fancyweb)" (chalasr)
18+
* bug #46443 [DoctrineBridge] Don't reinit managers when they are proxied as ghost objects (nicolas-grekas)
19+
* bug #46427 [FrameworkBundle] fix wiring of annotations.cached_reader (nicolas-grekas)
20+
* bug #46425 [DependencyInjection] Ignore unused bindings defined by attribute (nicolas-grekas)
21+
* bug #46434 [FrameworkBundle] Fix BC break in abstract config commands (yceruto)
22+
* bug #46424 [Form] do not accept array input when a form is not multiple (xabbuh)
23+
* bug #46367 [Mime] Throw exception when body in Email attach method is not ok (alamirault)
24+
* bug #46421 [VarDumper][VarExporter] Deal with DatePeriod->include_end_date on PHP 8.2 (nicolas-grekas)
25+
* bug #46401 [Cache] Throw when "redis_sentinel" is used with a non-Predis "class" option (buffcode)
26+
* bug #46414 Bootstrap 4 fieldset for row errors (konradkozaczenko)
27+
* bug #46412 [FrameworkBundle] Fix dumping extension config without bundle (yceruto)
28+
* bug #46385 [HttpKernel] New bundle path convention when `AbstractBundle` is used (yceruto)
29+
* bug #46382 [HttpClient] Honor "max_duration" when replacing requests with async decorators (nicolas-grekas)
30+
* bug #46407 [Filesystem] Safeguard (sym)link calls (derrabus)
31+
* bug #46098 [Form] Fix same choice loader with different choice values (HeahDude)
32+
* bug #46380 [HttpClient] Add missing HttpOptions::setMaxDuration() (nicolas-grekas)
33+
* bug #46377 [HttpKernel] Fix missing null type in `ErrorListener::__construct()` (chalasr)
34+
* bug #46249 [HttpFoundation] [Session] Regenerate invalid session id (peter17)
35+
* bug #46373 [HtmlSanitizer] Fix default config service definition (wouterj)
36+
* bug #46328 [Config] Allow scalar configuration in PHP Configuration (jderusse, HypeMC)
37+
* bug #46366 [Mime] Add null check for EmailHeaderSame (magikid)
38+
* bug #46361 [PropertyInfo] Ignore empty doc-block for promoted properties in PhpStanExtractor (BoShurik)
39+
* bug #46364 [Config] Fix looking for single files in phars with GlobResource (nicolas-grekas)
40+
* bug #46365 [HttpKernel] Revert "bug #46327 Allow ErrorHandler ^5.0 to be used" (nicolas-grekas)
41+
1042
* 6.1.0-RC1 (2022-05-14)
1143

1244
* feature #46335 [Form][FrameworkBundle][TwigBundle] Add Twig filter, form-type extension and improve service definitions for HtmlSanitizer (nicolas-grekas)

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

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

0 commit comments

Comments
 (0)