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

Skip to content

Commit ddb0546

Browse files
authored
Merge pull request #50313 from fabpot/release-6.3.0-BETA3
released v6.3.0-BETA3
2 parents 3514acd + d93cf13 commit ddb0546

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG-6.3.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ 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-BETA3 (2023-05-13)
11+
12+
* feature #50286 [AssetMapper] Add cached asset factory (weaverryan)
13+
* bug #50307 [AssetMapper] Improving XSD to use attributes whenever possible (weaverryan)
14+
* bug #50305 [OptionsResolver] Fixed changelog (yceruto)
15+
* feature #50291 [AssetMapper] Adding "excluded_patterns" option (weaverryan)
16+
* bug #50294 [AssetMapper] Normalizing logicalPath to a getter like all other properties (weaverryan)
17+
* feature #48496 [Notifier] Add Smsmode bridge (gnito-org)
18+
* feature #48494 [Notifier] Add ClickSend notifier bridge (gnito-org)
19+
* feature #48572 [Notifier] Add SMS options to AllMySms notifier (gnito-org)
20+
* feature #48592 [Notifier] Add SMS options to OrangeSms notifier (gnito-org)
21+
* feature #48579 [Notifier] Add SMS options to GatewayApi notifier (gnito-org)
22+
* feature #48586 [Notifier] Add SMS options to MessageMedia notifier (gnito-org)
23+
* feature #48585 [Notifier] Add SMS options to MessageBird notifier (gnito-org)
24+
* feature #48584 [Notifier] Add SMS options to ContactEveryone notifier (gnito-org)
25+
* feature #48577 [Notifier] Add SMS options to FortySixElks notifier (gnito-org)
26+
* feature #48575 [Notifier] Add SMS options to Esendex notifier (gnito-org)
27+
* feature #48573 [Notifier] Add SMS options to Clickatell notifier (gnito-org)
28+
* bug #50288 [ErrorHandler] Sync `createTabs` from WebProfilerBundle (MatTheCat)
29+
* bug #50251 [Serializer] Handle datetime deserialization in U format (tugmaks)
30+
* bug #50266 [HttpFoundation] Fix file streaming after connection aborted (rlshukhov)
31+
* feature #50274 [HttpClient] Add option `crypto_method` to set the minimum TLS version and make it default to v1.2 (nicolas-grekas)
32+
* bug #50262 [DependencyInjection] Fix dumping non-shared factories with TaggedIteratorArgument (marphi)
33+
* bug #50287 [Messenger] Store dates in UTC when using Doctrine (nicolas-grekas)
34+
* bug #50277 [Messenger] Add `IS_REPEATABLE` flag to `AsMessageHandler` attribute (adrianguenter)
35+
* bug #50301 [FrameworkBundle] Ignore vars from dotenv files in secrets:list (nicolas-grekas)
36+
* feature #50264 [AssetMapper] Flexible public paths + relative path imports + possibility of "building" assets (weaverryan)
37+
* feature #49838 [Scheduler] add `RecurringMessage::getId()` and prevent duplicates (kbond)
38+
* bug #50269 Fix param type annotation (l-vo)
39+
* feature #50270 [Scheduler] add `JitterTrigger` (kbond)
40+
* bug #50230 [FrameworkBundle][Webhook] Throw when required services are missing when using the Webhook component (Jean-Beru)
41+
* bug #50260 [DependencyInjection] Fix dumping/loading errored definitions in XML/Yaml (nicolas-grekas)
42+
* bug #50263 [AssetMapper] Adding autoconfiguration tag for asset compilers (weaverryan)
43+
* bug #50256 [HttpClient] Fix setting duplicate-name headers when redirecting with AmpHttpClient (nicolas-grekas)
44+
1045
* 6.3.0-BETA2 (2023-05-07)
1146

1247
* bug #50249 [WebProfilerBundle] Explicit tab controls’ color as they can be buttons (MatTheCat)

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

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

0 commit comments

Comments
 (0)
0