8000 Merge branch '6.3' into 6.4 · symfony/symfony@f0959b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit f0959b4

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: [Mailer] update Brevo SMTP host change default doctrine DBAL provider to XML attribute
2 parents 0d4e2b8 + 8a93c4c commit f0959b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@
339339
<xsd:element name="default-psr6-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
340340
<xsd:element name="default-redis-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
341341
<xsd:element name="default-memcached-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
342-
<xsd:element name="default-doctrine-dbal-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
343342
<xsd:element name="default-pdo-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
344343
<xsd:element name="pool" type="cache_pool" minOccurs="0" maxOccurs="unbounded" />
345344
</xsd:sequence>
@@ -351,6 +350,7 @@
351350
<xsd:attribute name="default-redis-provider" type="xsd:string" />
352351
<xsd:attribute name="default-memcached-provider" type="xsd:string" />
353352
<xsd:attribute name="default-pdo-provider" type="xsd:string" />
353+
<xsd:attribute name="default-doctrine-dbal-provider" type="xsd:string" />
354354
<xsd:attribute name="prefix-seed" type="xsd:string" />
355355
</xsd:complexType>
356356

src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueSmtpTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final class SendinblueSmtpTransport extends EsmtpTransport
2424
{
2525
public function __construct(string $username, #[\SensitiveParameter] string $password, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
2626
{
27-
parent::__construct('smtp-relay.sendinblue.com', 465, true, $dispatcher, $logger);
27+
parent::__construct('smtp-relay.brevo.com', 465, true, $dispatcher, $logger);
2828

2929
$this->setUsername($username);
3030
$this->setPassword($password);

0 commit comments

Comments
 (0)
0