Bug Fixes
Improvements
- Various performance improvements
💡 Migration Notice
For anyone running Wakapi with MySQL, it is recommended (not required) to perform the following steps to drastically speed up schema migrations required for 2.3.1
. If you're using Postgres or SQLite, ignore this.
- Stop Wakapi
- Run the below SQL query
- Pull new version and start Wakapi again
set unique_checks=0;
set foreign_key_checks=0;
alter table `heartbeats`
modify column `time` timestamp(3),
modify column `created_at` timestamp(3);
Explanation: See release 2.2.5.