You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Breaking Changes
Removed the wallets table from the database (#2209)
Core 2.0 has been fully reliant on in-memory wallets since the 2.0 release. This only removes the dumping of wallets into the database as it is wasted space and doesn't serve any purpose.
If you have applications that rely on the database you should migrate them as soon as possible to using the API as only that data is provided in real-time.
Replace SQLite3 with lowdb in core-webhooks (#2124)
This significantly reduces the size of the package and it's dependencies.
This requires you to recreate your webhooks as the storage method changed.
Replaced core-logger-winston with core-logger-pino (#2134)
This significantly improves performance of logging when it occurs a lot in situations like syncing or rollbacks.