Skip to content

Releases: wansing/ulist

v0.14.3

22 Jan 13:33
Compare
Choose a tag to compare

v0.14.3 updates some dependencies. This fixes a vulnerability in golang.org/x/crypto and a SMTP smuggling vulnerability in github.com/emersion/go-smtp.

v0.14.2

20 May 20:09
Compare
Choose a tag to compare

With v0.14.0 (2023-05-20), a database schema upgrade is required:

BEGIN TRANSACTION;
ALTER TABLE member ADD COLUMN bounces BOOLEAN NOT NULL default 0;
UPDATE member SET bounces = admin;
COMMIT;