From cc2525ea380a00f17bb1e9a65e0c256a5145cd2d Mon Sep 17 00:00:00 2001 From: gaalferov Date: Thu, 3 Oct 2024 12:58:51 +0200 Subject: [PATCH 1/2] remove an expected message from the test --- tests/Bridge/Transport/MailtrapTransportFactoryTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Bridge/Transport/MailtrapTransportFactoryTest.php b/tests/Bridge/Transport/MailtrapTransportFactoryTest.php index 65f41bd..2820448 100644 --- a/tests/Bridge/Transport/MailtrapTransportFactoryTest.php +++ b/tests/Bridge/Transport/MailtrapTransportFactoryTest.php @@ -131,8 +131,7 @@ public function createProvider(): iterable public function unsupportedSchemeProvider(): iterable { yield [ - new Dsn('mailtrap+foo', 'mailtrap', self::USER), - 'The "mailtrap+foo" scheme is not supported; supported schemes for mailer "mailtrap" are: "mailtrap", "mailtrap+api".', + new Dsn('mailtrap+foo', 'mailtrap', self::USER) ]; } From 99b906a26154b7eabf6384843af219916531e541 Mon Sep 17 00:00:00 2001 From: gaalferov Date: Thu, 3 Oct 2024 13:02:46 +0200 Subject: [PATCH 2/2] update CHANGELOG --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1e3e3a..354ada3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [2.0.2] - 2024-10-04 + +- Remove an expected message from the `testUnsupportedSchemeException` method ([reason](https://github.com/symfony/mailer/commit/a098a3fe7f42a30235b862162090900cbf787ff6)) + + ## [2.0.1] - 2024-08-16 - Support mixed types in template_variables (array, string, int, float, bool)