From abcf63aaa8a5ee84f3a2b35c384ce496673c92ac Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Thu, 14 Nov 2019 15:24:33 +0100 Subject: [PATCH] [Mailer] Add UPGRADE entry about the null transport DSN --- UPGRADE-4.4.md | 5 +++++ src/Symfony/Component/Mailer/CHANGELOG.md | 1 + 2 files changed, 6 insertions(+) diff --git a/UPGRADE-4.4.md b/UPGRADE-4.4.md index aef34c47bd..1d1863e4f8 100644 --- a/UPGRADE-4.4.md +++ b/UPGRADE-4.4.md @@ -164,6 +164,11 @@ Lock * Deprecated services `lock.store.flock`, `lock.store.semaphore`, `lock.store.memcached.abstract` and `lock.store.redis.abstract`, use `StoreFactory::createStore` instead. +Mailer +------ + + * [BC BREAK] Changed the DSN to use for disabling delivery (using the `NullTransport`) from `smtp://null` to `null://null` (host doesn't matter). + Messenger --------- diff --git a/src/Symfony/Component/Mailer/CHANGELOG.md b/src/Symfony/Component/Mailer/CHANGELOG.md index 060d333d74..051984f001 100644 --- a/src/Symfony/Component/Mailer/CHANGELOG.md +++ b/src/Symfony/Component/Mailer/CHANGELOG.md @@ -4,6 +4,7 @@ CHANGELOG 4.4.0 ----- + * [BC BREAK] changed the `NullTransport` DSN from `smtp://null` to `null://null` * [BC BREAK] renamed `SmtpEnvelope` to `Envelope`, renamed `DelayedSmtpEnvelope` to `DelayedEnvelope` * [BC BREAK] changed the syntax for failover and roundrobin DSNs