| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
/preview |
Sorry, something went wrong.
|
Preview deployed
|
Sorry, something went wrong.
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
Why
The keyboard shortcut inherited the tooltip inverse styling even though it is rendered on a popover-colored surface, which made the icon nearly invisible. Stack user metrics also compared a seven-day stack count with an all-time project count; besides producing an inconsistent percentage, the broader project query could reach legacy indices and return a 500.
Runtime effect tracing found that eight Stack paging transitions issued 15 list requests. Slower CI tracing then exposed the equivalent timing-sensitive dependency churn on the Events list: the first cursor transition could issue two identical requests. Both list effects now depend on stable semantic request keys and invoke their loaders untracked, reducing eight transitions to eight requests on each page.
Repeated route remounts could also abort a response body read after an HTTP 200, causing FetchClient to return ProblemDetails as successful data; TanStack Query then cached that object where array data was expected, eventually producing reactive runtime failures. Deserialization failures no longer enter the success cache. The package-level behavior is tracked upstream in FoundatioFx/FetchClient#31.
The FetchClient repository and npm scope moved to FoundatioFX. This updates the application from the final @exceptionless/fetchclient release to npm latest for the supported package. The latest package retains the exports used by the application; Exceptionless also supplies its own errorCallback, preserving its existing ProblemDetails error behavior across the upstream major-version change.
Dependency review
Verification
Breaking changes
None.