Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 85182e7

Browse files
authored
Merge pull request #50482 from fabpot/release-6.3.0
released v6.3.0
2 parents 744c378 + 9241f84 commit 85182e7

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG-6.3.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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 (2023-05-30)
11+
12+
* bug #50432 [Security] Validate `aud` and `iss` claims on OidcTokenHandler (vincentchalamon)
13+
* bug #50477 [Security] Add clock dependency to OidcTokenHandler (nicolas-grekas)
14+
* bug #50437 [Filesystem] Follow symlinks when dumping files (ausi)
15+
* bug #50478 [DependencyInjection] Escape `` from parameter-like default values (MatTheCat)
16+
* bug #50476 [FrameworkBundle] remove support for preloading ESM using headers (dunglas)
17+
* bug #50453 [SecurityBundle] add missing xsd definition for OIDC (aegypius)
18+
* bug #50468 [FrameworkBundle][PhpUnitBridge] Configure doctrine/deprecations as expected (nicolas-grekas)
19+
* bug #50473 [Notifier] Fix ContactEveryoneOptions (nicolas-grekas)
20+
* bug #50470 [SecurityBundle] Fix configuring OIDC user info token handler client (vincentchalamon)
21+
* bug #50456 [AssetMapper] Fix unable to use asset mapper with CSP (vtsykun)
22+
* bug #50458 [HttpKernel] Fix default value ignored with pinned resolvers (HypeMC)
23+
* bug #50452 Hide definitions bearing the `container.excluded` tag (Myks92)
24+
1025
* 6.3.0-RC2 (2023-05-27)
1126

1227
* feature #50445 [AssetMapper] Add "=alias" syntax to importmap:require (weaverryan)

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';
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 = '';
8585

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

0 commit comments

Comments
 (0)