From 5fec52ab36d249f964785a18e40fc520ad760184 Mon Sep 17 00:00:00 2001 From: ruslandoga Date: Wed, 9 Oct 2024 14:45:17 +0700 Subject: [PATCH] Release v2.1.4 (#4660) --- CHANGELOG.md | 12 +++++++++--- priv/repo/structure.sql | 4 +++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fe057d66a86..ab7442ad3e70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,21 +3,27 @@ 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/imports plausible/analytics#4640 ## v2.1.3 - 2024-09-26 diff --git a/priv/repo/structure.sql b/priv/repo/structure.sql index 2bba1c63441c..7862ad38f2b7 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);