8000 Merge pull request #50255 from fabpot/release-6.3.0-BETA2 · symfony/symfony@cab03ea · GitHub
[go: up one dir, main page]

Skip to content

Commit cab03ea

Browse files
authored
Merge pull request #50255 from fabpot/release-6.3.0-BETA2
released v6.3.0-BETA2
2 parents b6d9428 + 335f0dc commit cab03ea

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

CHANGELOG-6.3.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ in 6.3 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.3.0...v6.3.1
99

10+
* 6.3.0-BETA2 (2023-05-07)
11+
12+
* bug #50249 [WebProfilerBundle] Explicit tab controls’ color as they can be buttons (MatTheCat)
13+
* bug #50248 [TwigBundle] fixed wrong `symfony/twig-bridge` dependency version (SVillette)
14+
* bug #50231 [AssetMapper] Fixing 2 bugs related to the compile command and importmaps (weaverryan)
15+
* feature #49553 [Serializer] Add flag to require all properties to be listed in the input (Christian Kolb)
16+
* feature #50232 [AssetMapper] Better public without digest (weaverryan)
17+
* bug #50214 [WebProfilerBundle] Remove legacy filters remnants (MatTheCat)
18+
* bug #50235 [HttpClient] Fix getting through proxies via CONNECT (nicolas-grekas)
19+
* bug #50241 [HttpKernel] Prevent initialising lazy services during services reset (tucksaun)
20+
* bug #50244 [HttpKernel] Fix restoring surrogate content from cache (nicolas-grekas)
21+
* bug #50246 [DependencyInjection] Do not check errored definitions’ type (MatTheCat)
22+
* bug #49557 [PropertyInfo] Fix phpDocExtractor nullable array value type (fabpot)
23+
* bug #50213 [ErrorHandler] Prevent conflicts with WebProfilerBundle’s JavaScript (MatTheCat)
24+
* feature #49608 [OptionsResolver] add `ignoreUndefined()` method to allow skip not interesting options (Constantine Shtompel)
25+
* bug #50216 [DependencyInjection] Allow `AutowireCallable` without method (derrabus)
26+
* bug #50192 [Serializer] backed enum throw notNormalizableValueException outside construct method (alli83)
27+
* bug #50238 [HttpKernel] Don't use eval() to render ESI/SSI (nicolas-grekas)
28+
* bug #50224 [DoctrineBridge] skip subscriber if listener already defined (alli83)
29+
* bug #50218 Profiler respect stateless attribute (alamirault)
30+
* bug #50242 [ErrorHandler] Fix the design of the exception page tabs (javiereguiluz)
31+
* feature #50219 [AssetMapper] Adding debug:assetmap command + normalize paths (weaverryan)
32+
* bug #49760 [Serializer] Add missing withSaveOptions method to XmlEncoderContextBuilder (mtarld)
33+
* bug #50226 [HttpClient] Ensure HttplugClient ignores invalid HTTP headers (nicolas-grekas)
34+
* bug #50125 [HttpKernel] Fix handling of `MapRequest*` attributes (nicolas-grekas)
35+
* bug #50215 [AssetMapper] Fixing wrong values being output in command (weaverryan)
36+
* bug #50203 [Messenger] Fix registering message handlers (nicolas-grekas)
37+
* bug #50204 [ErrorHandler] Skip Httplug deprecations for HttplugClient (nicolas-grekas)
38+
* bug #50206 [AssetMapper] Fix import map package parsing with an @ namespace (weaverryan)
39+
1040
* 6.3.0-BETA1 (2023-05-01)
1141

1242
* feature #49729 [Scheduler] Add a simple Scheduler class for when the component is used standalone (fabpot)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676
*/
7777
private static array $freshCache = [];
7878

79-
public const VERSION = '6.3.0-DEV';
79+
public const VERSION = '6.3.0-BETA2';
8080
public const VERSION_ID = 60300;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 3;
8383
public const RELEASE_VERSION = 0;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = 'BETA2';
8585

8686
public const END_OF_MAINTENANCE = '01/2024';
8787
public const END_OF_LIFE = '01/2024';

0 commit comments

Comments
 (0)
0