Skip to content

Commit 87b5f1f

Browse files
authored
Merge pull request #44528 from fabpot/release-6.0.1
released v6.0.1
2 parents 3bfbcaa + b74eb14 commit 87b5f1f

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG-6.0.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ in 6.0 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.0.0...v6.0.1
99

10+
* 6.0.1 (2021-12-09)
11+
12+
* bug #44494 Remove FQCN type hints on properties (fabpot)
13+
* bug #44490 [DependencyInjection][Messenger] Add auto-registration for BatchHandlerInterface (GaryPEGEOT)
14+
* bug #44523 [Console] Fix polyfill-php73 requirement (Seldaek)
15+
* bug #44514 Don't access uninitialized typed property ChromePhpHandler::$response (Philipp91)
16+
* bug #44502 [HttpFoundation] do not call preg_match() on null (xabbuh)
17+
* bug #44475 [Console] Handle alias in completion script (GromNaN)
18+
* bug #44481 [FrameworkBundle] Fix loginUser() causing deprecation (wouterj)
19+
* bug #44416 [Translation] Make http requests synchronous when reading the Loco API (Kocal)
20+
* bug #44437 [HttpKernel] Fix wrong usage of SessionUtils::popSessionCookie (simonchrz)
21+
* bug #44350 [Translation] Fix TranslationTrait (Tomasz Kusy)
22+
* bug #44460 [SecurityBundle] Fix ambiguous deprecation message on missing provider (chalasr)
23+
* bug #44467 [Console] Fix parameter types for `ProcessHelper::mustRun()` (derrabus)
24+
* bug #44427 [FrameworkBundle] Fix compatibility with symfony/security-core 6.x (deps=high tests) (wouterj)
25+
* bug #44424 [SecurityBundle] Don't rely on deprecated strategy constants (derrabus)
26+
* bug #44399 Prevent infinite nesting of lazy `ObjectManager` instances when `ObjectManager` is reset (Ocramius)
27+
* bug #44402 [HttpKernel] Fix using FileLinkFormatter after serialization (derrabus)
28+
* bug #44395 [HttpKernel] fix sending Vary: Accept-Language when appropriate (nicolas-grekas)
29+
* bug #44385 [DependencyInjection] Skip parameter attribute configurators in AttributeAutoconfigurationPass if we can't get the constructor reflector (fancyweb)
30+
* bug #44359 Avoid duplicated session listener registration in tests (alexander-schranz)
31+
* bug #44375 [DoctrineBridge] fix calling get_class on non-object (kbond)
32+
* bug #44378 [HttpFoundation] fix SessionHandlerFactory using connections (dmaicher)
33+
* bug #44365 [SecurityBundle]  Fix invalid reference with `always_authenticate_before_granting` (chalasr)
34+
* bug #44361 [HttpClient] Fix handling error info in MockResponse (fancyweb)
35+
* bug #44370 [Lock] create lock table if it does not exist (martinssipenko)
36+
1037
* 6.0.0 (2021-11-29)
1138

1239
* bug #44309 [Messenger] Leverage DBAL's getNativeConnection() method (derrabus)

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

8888
public const END_OF_MAINTENANCE = '07/2022';
8989
public const END_OF_LIFE = '07/2022';

0 commit comments

Comments
 (0)