postmarker v0.15.0 Release Notes

Release Date: 2020-08-30 // over 3 years ago
  • ๐Ÿฑ ๐Ÿ”ง Chores and Improvements

    • ๐Ÿš€ 59871c9 Release 0.15.0
    • a4211f9 Add gitter link
    • edcf364 Add gitter link
    • ๐Ÿšš 5bf9865 Move to src layout
    • d7b92a1 Drop another Python 2 shim
    • ๐Ÿšš 754296a Remove Python 2 shims
    • ๐Ÿ‘• 3aba8be Apply pylint
    • ๐Ÿ‘ป 5cccb4d Add exception chaining
    • ๐Ÿ‘ท 5c7db7b Apply pre-commit & add GitHub Action job for pre-commit

    ๐Ÿ“ฆ ๐Ÿ“ฆ Other

    ๐Ÿš€ 9c6e278 Add release job

    ๐Ÿ— 48080f6 Add GitHub Actions build for Python 3.5-3.9 and PyPy3

    ๐Ÿ‘ 415ece4 Drop support for Python 2.7, 3.3, 3.4, PyPy2 and Jython.

    db20b64 Drop Travis CI

    03f4cdf Create FUNDING.yml

    ๐Ÿš€ dd1065f Release 0.14.1

    741bbf1 Add missing changelog entry

    ๐Ÿ”€ 618d628 Merge remote-tracking branch 'origin/master'

    1710940 Code black.

    ๐Ÿ“‡ b3efc2f At the moment, using the EmailTemplate() doesn't allow Metadata parameters.

    ๐Ÿ“‡ EmailTemplate() now accept Metadata parameters.

    e.g.

    postmark.emails.EmailTemplate(
        TemplateId=template_id,
        TemplateAlias=template_alias,
        From=f"{from_name} {from_}",
        To=user.email,
        Headers={"X-Accept-Language": "en-us, en"},
        TemplateModel=template_model,
        Metadata=metadata
    )