Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6ee4547

Browse filesBrowse files
authored
Merge pull request #44052 from fabpot/release-6.0.0-BETA2
released v6.0.0-BETA2
2 parents b135d70 + 8a3f838 commit 6ee4547
Copy full SHA for 6ee4547

File tree

2 files changed

+30
-2
lines changed
Filter options

2 files changed

+30
-2
lines changed

‎CHANGELOG-6.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.0.md
+28Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ 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.0-BETA2 (2021-11-14)
11+
12+
* bug #44051 [Notifier] Fix package name (fabpot)
13+
* bug #44050 [Notifier] Fix package names (fabpot)
14+
* bug #44042 Fix DateIntervalToStringTransformer::transform() doc (BenMorel)
15+
* bug #44034 [Yaml] don't try to replace references in quoted strings (xabbuh)
16+
* bug #44013 [ErrorHandler] fix parsing ``@param`` with dollars in the description (nicolas-grekas)
17+
* bug #44010 [DependencyInjection] fix auto-refresh when inline_factories is enabled (nicolas-grekas)
18+
* bug #44028 [ErrorHandler] Fix FlattenException::setPrevious argument typing (welcoMattic)
19+
* bug #44016 [SecurityBundle] Fix listing listeners in profiler when authenticator manager is disabled (94noni)
20+
* bug #44012 [DependencyInjection] fix inlining when non-shared services are involved (nicolas-grekas)
21+
* bug #44002 [Cache] Fix Memory leak (a1812)
22+
* bug #43993 [FrameworkBundle] fix deprecation message (nicolas-grekas)
23+
* feature #43985 [HttpClient] Implement ResetInterface for all http clients (rmikalkenas)
24+
* bug #43981 [FrameworkBundle] fix registering late resettable services (nicolas-grekas)
25+
* bug #43988 [DoctrineBridge] add support for the JSON type (dunglas)
26+
* bug #43987 [PhpUnitBridge] Fix Uncaught ValueError (dunglas)
27+
* feature #43983 [HttpKernel] allow ignoring kernel.reset methods that don't exist (nicolas-grekas)
28+
* bug #43967 [Loco] Fix Loco Provider ID and pull & push local messages reading (welcoMattic)
29+
* bug #43961 [HttpClient] Curl http client has to reinit curl multi handle on reset (rmikalkenas)
30+
* bug #43930 [DependencyInjection] Fix support for unions/intersections together with `ServiceSubscriberInterface` (kbond)
31+
* bug #43948 [Asset][Security] Fixed leftover deprecations PHP 8.1 (michaljusiega)
32+
* bug #43944 [Yaml] revert using functions provided by polyfill packages (xabbuh)
33+
* bug #43940 [FrameworkBundle] Fix logic in workflow:dump between workflow name and workflow id (noniagriconomie)
34+
* bug #43947 [HttpKernel] Make sure FileLinkFormatter can be serialized (derrabus)
35+
* bug #43945 [Runtime] fix defining APP_DEBUG when Dotenv is not enabled (nicolas-grekas)
36+
* bug #43946 [HttpKernel] Make sure a serialized DumpDataCollector can be unserialized (derrabus)
37+
1038
* 6.0.0-BETA1 (2021-11-05)
1139

1240
* feature #43916 [PropertyInfo] Support the list pseudo-type (derrabus)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.0-DEV';
81+
public const VERSION = '6.0.0-BETA2';
8282
public const VERSION_ID = 60000;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 0;
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 = '07/2022';
8989
public const END_OF_LIFE = '07/2022';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.