Update changelog

This commit is contained in:
Eugene Burmakin 2025-04-15 21:35:28 +02:00
parent d6b5ce0549
commit 8cc8b9d157

View file

@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
# 0.25.5 - 2025-04-15
This release introduces a new way to send transactional emails using SMTP. Example may include password reset, email confirmation, etc.
To enable SMTP mailing, you need to set the following environment variables:
- `SMTP_SERVER` - SMTP server address.
- `SMTP_PORT` - SMTP server port.
- `SMTP_DOMAIN` - SMTP server domain.
- `SMTP_USERNAME` - SMTP server username.
- `SMTP_PASSWORD` - SMTP server password.
- `SMTP_FROM` - Email address to send emails from.
This is optional feature and is not required for the app to work.
## Removed
- Optional telemetry was removed from the app.