Version 5.14.1 has been released on 19th of December 2025 and contains a single bug fix. Below you can find more information related to the bug fix. We will update your Production account automatically and the Sandbox account can be updated from your (the customer's) end at any given time.
Bug fix
BR-2921 [Bank Connectivity] No transactions are synced
To address the synchronisation gaps reported by customers using the Plaid integration, we have optimised the sync eligibility logic. Previously, the system required a full 24-hour cycle to pass between timestamps, which caused scheduled tasks to skip every other day if the execution occurred even a few minutes early. By shifting from a millisecond-based time difference to a calendar-day comparison, the system now ensures that daily, weekly, and monthly schedules are respected regardless of the specific hour of execution. This update provides users with greater flexibility to customise their script schedules without risking sync bottlenecks or requiring manual bank statement uploads.
The table below illustrates how the new logic resolves the "every-other-day" skip issue for customers running a single daily sync.
| Sync Attempt | Previous Logic (Time-Based) | New Logic (Day-Based) | Result |
|---|---|---|---|
| Day 1 (08:00) | Initial Sync | Initial Sync | Success |
| Day 2 (08:00) | Skipped (Only 23h 58m passed) | Processed (New Calendar Day) | Success |
| Day 3 (08:00) | Processed (47h 58m passed) | Processed (New Calendar Day) | Success |