Releases: APSL/django-yubin
Releases · APSL/django-yubin
2.0.5
Fixed:
- Use
BigAutoField
and migrate all existing auto fields to it. This avoids generating a new migration in projects that use settings.DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
.
2.0.4
Changed:
- <6 upper bound to celery dependency.
2.0.3
Fixed:
- Race condition between Celery and database transactions (#74)
2.0.2
Changed:
- Improve performance of data migration when migrating from versions < 2.0 (#69)
Fixed:
- Perform unfolding of headers when parsing messages (#71)
2.0.1
- Ensure parsed e-mail message doesn't discard information (#67).
2.0.0
- Send and queue emails with Celery instead of with Cron.
- Drop priority headers (useless with queues).
- Storage backends to save emails in databases, file storages, etc.
- Cc and Bcc support.
- Supported versions: Python 3.8
3.11, Django 3.24.2, Celery 5.0~5.2.
- Migrate CI/CD from Travis to Github Actions.
- Docker Compose for external dependencies in development environment.
- Get django_yubin version programmatically.
- Update docs.
1.7.1
Remove abandoned pyzmail36 dependency with mail-parser
1.7.0
Add optional MAILER_MESSAGE_SEARCH_FIELDS
setting. It's a tuple of strings with the fields to use in admin.Message.search_fields
attribute.
1.5.0
New TemplatedMultipleAttachmentsEmailMessageView to allow to send emails with more than 1 attachment.