New
Keila v0.16.0
Version 0.16.0
🔄 Automatic Update Notifications
Breaking Changes
MAILER_SMTP_FROM_EMAILis now used as the default forMAILER_SMTP_USERwhen onlyMAILER_SMTP_FROM_EMAILis set. Before, the inverse was true (onlyMAILER_SMTP_USERneeded to be set and was used as the default forMAILER_SMTP_FROM_EMAIL). This change was made to address the fact that the SMTP username might be confidential and shouldn’t be accidentally exposed by using it as the FROM address in system emails. If you are already setting both environment variables, you don’t need to change anything but if you were only settingMAILER_SMTP_USER, you need to update your configuration. Fixes #356 (thanks @kevinam99 for implementing)
Added
- Information about new releases is now automatically fetched and displayed on a new "System info"
admin page. You can disable this by setting
DISABLE_UPDATE_CHECKS=true. - The log level can now be configured by setting
LOG_LEVELtodebug,info, andwarning. Implements #360 (thanks @kevinam99) mjml_bodyanhtml_bodyare now included in the Campaign API responses
Fixed
- Segment queries with the
$notoperator (e.g.{"$not": {"data.foo": "bar"}}) now also correctly include entries where the queried data keys don't exist at all. - Fixed possible exception when removing "Reply To" setting from sender settings.
- Fixed Campaign API docs to include
json_bodyas a map instead of a string.