diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fe057d66a867..04215ebfab084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,21 +3,28 @@ All notable changes to this project will be documented in this file. ## Unreleased +### Added +### Removed +### Changed +### Fixed + +## v2.1.4 - 2024-10-08 + ### Added - Add ability to review and revoke particular logged in user sessions - Add ability to change password from user settings screen - Add error logs for background jobs plausible/analytics#4657 -### Removed - ### Changed - Revised User Settings UI +- Default to `invite_only` for registration plausible/analytics#4616 ### Fixed - Revenue metrics are displayed correctly after goal has been renamed +- Fix cross-device file move in CSV exports plausible/analytics#4640 ## v2.1.3 - 2024-09-26 diff --git a/priv/repo/structure.sql b/priv/repo/structure.sql index 2bba1c63441ce..7862ad38f2b7e 100644 --- a/priv/repo/structure.sql +++ b/priv/repo/structure.sql @@ -1321,7 +1321,8 @@ CREATE TABLE public.users ( totp_last_used_at timestamp(0) without time zone, allow_next_upgrade_override boolean DEFAULT false NOT NULL, totp_token character varying(255), - accept_traffic_until date + accept_traffic_until date, + notes text ); @@ -2734,3 +2735,4 @@ INSERT INTO public."schema_migrations" (version) VALUES (20240801052903); INSERT INTO public."schema_migrations" (version) VALUES (20240809100853); INSERT INTO public."schema_migrations" (version) VALUES (20240821033217); INSERT INTO public."schema_migrations" (version) VALUES (20240822095245); +INSERT INTO public."schema_migrations" (version) VALUES (20240924085157);