From 97933bd85fd875e766efc86e1b17c2ab64d6af19 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Mon, 17 Nov 2025 10:33:05 -0700 Subject: [PATCH] chore: add missing changesets for recent PRs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add changesets for two merged PRs that were missing them: - Pacer package upgrade (0592852) - Query collection loadSubset dedupe removal (47255e5) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .changeset/fix-query-collection-dedupe.md | 5 +++++ .changeset/upgrade-pacer-package.md | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changeset/fix-query-collection-dedupe.md create mode 100644 .changeset/upgrade-pacer-package.md diff --git a/.changeset/fix-query-collection-dedupe.md b/.changeset/fix-query-collection-dedupe.md new file mode 100644 index 000000000..b9212ad8e --- /dev/null +++ b/.changeset/fix-query-collection-dedupe.md @@ -0,0 +1,5 @@ +--- +"@tanstack/query-db-collection": patch +--- + +Temporarily remove `loadSubset` call deduplication in query collection. We need to revisit our approach to deduplication to ensure correctness. See https://github.com/TanStack/db/issues/836 for discussion on the proper implementation strategy. diff --git a/.changeset/upgrade-pacer-package.md b/.changeset/upgrade-pacer-package.md new file mode 100644 index 000000000..00f6d5327 --- /dev/null +++ b/.changeset/upgrade-pacer-package.md @@ -0,0 +1,5 @@ +--- +"@tanstack/db": patch +--- + +Upgrade @tanstack/pacer to v0.16.2 and fix AsyncQueuer API usage. The pacer package API changed significantly, requiring updates to how AsyncQueuer is constructed and items are queued in the queueStrategy implementation.