Skip to content

Commit eae263a

Browse files
committed
Merge branch '7.0' into 7.1
* 7.0: fix tests fix merge fix typo Change ProxyCacheWarmer::warmUp signature CS fix [Serializer] Keep stack trace for enum value denormalizer error add the MailPace transport to the UnsupportedSchemeException add the Phrase translation provider to the UnsupportedSchemeException [Serializer] Fix partial denormalization with missing constructor arguments [Serializer] Moves dummy to fixtures folder [HttpKernel] Don't validate partially denormalized object fix(mailjet-smtp): disable tls for mailjet as it should use starttls instead
2 parents 955fd72 + c51c8f4 commit eae263a

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\Postmark\Transport\PostmarkTransportFactory;
2526
use Symfony\Component\Mailer\Bridge\Scaleway\Transport\ScalewayTransportFactory;
2627
use Symfony\Component\Mailer\Bridge\Sendgrid\Transport\SendgridTransportFactory;
@@ -42,6 +43,7 @@ public static function setUpBeforeClass(): void
4243
MailerSendTransportFactory::class => false,
4344
MailgunTransportFactory::class => false,
4445
MailjetTransportFactory::class => false,
46+
MailPaceTransportFactory::class => false,
4547
MandrillTransportFactory::class => false,
4648
PostmarkTransportFactory::class => false,
4749
ScalewayTransportFactory::class => false,
@@ -71,6 +73,7 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
7173
yield ['mailersend', 'symfony/mailersend-mailer'];
7274
yield ['mailgun', 'symfony/mailgun-mailer'];
7375
yield ['mailjet', 'symfony/mailjet-mailer'];
76+
yield ['mailpace', 'symfony/mail-pace-mailer'];
7477
yield ['mandrill', 'symfony/mailchimp-mailer'];
7578
yield ['postmark', 'symfony/postmark-mailer'];
7679
yield ['scaleway', 'symfony/scaleway-mailer'];

0 commit comments

Comments
 (0)