versions.rst 2.0 KB

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