versions.rst 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .. _version-history:
  2. Version history
  3. ===============
  4. - ``0.4.2``
  5. - Docs: Changed docs style.
  6. - ``0.4.1``
  7. - Add: Mypy stubs (thanks Waghabond!)
  8. - Docs: Improved embedded content page.
  9. - ``0.4.0``
  10. - Rename: Changed ``user_name`` to ``username`` in ``redmail.EmailSender``. ``user_name`` still works but issues a warning.
  11. - Add: ``redmail.EmailSender.send`` now has new argument ``use_jinja`` (by default True) to disable Jinja templating.
  12. - Fix: Now the MIME structure is more defined and more likely renders emails properly across email providers.
  13. - Fix: Embedded images for aliased senders.
  14. - Docs: Added examples of how to test Red Mail's messages.
  15. - ``0.3.1``
  16. - Package: Added the license as a classifier to setup.py. Some pipelines may require such.
  17. - ``0.3.0``
  18. - Add: Logging handlers (:class:`.EmailHandler`, :class:`.MultiEmailHandler`)
  19. - Add: Outlook pre-configured sender
  20. - Add: Multiple emails can be sent without closing the connection using context manager in :class:`EmailSender`
  21. - ``0.2.1``
  22. - Fix: If some attachments are specified and only text body or no body at all is set´, sending email no longer crashes
  23. - Fix: Now embedded images support also non-PNG images using dict format
  24. - Docs: Added examples of embedding images using dict format
  25. - Docs: Added an example of sending emails using aliases
  26. - Docs: Fixed some couple of typos
  27. - ``0.2.0``
  28. - Docs: Docstrings were rewritten and are more complete
  29. - Docs: Huge improvement on the official documentation
  30. - Add: Support for TLS, SSL and other types of protocols
  31. - Add: Subclassing of ``EmailSender`` has better support allowing for interesting customization
  32. - Fix: Fixed a couple of minor bugs related to exceptions, format classes and tests
  33. - Test: Test coverage is now almost 100 %
  34. - ``0.1.1``
  35. - Package: Dropped Pandas as hard dependency
  36. - ``0.1.0``
  37. - First release