1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2026-03-03 14:24:06 +00:00

Compare commits

3 الالتزامات
3.0.0 ... 3.0.1

المؤلف SHA1 الرسالة التاريخ
Adam Cooke
454d86734d Merge pull request #2844 from postalserver/release-please--branches--main
chore(main): release 3.0.1
2024-03-05 19:23:40 +00:00
github-actions[bot]
7fd538d6c4 chore(main): release 3.0.1 2024-03-05 18:56:59 +00:00
Adam Cooke
6dd6e29929 fix: fix issue with sending mail when smtp relays are configured 2024-03-05 18:56:38 +00:00
3 ملفات معدلة مع 9 إضافات و2 حذوفات

عرض الملف

@@ -1,3 +1,3 @@
{ {
".": "3.0.0" ".": "3.0.1"
} }

عرض الملف

@@ -2,6 +2,13 @@
This file contains all the latest changes and updates to Postal. This file contains all the latest changes and updates to Postal.
## [3.0.1](https://github.com/postalserver/postal/compare/3.0.0...3.0.1) (2024-03-05)
### Bug Fixes
* fix issue with sending mail when smtp relays are configured ([6dd6e29](https://github.com/postalserver/postal/commit/6dd6e29929c70eaa8b9d3b33c184996b0b6abb82))
## [3.0.0](https://github.com/postalserver/postal/compare/2.3.2...3.0.0) (2024-03-04) ## [3.0.0](https://github.com/postalserver/postal/compare/2.3.2...3.0.0) (2024-03-04)
This version of Postal introduces a number of larger changes. Please be sure to follow the [upgrade guide](https://docs.postalserver.io/getting-started/upgrade-to-v3) when upgrading to Postal v3. Highlights include: This version of Postal introduces a number of larger changes. Please be sure to follow the [upgrade guide](https://docs.postalserver.io/getting-started/upgrade-to-v3) when upgrading to Postal v3. Highlights include:

عرض الملف

@@ -250,7 +250,7 @@ class SMTPSender < BaseSender
SMTPClient::Server.new(relay.host, relay.port, ssl_mode: relay.ssl_mode) SMTPClient::Server.new(relay.host, relay.port, ssl_mode: relay.ssl_mode)
end.compact end.compact
@smtp_relays = hosts.empty? ? nil : hosts @smtp_relays = relays.empty? ? nil : relays
end end
end end