Skip to content

Commit

Permalink
Merge branch '5.4' into 6.3
Browse files Browse the repository at this point in the history
* 5.4:
  [Mime] Fix serializing uninitialized RawMessage::$message to null
  [Notifer][Smsapi] Set messageId of SentMessage
  [DX] Use Symfony "dark-mode"-responsive logo in README
  support lazy evaluated exception messages with Xdebug 3
  • Loading branch information
nicolas-grekas committed Jan 30, 2024
2 parents 2ae9f62 + ee94d9b commit 4b24dca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions RawMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
*/
class RawMessage
{
/**
* @var iterable|string
*/
private $message;

public function __construct(iterable|string $message)
Expand Down
3 changes: 1 addition & 2 deletions Tests/EmailTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,7 @@ public function testSymfonySerialize()
}
]
},
"body": null,
"message": null
"body": null
}
EOF;

Expand Down
3 changes: 1 addition & 2 deletions Tests/MessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,7 @@ public function testSymfonySerialize()
]
},
"class": "Symfony\\\\Component\\\\Mime\\\\Part\\\\Multipart\\\\MixedPart"
},
"message": null
}
}
EOF;

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/property-access": "^5.4|^6.0",
"symfony/property-info": "^5.4|^6.0",
"symfony/serializer": "~6.2.13|^6.3.2"
"symfony/serializer": "~6.3.12|^6.4.3"
},
"conflict": {
"egulias/email-validator": "~3.0.0",
"phpdocumentor/reflection-docblock": "<3.2.2",
"phpdocumentor/type-resolver": "<1.4.0",
"symfony/mailer": "<5.4",
"symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
"symfony/serializer": "<6.3.12|>=6.4,<6.4.3"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Mime\\": "" },
Expand Down

0 comments on commit 4b24dca

Please sign in to comment.