Patch Changes
-
#11168
67c8179- chore: upgrade to solid v2 beta 33.@tanstack/solid-querynow requires solid-js >= 2.0.0-beta.33 (peer range floor raised): the provider-owned hydration channel depends on beta.33'snormalizeIteratorbuffered-replay conflation fix — on beta.32 and earlier, hydration that begins after multiple stream chunks have arrived silently drops later channel yields, leaving queries never primed and their components frozen. -
#11168
67c8179- fix: prime the query cache during hydration through a provider-owned dehydration channel, so SSR-fetched queries come up warm instead of refetching on mount.QueryClientProviderstreams dehydrated cache entries (query-coredehydrate()shapes) as each query settles during SSR — entries ride the same flush as the content that awaited them — and applies them on the client via query-corehydrate()(newer-wins) as they arrive, attaching each hydrated component's observer as soon as its entry is primed. The vestigial per-observer-resulthydrationDatacopy is no longer serialized.