8000 Merge pull request #45655 from fabpot/release-6.0.6 · symfony/symfony@4d1a5fd · GitHub
[go: up one dir, main page]

Skip to content

Commit 4d1a5fd

Browse files
authored
Merge pull request #45655 from fabpot/release-6.0.6
released v6.0.6
2 parents e7030ad + 07e8500 commit 4d1a5fd

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG-6.0.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ 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.6 (2022-03-05)
11+
12+
* bug #45619 [redis-messenger] remove undefined array key warnings (PhilETaylor)
13+
* bug #45637 [Cache] do not pass DBAL connections to PDO adapters (xabbuh)
14+
* bug #45631 [HttpFoundation] Fix PHP 8.1 deprecation in `Response::isNotModified` (HypeMC)
15+
* bug #45610 [HttpKernel] Guard against bad profile data (nicolas-grekas)
16+
* bug #45532 Fix deprecations on PHP 8.2 (nicolas-grekas)
< 8000 /td>17+
* bug #45595 [FrameworkBundle] Fix resetting container between tests (nicolas-grekas)
18+
* bug #45590 [Console] Revert StringInput bc break from #45088 (bobthecow)
19+
* bug #45585 [HttpClient] fix checking for unset property on PHP <= 7.1.4 (nicolas-grekas)
20+
* bug #45583 [WebProfilerBundle] Fixes HTML syntax regression introduced by #44570 (xavismeh)
21+
1022
* 6.0.5 (2022-02-28)
1123

1224
* bug #45351 [WebProfilerBundle] Log section minor fixes (missing "notice" filter, log priority, accessibility) (Amunak)

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.6-DEV';
81+
public const VERSION = '6.0.6';
8282
public const VERSION_ID = 60006;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 0;
8585
public const RELEASE_VERSION = 6;
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