Skip to content

Releases: APSL/django-yubin

2.0.5

21 Jun 09:32
Compare
Choose a tag to compare

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

02 May 16:33
Compare
Choose a tag to compare

Changed:

  • <6 upper bound to celery dependency.

2.0.3

09 Jan 16:04
Compare
Choose a tag to compare

Fixed:

  • Race condition between Celery and database transactions (#74)

2.0.2

30 Oct 08:52
Compare
Choose a tag to compare

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

10 Aug 07:57
Compare
Choose a tag to compare
  • Ensure parsed e-mail message doesn't discard information (#67).

2.0.0

29 Jun 16:11
Compare
Choose a tag to compare
  • 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.83.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

17 Jan 15:00
Compare
Choose a tag to compare

Remove abandoned pyzmail36 dependency with mail-parser

1.7.0

19 Jul 09:05
Compare
Choose a tag to compare

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.6.0

27 Jan 11:07
Compare
Choose a tag to compare

Support Django 3.0.

1.5.0

20 Dec 14:16
Compare
Choose a tag to compare

New TemplatedMultipleAttachmentsEmailMessageView to allow to send emails with more than 1 attachment.