Skip to content

Commit

Permalink
Release v2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslandoga committed Oct 8, 2024
1 parent f28a1b8 commit 403a811
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 3 additions & 1 deletion priv/repo/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
);


Expand Down Expand Up @@ -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);

0 comments on commit 403a811

Please sign in to comment.