Skip to content

E9li postal3 patch #60599

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG-7.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ in 7.3 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v7.3.0...v7.3.1

* 7.3.0 (2025-05-29)

* bug #60549 [Translation] Add intl-icu fallback for MessageCatalogue metadata (pontus-mp)
* bug #60571 [ErrorHandler] Do not transform file to link if it does not exist (lyrixx)
* bug #60542 [Webhook] Fix controller service name (HypeMC)

* 7.3.0-RC1 (2025-05-25)

* bug #60529 [AssetMapper] Fix SequenceParser possible infinite loop (smnandre)
Expand Down
8 changes: 4 additions & 4 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '7.4.0-DEV';
public const VERSION_ID = 70400;
public const VERSION = '7.3.1-DEV';
public const VERSION_ID = 70301;
public const MAJOR_VERSION = 7;
public const MINOR_VERSION = 4;
public const RELEASE_VERSION = 0;
public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 1;
public const EXTRA_VERSION = 'DEV';

public const END_OF_MAINTENANCE = '11/2028';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected function doSendApi(SentMessage $sentMessage, Email $email, Envelope $e
throw new HttpTransportException('Unable to send an email: '.$result['message'].\sprintf(' (code %d).', $statusCode), $response);
}

$sentMessage->setMessageId($result['message_id']);
$sentMessage->setMessageId($result['data']['message_id']);

return $response;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function create(Dsn $dsn): TransportInterface

$host = $dsn->getHost();
$port = $dsn->getPort();
$apiToken = $this->getPassword($dsn);
$apiToken = $this->getUser($dsn);

return (new PostalApiTransport($apiToken, $host, $this->client, $this->dispatcher, $this->logger))->setPort($port);
}
Expand Down
Loading