versions.rst 2.5 KB

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