Skip to content

Commit 5fec52a

Browse files
authored
Release v2.1.4 (#4660)
1 parent f28a1b8 commit 5fec52a

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,27 @@ All notable changes to this project will be documented in this file.
33

44
## Unreleased
55

6+
### Added
7+
### Removed
8+
### Changed
9+
### Fixed
10+
11+
## v2.1.4 - 2024-10-08
12+
613
### Added
714

815
- Add ability to review and revoke particular logged in user sessions
916
- Add ability to change password from user settings screen
1017
- Add error logs for background jobs plausible/analytics#4657
1118

12-
### Removed
13-
1419
### Changed
1520

1621
- Revised User Settings UI
22+
- Default to `invite_only` for registration plausible/analytics#4616
1723

1824
### Fixed
1925

20-
- Revenue metrics are displayed correctly after goal has been renamed
26+
- Fix cross-device file move in CSV exports/imports plausible/analytics#4640
2127

2228
## v2.1.3 - 2024-09-26
2329

priv/repo/structure.sql

+3-1
Original file line numberDiff line numberDiff line change
@@ -1321,7 +1321,8 @@ CREATE TABLE public.users (
13211321
totp_last_used_at timestamp(0) without time zone,
13221322
allow_next_upgrade_override boolean DEFAULT false NOT NULL,
13231323
totp_token character varying(255),
1324-
accept_traffic_until date
1324+
accept_traffic_until date,
1325+
notes text
13251326
);
13261327

13271328

@@ -2734,3 +2735,4 @@ INSERT INTO public."schema_migrations" (version) VALUES (20240801052903);
27342735
INSERT INTO public."schema_migrations" (version) VALUES (20240809100853);
27352736
INSERT INTO public."schema_migrations" (version) VALUES (20240821033217);
27362737
INSERT INTO public."schema_migrations" (version) VALUES (20240822095245);
2738+
INSERT INTO public."schema_migrations" (version) VALUES (20240924085157);

0 commit comments

Comments
 (0)