File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed
src/Symfony/Component/Mailer Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,21 @@ in 7.1 minor versions.
7
7
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
8
8
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v7.1.0...v7.1.1
9
9
10
+ * 7.1.0 (2024-05-31)
11
+
12
+ * bug #57248 [ DoctrineBridge] Revert deprecating by-{id} mapping of entities (nicolas-grekas)
13
+ * bug #54572 [ Mailer] Fix sendmail transport failure handling and interactive mode (bobvandevijver)
14
+ * bug #57228 [ Mime] fix PHP 7 compatibility (xabbuh)
15
+ * bug #57065 [ Mime] Fixed ` Mime\Message::ensureValidity() ` when a required header is set, but has an empty body (rhertogh)
16
+ * bug #57069 [ Config] gracefully handle cases when no resolver is set (xabbuh)
17
+ * bug #57109 [ Notifier] keep boolean options when their value is false (xabbuh)
18
+ * bug #56848 [ DoctrineBridge] Undeprecate DoctrineExtractor::getTypes() (derrabus)
19
+ * bug #54971 [ Serializer] Cache readability/writability computation (mtarld)
20
+ * bug #54979 [ Cache] Fix irrelevant deprecation when connecting to Couchbase (derrabus)
21
+ * bug #56827 Fix CharsetValidator with string encoding (alamirault)
22
+ * bug #54977 [ DependencyInjection] Fix prepending strategy for php config loader (yceruto)
23
+ * bug #56488 [ VarExporter] Fix exporting default values involving global constants (kylekatarnls)
24
+
10
25
* 7.1.0-RC1 (2024-05-17)
11
26
12
27
* bug #54970 [ DependencyInjection] Process PHP configs using the ContainerConfigurator (MatTheCat)
Original file line number Diff line number Diff line change 17
17
use Symfony \Component \Mailer \Exception \TransportException ;
18
18
use Symfony \Component \Mailer \SentMessage ;
19
19
use Symfony \Component \Mailer \Transport \SendmailTransport ;
20
+ use Symfony \Component \Mailer \Transport \Smtp \SmtpTransport ;
20
21
use Symfony \Component \Mailer \Transport \Smtp \Stream \ProcessStream ;
21
- use Symfony \Component \Mailer \Transport \TransportInterface ;
22
22
use Symfony \Component \Mime \Address ;
23
23
use Symfony \Component \Mime \Email ;
24
24
use Symfony \Component \Mime \RawMessage ;
@@ -130,7 +130,7 @@ public function testDoesNotThrowWhenInteractive()
130
130
$ transportProperty ->setAccessible (true );
131
131
132
132
// Replace the transport with an anonymous consumer that trigger the stream methods
133
- $ transportProperty ->setValue ($ sendmailTransport , new class ($ transportProperty ->getValue ($ sendmailTransport )->getStream ()) implements TransportInterface {
133
+ $ transportProperty ->setValue ($ sendmailTransport , new class ($ transportProperty ->getValue ($ sendmailTransport )->getStream ()) extends SmtpTransport {
134
134
private $ stream ;
135
135
136
136
public function __construct (ProcessStream $ stream )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public function setCommand(string $command): void
31
31
$ this ->command = $ command ;
32
32
}
33
33
34
- public function setInteractive (bool $ interactive )
34
+ public function setInteractive (bool $ interactive ): void
35
35
{
36
36
$ this ->interactive = $ interactive ;
37
37
}
You can’t perform that action at this time.
0 commit comments