-
Notifications
You must be signed in to change notification settings - Fork 0
Release Notes
Kody Jordan edited this page Aug 25, 2026
·
31 revisions
Version 1.11.1 fixes the cache-busting recovery flow so that clients stuck on the "Update still loading" screen after a deploy can actually recover instead of repeatedly hitting the same stale cached files.
This release includes:
- Forces a cache-busted network fetch (instead of a plain reload) when the app auto-recovers from a stale chunk/module load failure after a deploy.
- Applies the same cache-busted fetch to the manual Refresh button on the "Update still loading" recovery screen.
- Keeps the existing one-attempt-per-route recovery window intact so the cache-busting fix does not introduce reload loops.
QualityChecks v1.11.1 addresses production reports of users getting stuck on the "Update still loading" screen after a release. Both the automatic recovery reload and the manual Refresh button now navigate to a cache-busted URL, forcing the browser/CDN to fetch fresh application files instead of re-serving the same stale, already-replaced build artifacts.
- Added a cache-busted reload URL helper that appends a fresh version query parameter and forces a hard navigation.
- Updated the automatic chunk-load-failure recovery to use the cache-busted reload instead of a plain page reload.
- Updated the manual Refresh button on the recovery screen to use the same cache-busted reload.
- Excluded the cache-busting query parameter from the recovery attempt tracking key so the existing per-route retry window still applies correctly.