Skip to content

Commit 6da89e5

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: fix typo CS fix [Serializer] Keep stack trace for enum value denormalizer error add the MailPace transport to the UnsupportedSchemeException [Serializer] Fix partial denormalization with missing constructor arguments [Serializer] Moves dummy to fixtures folder [HttpKernel] Don't validate partially denormalized object
2 parents b7a8093 + e35910b commit 6da89e5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Exception/UnsupportedSchemeException.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ class UnsupportedSchemeException extends LogicException
4444
'class' => Bridge\Mailjet\Transport\MailjetTransportFactory::class,
4545
'package' => 'symfony/mailjet-mailer',
4646
],
47+
'mailpace' => [
48+
'class' => Bridge\MailPace\Transport\MailPaceTransportFactory::class,
49+
'package' => 'symfony/mail-pace-mailer',
50+
],
4751
'mandrill' => [
4852
'class' => Bridge\Mailchimp\Transport\MandrillTransportFactory::class,
4953
'package' => 'symfony/mailchimp-mailer',

Tests/Exception/UnsupportedSchemeExceptionTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
use Symfony\Component\Mailer\Bridge\MailerSend\Transport\MailerSendTransportFactory;
2222
use Symfony\Component\Mailer\Bridge\Mailgun\Transport\MailgunTransportFactory;
2323
use Symfony\Component\Mailer\Bridge\Mailjet\Transport\MailjetTransportFactory;
24+
use Symfony\Component\Mailer\Bridge\MailPace\Transport\MailPaceTransportFactory;
2425
use Symfony\Component\Mailer\Bridge\OhMySmtp\Transport\OhMySmtpTransportFactory;
2526
use Symfony\Component\Mailer\Bridge\Postmark\Transport\PostmarkTransportFactory;
2627
use Symfony\Component\Mailer\Bridge\Scaleway\Transport\ScalewayTransportFactory;
@@ -44,6 +45,7 @@ public static function setUpBeforeClass(): void
4445
MailerSendTransportFactory::class => false,
4546
MailgunTransportFactory::class => false,
4647
MailjetTransportFactory::class => false,
48+
MailPaceTransportFactory::class => false,
4749
MandrillTransportFactory::class => false,
4850
OhMySmtpTransportFactory::class => false,
4951
PostmarkTransportFactory::class => false,
@@ -75,6 +77,7 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
7577
yield ['mailersend', 'symfony/mailersend-mailer'];
7678
yield ['mailgun', 'symfony/mailgun-mailer'];
7779
yield ['mailjet', 'symfony/mailjet-mailer'];
80+
yield ['mailpace', 'symfony/mail-pace-mailer'];
7881
yield ['mandrill', 'symfony/mailchimp-mailer'];
7982
yield ['ohmysmtp', 'symfony/oh-my-smtp-mailer'];
8083
yield ['postmark', 'symfony/postmark-mailer'];

0 commit comments

Comments
 (0)