Skip to content

Commit

Permalink
Merge pull request #50455 from fabpot/release-6.3.0-RC2
Browse files Browse the repository at this point in the history
released v6.3.0-RC2
  • Loading branch information
fabpot committed May 27, 2023
2 parents 568b653 + 60588cc commit e885d53
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG-6.3.md
Expand Up @@ -7,6 +7,19 @@ 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-RC2 (2023-05-27)

* feature #50445 [AssetMapper] Add "=alias" syntax to importmap:require (weaverryan)
* bug #50442 [SecurityBundle] Update security-1.0.xsd to include missing access-token definition (aegypius)
* bug #50440 [DependencyInjection] Revert "Use weak references in the container" (nicolas-grekas)
* bug #50429 [Console] block input stream if needed (joelwurtz)
* bug #50397 [HttpKernel][VarDumper] Fix dumping with labels (nicolas-grekas)
* bug #50408 [AssetMapper] Change default importmap "provider" to JsDelivr+esm (weaverryan, nicolas-grekas)
* bug #50394 [AssetMapper] Avoid loading potentially ALL assets in dev server (weaverryan)
* bug #50400 [AssetMapper] Sometimes asset contents are built from non-asset files (weaverryan)
* bug #50406 [VarDumper] Fix `dd()` showing line with `null` (HypeMC)
* bug #50393 [AssetMapper] Fixing incorrect exception & adding allowing more realistic error mode (weaverryan)

* 6.3.0-RC1 (2023-05-22)

* bug #49817 [Scheduler] Improve triggers performance when possible (fabpot)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
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-RC2';
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 = 'RC2';

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

0 comments on commit e885d53

Please sign in to comment.