Listmonk v0.4.0-alpha Release Notes

Release Date: 2020-02-09 // about 4 years ago
  • ๐Ÿš€ This release introduces breaking changes. It adds support for double-optin lists, subscriptions, and campaigns.

    listmonk1
    listmonk3

    Uprading from the previous version.

    • The template function {{ .UnsubscribeURL }} loses the period and is now {{ UnsubscribeURL }}. All templates need to be edited to reflect this change.

    Apply the changes to DB tables by running the following queries.

    DROP TYPE IF EXISTS list\_optin CASCADE; CREATE TYPE list\_optin AS ENUM ('single', 'double');DROP TYPE IF EXISTS campaign\_type CASCADE; CREATE TYPE campaign\_type AS ENUM ('regular', 'optin');ALTER TABLE lists ADD COLUMN optin list\_optin NOT NULL DEFAULT 'single';ALTER TABLE campaigns ADD COLUMN type campaign\_type DEFAULT 'regular';
    

    ๐Ÿ”„ Changelog

    ๐Ÿ”จ 62aa31b Refactor {{ UnsubURL }} into a global function (breaking change)
    ๐Ÿ— 2ee2e68 Inject version during build into the frontend
    ๐Ÿ’ป f039f35 Link list name to subscribers page on lists UI
    ๐Ÿ’ป afdf053 Add 'send opt-in mail' link to subscriber modal UI
    ๐Ÿ”จ 6be3352 Refactor/merge optin-list fetch queries
    0๏ธโƒฃ 6cb2cd7 Tweak default list and subscriber entries in install
    ๐Ÿšš 8616aa8 Remove status from example on the import UI
    ๐Ÿ’ป ab8bac2 Fix title bug in list modal UI
    ๐Ÿ‘ 022b35c Add support for sending 'opt-in' campaigns.
    ๐Ÿ’… 9a890c7 Add button style to default template
    ๐Ÿ”จ af14fff Refactor campaign content type references
    ๐Ÿ“œ ec22170 Fix list ID parsing in campaign UI
    ๐Ÿ”จ a2d21a8 Refactor opt-in subscriber selection queries
    0๏ธโƒฃ ea302d1 Use default template if there isn't one in campaign creation
    ๐Ÿ‘ 871893a Add double opt-in support.
    ๐Ÿ”จ bdd42b6 Refactor notificatin data structure
    ๐Ÿ”จ e9685b2 Refactor HTML views with new data structures
    0๏ธโƒฃ f8a2044 Add default values to sample config URLs
    f71493e Add PNG logo for e-mails
    ๐Ÿ”จ 4abcb28 Refactor template functions.

    ๐Ÿณ Docker images

    • ๐Ÿณ docker pull listmonk/listmonk:latest
    • ๐Ÿณ docker pull listmonk/listmonk:v0.4.0-alpha