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 main, this PR will be updated.
Releases
@tanstack/angular-db@0.1.15
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/db@0.4.10
Patch Changes
Add
utils.setWindow()
method to live query collections to dynamically change limit and offset on ordered queries. (#663)You can now change the pagination window of an ordered live query without recreating the collection:
Added comprehensive loading state tracking and configurable sync modes to collections and live queries: (#669)
isLoadingSubset
property andloadingSubset:change
events to all collections for tracking when data is being loadedsyncMode
configuration option to collections:'eager'
(default): Loads all data immediately during initial sync'on-demand'
: Only loads data as requested vialoadSubset
callsstatus
property ('ready'
|'loadingSubset'
) and events (status:change
,status:ready
,status:loadingSubset
,unsubscribed
)setWindow
utility to returnPromise<void>
when loading is triggered, allowing callers to await data loading completionsubscription
parameter toloadSubset
handler for advanced sync implementations that need to track subscription lifecycleUpdated dependencies [
63aa8ef
]:@tanstack/db-ivm@0.1.11
Patch Changes
Add
utils.setWindow()
method to live query collections to dynamically change limit and offset on ordered queries. (#663)You can now change the pagination window of an ordered live query without recreating the collection:
@tanstack/electric-db-collection@0.1.34
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/query-db-collection@0.2.31
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/react-db@0.1.32
Patch Changes
Add
useLiveInfiniteQuery
hook for infinite scrolling with live updates. (#669)The new
useLiveInfiniteQuery
hook provides an infinite query pattern similar to TanStack Query'suseInfiniteQuery
, but with live updates from your local collection. It usesliveQueryCollection.utils.setWindow()
internally to efficiently paginate through ordered data without recreating the query on each page fetch.Key features:
Example usage:
Requirements:
.orderBy()
for the window mechanism to workdata
array andpages
array for flexible renderingUpdated dependencies [
63aa8ef
,b0687ab
]:@tanstack/rxdb-db-collection@0.1.21
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/solid-db@0.1.32
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/svelte-db@0.1.32
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/trailbase-db-collection@0.1.32
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/vue-db@0.0.65
Patch Changes
63aa8ef
,b0687ab
]:todos@0.0.11
Patch Changes
63aa8ef
,b0687ab
]:@tanstack/db-example-react-todo@0.1.10
Patch Changes
b0687ab
]: