github muety/wakapi 2.3.1
Release 2.3.1

latest releases: 2.11.2, 2.11.1, 2.11.0...
2 years ago

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.

  1. Stop Wakapi
  2. Run the below SQL query
  3. 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.

Don't miss a new wakapi release

NewReleases is sending notifications on new releases.