8000 Release v6.3.0-BETA2 by fabpot · Pull Request #50255 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Release v6.3.0-BETA2 #50255

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG-6.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,36 @@ in 6.3 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.3.0...v6.3.1

* 6.3.0-BETA2 (2023-05-07)

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

* 6.3.0-BETA1 (2023-05-01)

* feature #49729 [Scheduler] Add a simple Scheduler class for when the component is used standalone (fabpot)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.3.0-DEV';
public const VERSION = '6.3.0-BETA2';
public const VERSION_ID = 60300;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = 'BETA2';

public const END_OF_MAINTENANCE = '01/2024';
public const END_OF_LIFE = '01/2024';
Expand Down
0