File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,27 @@ All notable changes to this project will be documented in this file.
3
3
4
4
## Unreleased
5
5
6
+ ### Added
7
+ ### Removed
8
+ ### Changed
9
+ ### Fixed
10
+
11
+ ## v2.1.4 - 2024-10-08
12
+
6
13
### Added
7
14
8
15
- Add ability to review and revoke particular logged in user sessions
9
16
- Add ability to change password from user settings screen
10
17
- Add error logs for background jobs plausible/analytics #4657
11
18
12
- ### Removed
13
-
14
19
### Changed
15
20
16
21
- Revised User Settings UI
22
+ - Default to ` invite_only ` for registration plausible/analytics #4616
17
23
18
24
### Fixed
19
25
20
- - Revenue metrics are displayed correctly after goal has been renamed
26
+ - Fix cross-device file move in CSV exports/imports plausible/analytics # 4640
21
27
22
28
## v2.1.3 - 2024-09-26
23
29
Original file line number Diff line number Diff line change @@ -1321,7 +1321,8 @@ CREATE TABLE public.users (
1321
1321
totp_last_used_at timestamp (0 ) without time zone ,
1322
1322
allow_next_upgrade_override boolean DEFAULT false NOT NULL ,
1323
1323
totp_token character varying (255 ),
1324
- accept_traffic_until date
1324
+ accept_traffic_until date ,
1325
+ notes text
1325
1326
);
1326
1327
1327
1328
@@ -2734,3 +2735,4 @@ INSERT INTO public."schema_migrations" (version) VALUES (20240801052903);
2734
2735
INSERT INTO public." schema_migrations" (version) VALUES (20240809100853 );
2735
2736
INSERT INTO public." schema_migrations" (version) VALUES (20240821033217 );
2736
2737
INSERT INTO public." schema_migrations" (version) VALUES (20240822095245 );
2738
+ INSERT INTO public." schema_migrations" (version) VALUES (20240924085157 );
You can’t perform that action at this time.
0 commit comments