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

Skip to content

Commit f21b512

Browse files
authored
Merge pull request #60397 from fabpot/release-7.3.0-BETA2
released v7.3.0-BETA2
2 parents 396e5eb + 76c0d49 commit f21b512

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

CHANGELOG-7.3.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ in 7.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/v7.3.0...v7.3.1
99

10+
* 7.3.0-BETA2 (2025-05-10)
11+
12+
* bug #58643 [SecurityBundle] Use Composer `InstalledVersions` to check if flex is installed (andyexeter)
13+
* feature #54276 [Workflow] Add support for executing custom workflow definition validators during the container compilation (lyrixx)
14+
* feature #52981 [FrameworkBundle] Make `ValidatorCacheWarmer` and `SerializeCacheWarmer` use `kernel.build_dir` instead of `kernel.cache_dir` (Okhoshi)
15+
* feature #54384 [TwigBundle] Use `kernel.build_dir` to store the templates known at build time (Okhoshi)
16+
* bug #60275 [DoctrineBridge] Fix UniqueEntityValidator Stringable identifiers (GiuseppeArcuti, wkania)
17+
* feature #59602 [Console] `#[Option]` rules & restrictions (kbond)
18+
* feature #60389 [Console] Add support for `SignalableCommandInterface` with invokable commands (HypeMC)
19+
* bug #60293 [Messenger] fix asking users to select an option if `--force` option is used in `messenger:failed:retry` command (W0rma)
20+
* bug #60392 [DependencyInjection][FrameworkBundle] Fix precedence of `App\Kernel` alias and ignore `container.excluded` tag on synthetic services (nicolas-grekas)
21+
* bug #60379 [Security] Avoid failing when PersistentRememberMeHandler handles a malformed cookie (Seldaek)
22+
* bug #60308 [Messenger] Fix integration with newer versions of Pheanstalk (HypeMC)
23+
* bug #60373 [FrameworkBundle] Ensure `Email` class exists before using it (Kocal)
24+
* bug #60365 [FrameworkBundle] ensure that all supported e-mail validation modes can be configured (xabbuh)
25+
* bug #60350 [Security][LoginLink] Throw `InvalidLoginLinkException` on invalid parameters (davidszkiba)
26+
* bug #60366 [Console] Set description as first parameter to `Argument` and `Option` attributes (alamirault)
27+
* bug #60361 [Console] Ensure overriding `Command::execute()` keeps priority over `__invoke()` (GromNaN)
28+
* feature #60028 [ObjectMapper] Condition to target a specific class (soyuka)
29+
* feature #60344 [Console] Use kebab-case for auto-guessed input arguments/options names (chalasr)
30+
* bug #60340 [String] fix EmojiTransliterator return type compatibility with PHP 8.5 (xabbuh)
31+
* bug #60322 [FrameworkBundle] drop the limiters option for non-compound rater limiters (xabbuh)
32+
1033
* 7.3.0-BETA1 (2025-05-02)
1134

1235
* feature #60232 Add PHP config support for routing (fabpot)

src/Symfony/Component/HttpKernel/Kernel.php

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

76-
public const VERSION = '7.3.0-DEV';
76+
public const VERSION = '7.3.0-BETA2';
7777
public const VERSION_ID = 70300;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 3;
8080
public const RELEASE_VERSION = 0;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = 'BETA2';
8282

8383
public const END_OF_MAINTENANCE = '05/2025';
8484
public const END_OF_LIFE = '01/2026';

0 commit comments

Comments
 (0)
0