TAGS
20 tagsfix: use process.env.DEBUG for server-side debug detection (#1344) Co-authored-by: Nguyen Dinh Phuc <dev.phucnguyen@gmail.com>
chore(deps): bump @trpc/server from 11.5.0 to 11.8.0 (#1267) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: François Best <github@francoisbest.com>
fix: pass in full pathname + search in TSR to avoid trailing slashes (#1217)
chore: remove duplicate CI step
perf: bail out of state updates for equal values (#1160) Co-authored-by: François Best <github@francoisbest.com>
fix: optimistic state flicker (#1143) * test: add 1099 reproduction in Next.js * test: add 1099 test for all frameworks * test: a state update in an effect is what seems to trigger the issue * fix: simplify the Next.js app router adapter * fix: only apply transition in shallow: false for react router On shallow: true, this caused the optimistic state to be updated after the queue has reset, and caused the 1099 issue where the state would be temporarily reset to the previous value by the hook's useEffect sync system. * test: add debug logs for 1099 * test: remove debug log (rr fix was flaky locally too) * fix(meh): don't clear the throttle queue (needs a better way) * fix: reset throttle queue before first push This solves a few issues: - The reset occurs synchronously with push, so in the same event loop tick where the internal state is updated: both states are invalidated at the same time - The queue doesn't build up over time - No more hacks in the pages router 🙌 We still need the auto-reset mechanism for the testing adapter, although I feel like we could probably get rid of that too. One thing at a time. * chore: restore StrictMode * test: restore the throw on NullDetector
feat: multi-parsers (#1134) Co-authored-by: Valerii Sidorenko <balepas@nebius.com> Co-authored-by: François Best <github@francoisbest.com>
doc: Fix links & add framework icons (#1116) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
feat: Add processUrlSearchParams middleware as adapter prop (#1110) Co-authored-by: François Best <github@francoisbest.com>
feat(debounce): add warning when shallow: true is used with debounce (#1104)