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
Paused live updates stopped scheduled polling, but React Query still used
its default focus and reconnect refetch behavior. On workflow detail pages,
that could make wait data refresh when the browser regained focus even
though the page-wide interval was paused.
Centralize the query refresh options derived from the global interval and
use them anywhere route queries already honor that setting. A paused
interval now disables scheduled, focus, and reconnect refetches, while a
nonzero interval preserves the existing automatic refresh behavior.
Add focused coverage for the paused and enabled focus-refresh cases so the
pause semantics stay tied to data fetching rather than display-only timer
updates.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
### Fixed
11
+
12
+
- Global live update pause: disable automatic query refreshes on browser focus and reconnect, preventing paused workflow detail pages from re-fetching wait data outside the configured refresh interval. [PR #584](https://github.com/riverqueue/riverui/pull/584).
13
+
10
14
## [v0.16.0] - 2026-05-19
11
15
12
16
Version 0.16.0 includes support for the all new workflow engine in River Pro v0.24.0, including signals, timers, and greater introspection capabilities.
0 commit comments