ci: Version Packages (rc) - #11323
Merged
Merged
Conversation
|
View your CI Pipeline Execution ↗ for commit ccc5fd9
☁️ Nx Cloud last updated this comment at |
Contributor
Author
🚀 Changeset Version PreviewNo changeset entries found. Merging this PR will not cause a version bump for any packages. |
brenelz
approved these changes
Aug 28, 2026
Contributor
Author
size-limit report 📦
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to solid-query-v6-pre, this PR will be updated.
solid-query-v6-preis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonsolid-query-v6-pre.Releases
@tanstack/solid-query@6.0.0-rc.1
Major Changes
#11308
c809e09- feat: rewrite the adapter onto Solid 2.0's native async model. Query readsare now a single async computation (suspends into
<Loading>, holdsprevious data through refetches, routes rejections to
<Errored>,serializes settled values for streaming hydration) served through an
auto-reconciling store projection — deep reads are fine-grained and item
identity survives across fetches (keyed by the
reconcileoption, default'id'). Mutations ride Solid core'sactionprimitive (transactionalsettle, optimistic overlays, callbacks inside the transaction). The
observer notification/store layer is deleted —
QueryObserver/MutationObserverremain as lifecycle/policy engines only.Hydration is single-channel and content-addressed (the Solid Router
query()pattern): the provider serializes every query the requesttouches into Solid's hydration registry under
sq:<queryHash>atfetch-dispatch time, each client hook primes the query cache from its own
hash entry through query-core
hydrate(), prefetched-never-renderedqueries transfer, late mounts adopt past hydration end, and the
provider-owned dehydration channel is deleted. Requires solid-js >=
2.0.0-rc.4 (hydration-end divergence takeover).
Breaking:
datais non-optional on query results (reads suspend instead ofreturning
undefined) and is a readonly store view;mutateAsyncremoved(
mutatereturns a promise);reconcileis now the reconciliation key forthe data store (
string | (item => any) | null, default'id'— the v5function form is gone, core auto-reconciles);
suspenseoption removed(suspension is the model, boundaries are the control point); the
create*runtime and
Create*type aliases are removed, completing the deprecationfrom #8950 —
use*is the only naming;isInitialLoading(deprecatedalias of
isLoading) is removed from query results.deferStreamis now implemented(it was declared but unwired on the v6 line): it passes through to Solid's
per-computation
deferStreammemo option.@tanstack/solid-query-devtools@6.0.0-rc.1
Patch Changes
c809e09]:@tanstack/solid-query-persist-client@6.0.0-rc.1
Patch Changes
c809e09]: