Dataset Viewer
Auto-converted to Parquet Duplicate
additions
int64
0
66.2k
deletions
int64
0
58.7k
file_count
int64
5
3k
files
listlengths
5
3k
linked_issues
listlengths
1
21
merged_at
timestamp[s]date
2018-05-17 18:26:27
2026-03-22 17:29:53
non_test_file_count
int64
5
264
non_test_files
listlengths
5
264
pr_body
stringlengths
0
25.3k
pr_number
int64
24
304k
pr_title
stringlengths
6
218
pr_url
stringlengths
35
55
query_source
stringclasses
2 values
query_text
stringlengths
11
54k
repo
stringclasses
46 values
source
stringclasses
1 value
test_file_count
int64
0
2.98k
test_files
listlengths
0
2.98k
72
68
5
[ "README.md", "docs/source/components.md", "docs/source/concepts.md", "docs/source/development.md", "docs/source/environments.md" ]
[ { "body": "This link is dead and doesnt seem to redirect to examples for running verifiers.\nhttps://docs.primeintellect.ai/verifiers/training#:~:text=See%20the-,examples%20directory,-on%20GitHub%20for", "number": 608, "source": "body_keyword+closing_ref", "title": "Broken link for examples.", "...
2026-01-03T04:25:04
5
[ "README.md", "docs/source/components.md", "docs/source/concepts.md", "docs/source/development.md", "docs/source/environments.md" ]
Description I noticed that the docs are not up to date with the v0.1.8 API (see release notes). In this PR, I'm updating the docs to reflect the changes (use @vf.stop, follow updated env_response signature, ...) This also fixes #608. @willccbb @mikasenghaas Note that I did not update api_reference.md because it's unclear to me what should be exposed there. I'd prefer if a maintainer could handle this separately. Type of Change Bug fix (non-breaking change which fixes an issue) New feature (non-breaking change which adds functionality) Breaking change (fix or feature that would cause existing functionality to not work as expected) Documentation update Test improvement Testing All existing tests pass when running uv run pytest locally. New tests have been added to cover the changes Checklist My code follows the style guidelines of this project as outlined in AGENTS.md I have performed a self-review of my own code I have commented my code, particularly in hard-to-understand areas I have made corresponding changes to the documentation My changes generate no new warnings Any dependent changes have been merged and published Additional Notes NoteUpdates documentation to align with v0.1.8 protocol and state changes. Switch MultiTurnEnv examples to async env_response(...) -> Messages (no tuple) and use @vf.stop-decorated stop conditions instead of overriding is_completed Document trajectory-based rollout state (state["trajectory"], completion, is_completed, stop_condition, timing) and reference TrajectoryStep structure Revise examples (Wordle, custom protocols, games) to new API; remove turn counters from state where unnecessary Update training/eval snippets: new env.rollout(input=...) usage, Rubric.score_rollout(state, ...), and scoring outputs now under state["reward"]/state["metrics"]; clarify save_every behavior Minor cleanup across README and docs sections to reflect current tool/stateful env patterns and message types Written by Cursor Bugbot for commit fd3d8d6. This will update automatically on new commits. Configure here.
670
Update docs for v0.1.8 API
https://github.com/PrimeIntellect-ai/verifiers/pull/670
closing_issue_text
Broken link for examples. This link is dead and doesnt seem to redirect to examples for running verifiers. https://docs.primeintellect.ai/verifiers/training#:~:text=See%20the-,examples%20directory,-on%20GitHub%20for
PrimeIntellect-ai/verifiers
github_pr
0
[]
155
31
7
[ "docs/source/environments.md", "environments/wordle/wordle.py", "pyproject.toml", "tests/test_envs.py", "tests/test_multiturn_env.py", "verifiers/envs/environment.py", "verifiers/envs/multiturn_env.py" ]
[ { "body": "Summary\nIn MultiTurnEnv, the is_completed() check happens before get_prompt_messages() executes the tool via env_response(). As a result, stop conditions that depend on tool output are evaluated one turn late, causing an unwanted extra model response after the stop signal.\n\nCurrent Behavior\nMulti...
2026-01-03T18:03:56
5
[ "docs/source/environments.md", "environments/wordle/wordle.py", "pyproject.toml", "verifiers/envs/environment.py", "verifiers/envs/multiturn_env.py" ]
Description Introduces proper support for rollouts to include final_env_response in state, which can be set in env_response, resulting in early termination mid-step. We treat these as cosmetic/metadata, accessible by Rubric classes + for logging, but not included in trajectory (as token representations are never materialized). Resolves #671 ; replaces #673 Type of Change Bug fix (non-breaking change which fixes an issue) New feature (non-breaking change which adds functionality) Breaking change (fix or feature that would cause existing functionality to not work as expected) Documentation update Test improvement Testing All existing tests pass when running uv run pytest locally. New tests have been added to cover the changes Checklist My code follows the style guidelines of this project as outlined in AGENTS.md I have performed a self-review of my own code I have commented my code, particularly in hard-to-understand areas I have made corresponding changes to the documentation My changes generate no new warnings Any dependent changes have been merged and published Additional Notes NoteImplements a clean termination path for multi-turn rollouts when the environment produces a final message. Core changes: add state["final_env_response"] (initialized in Environment.init_state), new stop condition has_final_env_response, rollout loop skips extra model call when set, and _render_completion appends the final env message for scoring while keeping it out of the trajectory Wordle: on game completion, sets final_env_response and returns it; minor typing/casting cleanups Docs: refine MultiTurnEnv example, make ToolEnv sample tool async, and add a "Final Environment Responses" section describing the pattern and its effects Tests: add coverage for early stop and completion inclusion; mark env package tests as slow; minor warning-filter tweak in pyproject.toml Written by Cursor Bugbot for commit 6fcf399. This will update automatically on new commits. Configure here.
677
final_env_response pattern; updated docs/tests/example
https://github.com/PrimeIntellect-ai/verifiers/pull/677
closing_issue_text
Stop condition checked before tool execution causes one extra model turn Summary In MultiTurnEnv, the is_completed() check happens before get_prompt_messages() executes the tool via env_response(). As a result, stop conditions that depend on tool output are evaluated one turn late, causing an unwanted extra model response after the stop signal. Current Behavior MultiTurnEnv.rollout() (lines 93–119) while not await self.is_completed(state): # ← Check HERE (sees OLD tool response) prompt_messages = await self.get_prompt_messages(state) # ← Tool executed HERE response = await self.get_model_response(state, prompt_messages) await self.add_model_response(state, prompt_messages, response) When a stop condition checks for a specific string in the tool response (e.g., a "task complete" signal), the check sees the previous turn’s tool response, not the one just executed. Trace Turn N • Model calls tool that returns a stop signal • add_model_response() → trajectory[-1] = { prompt: old_prompt, completion: tool_call } • Loop continues… Turn N+1 • is_completed() checks trajectory[-1]["prompt"] → has OLD tool response → False • get_prompt_messages() → env_response() executes tool → returns STOP_SIGNAL • get_model_response() → model generates UNWANTED extra response • add_model_response() → trajectory[-1]["prompt"] now contains the stop signal Turn N+2 • is_completed() → now finds stop signal → True Result: One extra model turn after the tool returns the stop signal. Expected Behavior The rollout should stop before calling get_model_response() when env_response() returns a stop signal.
PrimeIntellect-ai/verifiers
github_pr
2
[ "tests/test_envs.py", "tests/test_multiturn_env.py" ]
314
16
7
[ "environments/vf_continuation_quality/README.md", "environments/vf_continuation_quality/pyproject.toml", "environments/vf_continuation_quality/vf_continuation_quality.py", "examples/grpo/train_continuation_quality.py", "verifiers/envs/environment.py", "verifiers/envs/multiturn_env.py", "verifiers/envs/s...
[ { "body": "I'm interested in running some experiments with message_type=\"completion\", but looking through the code for how to use logprobs in my reward function, I found\nhttps://github.com/willccbb/verifiers/blob/59b1b7005b60e9afc172274a2515831449034830/verifiers/envs/environment.py#L770-L774\nand it looks l...
2025-08-11T23:20:21
7
[ "environments/vf_continuation_quality/README.md", "environments/vf_continuation_quality/pyproject.toml", "environments/vf_continuation_quality/vf_continuation_quality.py", "examples/grpo/train_continuation_quality.py", "verifiers/envs/environment.py", "verifiers/envs/multiturn_env.py", "verifiers/envs/s...
Description Adds support for using verifiers with base models, along with an example environment using a judge model (gpt-4.1-mini) to grade completion rollouts from agentlans/wikipedia-paragraphs. Fixes #191 . Type of Change Bug fix (non-breaking change which fixes an issue) New feature (non-breaking change which adds functionality) Breaking change (fix or feature that would cause existing functionality to not work as expected) Documentation update Test improvement Testing All existing tests pass New tests have been added to cover the changes Tests have been run locally with python -m pytest tests/ Test Coverage Current coverage: ___% Coverage after changes: ___% Checklist My code follows the style guidelines of this project I have performed a self-review of my own code I have commented my code, particularly in hard-to-understand areas I have made corresponding changes to the documentation My changes generate no new warnings Any dependent changes have been merged and published Additional Notes
201
Add support for base model RL / `message_type="completions"`
https://github.com/PrimeIntellect-ai/verifiers/pull/201
closing_issue_text
Does message_type="completion" currently work? I'm interested in running some experiments with message_type="completion", but looking through the code for how to use logprobs in my reward function, I found https://github.com/willccbb/verifiers/blob/59b1b7005b60e9afc172274a2515831449034830/verifiers/envs/environment.py#L770-L774 and it looks like this is used in async_batch_generator.py, and the alternative process_env_results method doesn't seem to be called outside of tests. So am I correct in thinking message_type="completion" isn't supported yet? What's missing, since the method does seem to have (partial) logic for non-chat formats?
PrimeIntellect-ai/verifiers
github_pr
0
[]
364
315
23
[ "docs/source/api_reference.md", "tests/test_rubric_group.py", "verifiers/envs/env_group.py", "verifiers/envs/environment.py", "verifiers/envs/multiturn_env.py", "verifiers/envs/singleturn_env.py", "verifiers/envs/textarena_env.py", "verifiers/envs/tool_env.py", "verifiers/parsers/parser.py", "veri...
[ { "body": "Description\nAcross several parts of the codebase, mutable objects (e.g., lists, dictionaries, class instances) are used as default argument values in function or class method definitions. Using mutable default arguments is considered an anti-pattern in Python and can lead to unintended behavior, esp...
2025-08-11T23:19:12
22
[ "docs/source/api_reference.md", "verifiers/envs/env_group.py", "verifiers/envs/environment.py", "verifiers/envs/multiturn_env.py", "verifiers/envs/singleturn_env.py", "verifiers/envs/textarena_env.py", "verifiers/envs/tool_env.py", "verifiers/parsers/parser.py", "verifiers/parsers/think_parser.py", ...
Description Type of Change Bug fix (non-breaking change which fixes an issue) New feature (non-breaking change which adds functionality) Breaking change (fix or feature that would cause existing functionality to not work as expected) Documentation update Test improvement Testing All existing tests pass New tests have been added to cover the changes Tests have been run locally with python -m pytest tests/ Test Coverage Current coverage: 34% Coverage after changes: 34% Checklist My code follows the style guidelines of this project I have performed a self-review of my own code I have commented my code, particularly in hard-to-understand areas I have made corresponding changes to the documentation My changes generate no new warnings Any dependent changes have been merged and published Additional Notes Main changes got rid of all mutable default arguments. updated type hints to reflect pep standards (replacing Dict, List, Tuple with dict, list, and tuple, and removing Optional and Union) removed redundant attribute assignment in subclass init made tasks and infos required in some methods like run_rollouts (more details below). Future concerns I noticed a common pattern in the code that consists of passing around separate lists and zipping them to reconstruct an object instead of grouping related elements in a single object. This can cause a lot of future bugs, one of which I fixed in this PR by making tasks and infos required in some methods like run_rollouts. Using zip doesn't allow for any list to be optional, since you iterate over all lists until hitting the shortest. So having tasks and infos default to an empty list wouldn't have allowed us to enter the loop. I discuss this further in this Discussion closes #183
184
Removing mutable default arguments to follow pep guidelines
https://github.com/PrimeIntellect-ai/verifiers/pull/184
closing_issue_text
Use of mutable default arguments Description Across several parts of the codebase, mutable objects (e.g., lists, dictionaries, class instances) are used as default argument values in function or class method definitions. Using mutable default arguments is considered an anti-pattern in Python and can lead to unintended behavior, especially state sharing between multiple instances or calls. Mutable default arguments are evaluated only once at function-definition time, not at each function call. Thus, all calls to the function share the same mutable object, potentially leading to bugs and unexpected side effects. An example of that is the method Rubric.__init__ def __init__( self, funcs: List[RewardFunc] = [], # mutable object, all instances share the same weights: List[float] = [], # mutable object, all instances share the same parser: Parser = Parser(), # mutable object, all instances share the same parallelize_scoring: bool = True, **kwargs, ): Steps to reproduce unexpected behavior here is an example that illustrates the issue import verifiers as vf class FirstRubric(vf.Rubric): ... class SecondRubric(vf.Rubric): ... first_rubric = FirstRubric() another_first_rubric = FirstRubric() second_rubric = SecondRubric() print(first_rubric.get_reward_funcs()) # Output: [] print(another_first_rubric.get_reward_funcs()) # Output: [] print(second_rubric.get_reward_funcs()) # Output: [] def dummy_func(completion, answer, **kwargs) -> float: return 1.0 if completion == answer else 0.0 first_rubric.add_reward_func(dummy_func, weight=0.5) # adding the reward func to one instance print(first_rubric.get_reward_funcs()) # Output: [<function dummy_func at 0x7bff15cb8ae0>] print(another_first_rubric.get_reward_funcs()) # Output: [<function dummy_func at 0x7bff15cb8ae0>] print(second_rubric.get_reward_funcs()) # Output: [<function dummy_func at 0x7bff15cb8ae0>] Expected behavior Each call or instance should get its own independent default object, preventing shared state across calls or instances. Therefore, the above code snippet should've produced this output print(first_rubric.get_reward_funcs()) # Output: [<function dummy_func at 0x7bff15cb8ae0>] print(another_first_rubric.get_reward_funcs()) # Output: [] print(second_rubric.get_reward_funcs()) # Output: [] Recommended solution Replace mutable default arguments with None, then initialize the mutable object inside the function/method: Here is an example of how the above code of the Rubric.__init__ can be updated to avoid this issue. def __init__( self, funcs: List[RewardFunc] | None = None, weights: List[float] | None = None, parser: Parser | None = None, parallelize_scoring: bool = True, **kwargs, ): self.reward_funcs = funcs or [] self.reward_weights = weights or [] self.parser = parser or Parser() This is a common best practice recommended by the official Python documentation, Python community standards (PEP 8), and many style guides. Fixing this consistently throughout the codebase will reduce the risk of future bugs and improve code maintainability. Happy to Help If you agree with this change, I’d be glad to prepare a pull request to update the relevant parts of the codebase. Just let me know if you’re open to this change, or if you have any preferences on how you’d like it done! I'm a big fan of this project. I came across your talk in the AI Engineer World's Fair while I was working on training an LLM to play Contexto. Thanks again for making this project available!
PrimeIntellect-ai/verifiers
github_pr
1
[ "tests/test_rubric_group.py" ]
206
19
6
[ ".changeset/long-ties-rescue.md", ".size-limit.json", "packages/react-query/src/__tests__/useQuery.test.tsx", "packages/react-query/src/errorBoundaryUtils.ts", "packages/react-query/src/useBaseQuery.ts", "packages/react-query/src/useQueries.ts" ]
[ { "body": "Describe the bug\nIf the query options include the following:\nthrowOnError: () => false, \nretryOnMount: true, \nstaleTime: Infinity,\n\nthen on remount of the host component, queryFn is not called, even though the documentation suggests otherwise.\nYour minimal, reproducible example\nhttps://stac...
2025-12-30T14:39:25
5
[ ".changeset/long-ties-rescue.md", ".size-limit.json", "packages/react-query/src/errorBoundaryUtils.ts", "packages/react-query/src/useBaseQuery.ts", "packages/react-query/src/useQueries.ts" ]
Fixed #9336 Summary Fixed throwOnError retry logic to properly handle function vs boolean values When throwOnError is a function, allow retryOnMount to proceed even when error boundary hasn't been reset Maintains existing prevention behavior for boolean throwOnError values Added comprehensive test coverage for the retry behavior Summary by CodeRabbit Tests Expanded test coverage for retry and error-boundary behaviors, including mount/unmount scenarios and error-state-aware retries. Bug Fixes Improved error-boundary integration to make retry-on-mount decisions more accurate when error handling is conditional. Chores Small bundle size adjustments and added a changeset documenting a patch release addressing retry behavior with conditional error handling. ✏️ Tip: You can customize this high-level summary in your review settings.
9,338
fix(react-query): allow retryOnMount when throwOnError is function (#9336)
https://github.com/TanStack/query/pull/9338
closing_issue_text
useQuery does not perform a retry on mount when the function provided to throwOnError returns false, even if retryOnMount: true is set Describe the bug If the query options include the following: throwOnError: () => false, retryOnMount: true, staleTime: Infinity, then on remount of the host component, queryFn is not called, even though the documentation suggests otherwise. Your minimal, reproducible example https://stackblitz.com/edit/react-93scwtvo Steps to reproduce Wait for the app to load and open the console. Click the "Open Modal" button — you will see "Fetching..." messages in the console indicating data fetch attempts. Click the "Close Modal" button. Click "Open Modal" again — no more "Fetching..." messages appear. Expected behavior I expect that if a Query is in the error status and I set retryOnMount: true in the options, then when the function passed to throwOnError returns false, the Query should still call queryFn on remount of the host component. How often does this bug happen? Every time Screenshots or Videos No response Platform OS: Windows, macOS; Browser: Chrome (137.0.7151.120); Tanstack Query adapter react-query TanStack Query version v5.81.4 TypeScript version v5.8.3 Additional context Here is the link to the source code where the condition is checked that forcibly sets retryOnMount to false:
TanStack/query
github_pr
1
[ "packages/react-query/src/__tests__/useQuery.test.tsx" ]
11
10
6
[ ".changeset/funny-lines-visit.md", "examples/vue/basic/package.json", "examples/vue/simple/package.json", "packages/vue-query-devtools/CHANGELOG.md", "packages/vue-query-devtools/package.json", "pnpm-lock.yaml" ]
[ { "body": "", "number": 10087, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10087" } ]
2026-02-11T16:37:27
6
[ ".changeset/funny-lines-visit.md", "examples/vue/basic/package.json", "examples/vue/simple/package.json", "packages/vue-query-devtools/CHANGELOG.md", "packages/vue-query-devtools/package.json", "pnpm-lock.yaml" ]
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/vue-query-devtools@6.1.5 Patch Changes fix: style prop type (#10087)
10,117
ci: Version Packages
https://github.com/TanStack/query/pull/10117
pr_title_body
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/vue-query-devtools@6.1.5 Patch Changes fix: style prop type (#10087)
TanStack/query
github_pr
0
[]
41
4
7
[ "docs/react/devtools.md", "docs/solid/devtools.md", "packages/query-devtools/src/index.tsx", "packages/query-devtools/src/utils.tsx", "packages/react-query-devtools/src/devtools.tsx", "packages/solid-query-devtools/src/devtools.tsx", "packages/svelte-query-devtools/src/Devtools.svelte" ]
[ { "body": "Describe the bug\nThe styleNonce prop has not been carried forward to the current version. If you have a content security policy in place for development, devtools will not load any inline CSS.\nI tried to put together a codesandbox, but was unsuccessful. They don't seem to allow modifying the HTML...
2023-11-07T04:27:00
7
[ "docs/react/devtools.md", "docs/solid/devtools.md", "packages/query-devtools/src/index.tsx", "packages/query-devtools/src/utils.tsx", "packages/react-query-devtools/src/devtools.tsx", "packages/solid-query-devtools/src/devtools.tsx", "packages/svelte-query-devtools/src/Devtools.svelte" ]
Fixes #6284 Adds a styleNonce to the goober stylesheet that's used by query-devtools
6,320
fix(query-devtools): Add styleNonce prop to devtools components
https://github.com/TanStack/query/pull/6320
closing_issue_text
Devtools no longer support the style nonce for Content Security Policies Describe the bug The styleNonce prop has not been carried forward to the current version. If you have a content security policy in place for development, devtools will not load any inline CSS. I tried to put together a codesandbox, but was unsuccessful. They don't seem to allow modifying the HTML headers. I'm not really surprised by that. This appears to be a regression from this pull request: #3506 Your minimal, reproducible example unable to recreate due to inability to manage html headers Steps to reproduce Add a content security policy header for CSS that expects a nonce. Include the devtools in the app Expected behavior devtools appear and work similar to the 4.x version How often does this bug happen? None Screenshots or Videos Platform OS: MacOS Ventura Browser: Brave version 1.59.124 Chromium: 118.0.5993.117 (official build) (x86_64) Tanstack Query adapter react-query TanStack Query version 5.4.3 TypeScript version n/a Additional context No response
TanStack/query
github_pr
0
[]
262
45
11
[ ".changeset/fix-solid-query-deprecated-types.md", "examples/solid/astro/package.json", "examples/solid/basic-graphql-request/package.json", "examples/solid/basic/package.json", "examples/solid/default-query-function/package.json", "examples/solid/offline/package.json", "examples/solid/simple/package.jso...
[ { "body": "", "number": 10093, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10093" } ]
2026-03-12T07:32:48
11
[ ".changeset/fix-solid-query-deprecated-types.md", "examples/solid/astro/package.json", "examples/solid/basic-graphql-request/package.json", "examples/solid/basic/package.json", "examples/solid/default-query-function/package.json", "examples/solid/offline/package.json", "examples/solid/simple/package.jso...
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/solid-query@5.90.24 Patch Changes fix: forward generic parameters in deprecated type aliases (#10093)
10,259
ci: Version Packages
https://github.com/TanStack/query/pull/10259
pr_title_body
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/solid-query@5.90.24 Patch Changes fix: forward generic parameters in deprecated type aliases (#10093)
TanStack/query
github_pr
0
[]
21
20
11
[ ".changeset/shiny-mails-help.md", "examples/solid/astro/package.json", "examples/solid/basic-graphql-request/package.json", "examples/solid/basic/package.json", "examples/solid/default-query-function/package.json", "examples/solid/offline/package.json", "examples/solid/simple/package.json", "examples/...
[ { "body": "", "number": 10260, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10260" } ]
2026-03-12T12:00:24
11
[ ".changeset/shiny-mails-help.md", "examples/solid/astro/package.json", "examples/solid/basic-graphql-request/package.json", "examples/solid/basic/package.json", "examples/solid/default-query-function/package.json", "examples/solid/offline/package.json", "examples/solid/simple/package.json", "examples/...
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/solid-query@5.90.25 Patch Changes fix: allow both create/use for solid (#10260)
10,261
ci: Version Packages
https://github.com/TanStack/query/pull/10261
pr_title_body
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/solid-query@5.90.25 Patch Changes fix: allow both create/use for solid (#10260)
TanStack/query
github_pr
0
[]
21
20
11
[ ".changeset/tricky-dancers-lay.md", "examples/solid/astro/package.json", "examples/solid/basic-graphql-request/package.json", "examples/solid/basic/package.json", "examples/solid/default-query-function/package.json", "examples/solid/offline/package.json", "examples/solid/simple/package.json", "example...
[ { "body": "", "number": 10262, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10262" } ]
2026-03-12T12:36:10
11
[ ".changeset/tricky-dancers-lay.md", "examples/solid/astro/package.json", "examples/solid/basic-graphql-request/package.json", "examples/solid/basic/package.json", "examples/solid/default-query-function/package.json", "examples/solid/offline/package.json", "examples/solid/simple/package.json", "example...
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/solid-query@5.90.26 Patch Changes fix(solid-router): should only have useQueryClient/useIsRestoring due to context read (#10262)
10,263
ci: Version Packages
https://github.com/TanStack/query/pull/10263
pr_title_body
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/solid-query@5.90.26 Patch Changes fix(solid-router): should only have useQueryClient/useIsRestoring due to context read (#10262)
TanStack/query
github_pr
0
[]
170
62
19
[ ".changeset/moody-mails-deliver.md", "docs/config.json", "docs/reference/environmentManager.md", "packages/preact-query/src/__tests__/utils.tsx", "packages/preact-query/src/useBaseQuery.ts", "packages/query-core/src/__tests__/environmentManager.test.tsx", "packages/query-core/src/__tests__/focusManager....
[ { "body": "Describe the bug\nIssue\nThis isServer check prevents the queries from running in these environments, mistakenly seeing them as servers anywhere globalThis.window is undefined.\n\n \n \n query/packages/query-core/src/utils.ts\n \n \n Line 89\n in\n 984bfa6\n \n \n...
2026-03-18T11:52:52
13
[ ".changeset/moody-mails-deliver.md", "docs/config.json", "docs/reference/environmentManager.md", "packages/preact-query/src/useBaseQuery.ts", "packages/query-core/src/environmentManager.ts", "packages/query-core/src/focusManager.ts", "packages/query-core/src/index.ts", "packages/query-core/src/onlineM...
alternative fix for #10139 Summary by CodeRabbit New Features Added environmentManager as a public API to manage runtime server-detection with isServer() and setIsServer(). Documentation Added detailed environmentManager docs with usage examples for overriding and restoring server detection. Deprecations Marked the prior direct isServer export as deprecated in favor of environmentManager.isServer(). Tests Added and updated tests to cover default detection, overrides, and related runtime behaviors.
10,199
feat/environmentManager
https://github.com/TanStack/query/pull/10199
closing_issue_text
Tanstack Query refetch does not work in certain environments (vscode extension, chrome extension) Describe the bug Issue This isServer check prevents the queries from running in these environments, mistakenly seeing them as servers anywhere globalThis.window is undefined. query/packages/query-core/src/utils.ts Line 89 in 984bfa6 export const isServer = typeof window === 'undefined' || 'Deno' in globalThis Related Discussion Workarounds Use queryClient.invalidateQueries in a setInterval [Maybe?] Put a "dummy" item into globalthis.window so that it isn't seen as a server. WARNING: This could have major unexpected side effects. Proposed Fix (by @TkDodo) Decouple setInterval calls from isServer checks. None if this code runs on the server anyways, because subscriptions are only created on the client (they run in effects / useSyncExternalStore, so not on the server) Your minimal, reproducible example See above Steps to reproduce See above Expected behavior See above How often does this bug happen? Every time Screenshots or Videos No response Platform Chrome extensions and vscode extensions Tanstack Query adapter vanilla TanStack Query version v5.90.20 TypeScript version v5.8.3 Additional context No response
TanStack/query
github_pr
6
[ "packages/preact-query/src/__tests__/utils.tsx", "packages/query-core/src/__tests__/environmentManager.test.tsx", "packages/query-core/src/__tests__/focusManager.test.tsx", "packages/query-core/src/__tests__/onlineManager.test.tsx", "packages/query-core/src/__tests__/utils.ts", "packages/react-query/src/_...
165
133
71
[ ".changeset/many-toes-speak.md", ".changeset/soft-cherries-hide.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/pa...
[ { "body": "", "number": 10007, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10007" } ]
2026-01-30T09:30:28
71
[ ".changeset/many-toes-speak.md", ".changeset/soft-cherries-hide.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/pa...
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/query-devtools@5.93.0 Minor Changes Set data to undefined on Trigger Error (#10072) @tanstack/eslint-plugin-query@5.91.4 Patch Changes fix(eslint-plugin-query): declare typescript as optional peer dependency (#10007) @tanstack/react-query-devtools@5.91.3 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/solid-query-devtools@5.91.3 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/svelte-query-devtools@6.0.4 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/vue-query-devtools@6.1.4 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/angular-query-experimental@5.90.25
10,069
ci: Version Packages
https://github.com/TanStack/query/pull/10069
pr_title_body
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/query-devtools@5.93.0 Minor Changes Set data to undefined on Trigger Error (#10072) @tanstack/eslint-plugin-query@5.91.4 Patch Changes fix(eslint-plugin-query): declare typescript as optional peer dependency (#10007) @tanstack/react-query-devtools@5.91.3 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/solid-query-devtools@5.91.3 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/svelte-query-devtools@6.0.4 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/vue-query-devtools@6.1.4 Patch Changes Updated dependencies [83366c4]: @tanstack/query-devtools@5.93.0 @tanstack/angular-query-experimental@5.90.25
TanStack/query
github_pr
0
[]
187
89
86
[ ".changeset/wise-numbers-double.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/o...
[ { "body": "", "number": 9686, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9686" } ]
2025-11-08T18:17:47
86
[ ".changeset/wise-numbers-double.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/o...
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-query-experimental@5.90.10 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-async-storage-persister@5.90.10 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-persist-client-core@5.91.7 @tanstack/query-broadcast-client-experimental@5.90.8 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-core@5.90.8 Patch Changes fix: allow partial query keys in QueryFilters (#9686) @tanstack/query-persist-client-core@5.91.7 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-sync-storage-persister@5.90.10 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-persist-client-core@5.91.7 @tanstack/react-query@5.90.8 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/react-query-persist-client@5.90.10 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.7 @tanstack/react-query@5.90.8 @tanstack/solid-query@5.90.11 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/solid-query-persist-client@5.90.11 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.7 @tanstack/solid-query@5.90.11 @tanstack/svelte-query@6.0.6 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/svelte-query-persist-client@6.0.8 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.7 @tanstack/svelte-query@6.0.6 @tanstack/vue-query@5.90.8 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/angular-query-persist-client@5.62.15 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.10 @tanstack/query-persist-client-core@5.91.7
9,854
ci: Version Packages
https://github.com/TanStack/query/pull/9854
pr_title_body
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-query-experimental@5.90.10 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-async-storage-persister@5.90.10 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-persist-client-core@5.91.7 @tanstack/query-broadcast-client-experimental@5.90.8 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-core@5.90.8 Patch Changes fix: allow partial query keys in QueryFilters (#9686) @tanstack/query-persist-client-core@5.91.7 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-sync-storage-persister@5.90.10 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/query-persist-client-core@5.91.7 @tanstack/react-query@5.90.8 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/react-query-persist-client@5.90.10 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.7 @tanstack/react-query@5.90.8 @tanstack/solid-query@5.90.11 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/solid-query-persist-client@5.90.11 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.7 @tanstack/solid-query@5.90.11 @tanstack/svelte-query@6.0.6 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/svelte-query-persist-client@6.0.8 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.7 @tanstack/svelte-query@6.0.6 @tanstack/vue-query@5.90.8 Patch Changes Updated dependencies [c0ec9fe]: @tanstack/query-core@5.90.8 @tanstack/angular-query-persist-client@5.62.15 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.10 @tanstack/query-persist-client-core@5.91.7
TanStack/query
github_pr
0
[]
190
101
86
[ ".changeset/new-keys-raise.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/optimi...
[ { "body": "", "number": 9872, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9872" } ]
2025-11-14T08:16:47
86
[ ".changeset/new-keys-raise.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/optimi...
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-query-experimental@5.90.11 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-async-storage-persister@5.90.11 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-persist-client-core@5.91.8 @tanstack/query-broadcast-client-experimental@5.90.9 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-core@5.90.9 Patch Changes fix(types): do not drop readonly for partial QueryFilter matching (#9872) @tanstack/query-persist-client-core@5.91.8 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-sync-storage-persister@5.90.11 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-persist-client-core@5.91.8 @tanstack/react-query@5.90.9 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/react-query-persist-client@5.90.11 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.8 @tanstack/react-query@5.90.9 @tanstack/solid-query@5.90.12 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/solid-query-persist-client@5.90.12 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.8 @tanstack/solid-query@5.90.12 @tanstack/svelte-query@6.0.7 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/svelte-query-persist-client@6.0.9 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.8 @tanstack/svelte-query@6.0.7 @tanstack/vue-query@5.91.1 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/angular-query-persist-client@5.62.16 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.11 @tanstack/query-persist-client-core@5.91.8
9,873
ci: Version Packages
https://github.com/TanStack/query/pull/9873
pr_title_body
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-query-experimental@5.90.11 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-async-storage-persister@5.90.11 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-persist-client-core@5.91.8 @tanstack/query-broadcast-client-experimental@5.90.9 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-core@5.90.9 Patch Changes fix(types): do not drop readonly for partial QueryFilter matching (#9872) @tanstack/query-persist-client-core@5.91.8 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-sync-storage-persister@5.90.11 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/query-persist-client-core@5.91.8 @tanstack/react-query@5.90.9 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/react-query-persist-client@5.90.11 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.8 @tanstack/react-query@5.90.9 @tanstack/solid-query@5.90.12 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/solid-query-persist-client@5.90.12 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.8 @tanstack/solid-query@5.90.12 @tanstack/svelte-query@6.0.7 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/svelte-query-persist-client@6.0.9 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.8 @tanstack/svelte-query@6.0.7 @tanstack/vue-query@5.91.1 Patch Changes Updated dependencies [08b211f]: @tanstack/query-core@5.90.9 @tanstack/angular-query-persist-client@5.62.16 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.11 @tanstack/query-persist-client-core@5.91.8
TanStack/query
github_pr
0
[]
188
89
86
[ ".changeset/gentle-hotels-eat.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opt...
[ { "body": "", "number": 9944, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9944" } ]
2025-12-04T11:12:48
86
[ ".changeset/gentle-hotels-eat.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opt...
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-query-experimental@5.90.16 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-async-storage-persister@5.90.14 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-persist-client-core@5.91.11 @tanstack/query-broadcast-client-experimental@5.90.12 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-core@5.90.12 Patch Changes fix: update react and nextJs (#9944) @tanstack/query-persist-client-core@5.91.11 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-sync-storage-persister@5.90.14 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-persist-client-core@5.91.11 @tanstack/react-query@5.90.12 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/react-query-persist-client@5.90.14 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.11 @tanstack/react-query@5.90.12 @tanstack/solid-query@5.90.15 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/solid-query-persist-client@5.90.15 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.11 @tanstack/solid-query@5.90.15 @tanstack/svelte-query@6.0.10 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/svelte-query-persist-client@6.0.12 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.11 @tanstack/svelte-query@6.0.10 @tanstack/vue-query@5.92.1 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/angular-query-persist-client@5.62.19 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.16 @tanstack/query-persist-client-core@5.91.11
9,945
ci: Version Packages
https://github.com/TanStack/query/pull/9945
pr_title_body
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-query-experimental@5.90.16 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-async-storage-persister@5.90.14 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-persist-client-core@5.91.11 @tanstack/query-broadcast-client-experimental@5.90.12 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-core@5.90.12 Patch Changes fix: update react and nextJs (#9944) @tanstack/query-persist-client-core@5.91.11 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-sync-storage-persister@5.90.14 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/query-persist-client-core@5.91.11 @tanstack/react-query@5.90.12 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/react-query-persist-client@5.90.14 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.11 @tanstack/react-query@5.90.12 @tanstack/solid-query@5.90.15 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/solid-query-persist-client@5.90.15 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.11 @tanstack/solid-query@5.90.15 @tanstack/svelte-query@6.0.10 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/svelte-query-persist-client@6.0.12 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.11 @tanstack/svelte-query@6.0.10 @tanstack/vue-query@5.92.1 Patch Changes Updated dependencies [72d8ac5]: @tanstack/query-core@5.90.12 @tanstack/angular-query-persist-client@5.62.19 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.16 @tanstack/query-persist-client-core@5.91.11
TanStack/query
github_pr
0
[]
255
157
86
[ ".changeset/open-keys-create.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opti...
[ { "body": "", "number": 9927, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9927" } ]
2025-12-29T15:52:59
86
[ ".changeset/open-keys-create.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opti...
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-query-experimental@5.90.19 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-async-storage-persister@5.90.17 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-persist-client-core@5.91.14 @tanstack/query-broadcast-client-experimental@5.90.15 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-core@5.90.15 Patch Changes Fix: Always treat existing data as stale when query goes into error state. (#9927) @tanstack/query-persist-client-core@5.91.14 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-sync-storage-persister@5.90.17 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-persist-client-core@5.91.14 @tanstack/react-query@5.90.15 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/react-query-persist-client@5.90.17 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.14 @tanstack/react-query@5.90.15 @tanstack/solid-query@5.90.18 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/solid-query-persist-client@5.90.18 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.14 @tanstack/solid-query@5.90.18 @tanstack/svelte-query@6.0.13 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/svelte-query-persist-client@6.0.15 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.14 @tanstack/svelte-query@6.0.13 @tanstack/vue-query@5.92.4 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/angular-query-persist-client@5.62.22 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.19 @tanstack/query-persist-client-core@5.91.14
10,003
ci: Version Packages
https://github.com/TanStack/query/pull/10003
pr_title_body
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-query-experimental@5.90.19 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-async-storage-persister@5.90.17 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-persist-client-core@5.91.14 @tanstack/query-broadcast-client-experimental@5.90.15 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-core@5.90.15 Patch Changes Fix: Always treat existing data as stale when query goes into error state. (#9927) @tanstack/query-persist-client-core@5.91.14 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-sync-storage-persister@5.90.17 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/query-persist-client-core@5.91.14 @tanstack/react-query@5.90.15 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/react-query-persist-client@5.90.17 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.14 @tanstack/react-query@5.90.15 @tanstack/solid-query@5.90.18 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/solid-query-persist-client@5.90.18 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.14 @tanstack/solid-query@5.90.18 @tanstack/svelte-query@6.0.13 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/svelte-query-persist-client@6.0.15 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.14 @tanstack/svelte-query@6.0.13 @tanstack/vue-query@5.92.4 Patch Changes Updated dependencies [fccef79]: @tanstack/query-core@5.90.15 @tanstack/angular-query-persist-client@5.62.22 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.19 @tanstack/query-persist-client-core@5.91.14
TanStack/query
github_pr
0
[]
255
157
86
[ ".changeset/swift-zoos-applaud.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/op...
[ { "body": "", "number": 10032, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10032" } ]
2026-01-13T19:36:07
86
[ ".changeset/swift-zoos-applaud.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/op...
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-query-experimental@5.90.21 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-async-storage-persister@5.90.19 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-persist-client-core@5.91.16 @tanstack/query-broadcast-client-experimental@5.90.17 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-core@5.90.17 Patch Changes fix(query-core): replaceEqualDeep max depth (#10032) @tanstack/query-persist-client-core@5.91.16 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-sync-storage-persister@5.90.19 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-persist-client-core@5.91.16 @tanstack/react-query@5.90.17 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/react-query-persist-client@5.90.19 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.16 @tanstack/react-query@5.90.17 @tanstack/solid-query@5.90.20 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/solid-query-persist-client@5.90.20 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.16 @tanstack/solid-query@5.90.20 @tanstack/svelte-query@6.0.15 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/svelte-query-persist-client@6.0.17 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.16 @tanstack/svelte-query@6.0.15 @tanstack/vue-query@5.92.6 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/angular-query-persist-client@5.62.24 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.21 @tanstack/query-persist-client-core@5.91.16
10,033
ci: Version Packages
https://github.com/TanStack/query/pull/10033
pr_title_body
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-query-experimental@5.90.21 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-async-storage-persister@5.90.19 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-persist-client-core@5.91.16 @tanstack/query-broadcast-client-experimental@5.90.17 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-core@5.90.17 Patch Changes fix(query-core): replaceEqualDeep max depth (#10032) @tanstack/query-persist-client-core@5.91.16 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-sync-storage-persister@5.90.19 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/query-persist-client-core@5.91.16 @tanstack/react-query@5.90.17 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/react-query-persist-client@5.90.19 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.16 @tanstack/react-query@5.90.17 @tanstack/solid-query@5.90.20 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/solid-query-persist-client@5.90.20 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.16 @tanstack/solid-query@5.90.20 @tanstack/svelte-query@6.0.15 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/svelte-query-persist-client@6.0.17 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.16 @tanstack/svelte-query@6.0.15 @tanstack/vue-query@5.92.6 Patch Changes Updated dependencies [269351b]: @tanstack/query-core@5.90.17 @tanstack/angular-query-persist-client@5.62.24 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.21 @tanstack/query-persist-client-core@5.91.16
TanStack/query
github_pr
0
[]
256
157
86
[ ".changeset/giant-apples-wear.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opt...
[ { "body": "", "number": 10066, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10066" } ]
2026-01-23T07:39:25
86
[ ".changeset/giant-apples-wear.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opt...
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-query-experimental@5.90.24 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-async-storage-persister@5.90.22 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-persist-client-core@5.91.19 @tanstack/query-broadcast-client-experimental@5.90.20 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-core@5.90.20 Patch Changes Fix: onMutate callback now runs synchronously when mutationCache.config.onMutate is not defined (#10066) @tanstack/query-persist-client-core@5.91.19 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-sync-storage-persister@5.90.22 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-persist-client-core@5.91.19 @tanstack/react-query@5.90.20 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/react-query-persist-client@5.90.22 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.19 @tanstack/react-query@5.90.20 @tanstack/solid-query@5.90.23 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/solid-query-persist-client@5.90.23 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.19 @tanstack/solid-query@5.90.23 @tanstack/svelte-query@6.0.18 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/svelte-query-persist-client@6.0.20 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.19 @tanstack/svelte-query@6.0.18 @tanstack/vue-query@5.92.9 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/angular-query-persist-client@5.62.27 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.24 @tanstack/query-persist-client-core@5.91.19
10,067
ci: Version Packages
https://github.com/TanStack/query/pull/10067
pr_title_body
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-query-experimental@5.90.24 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-async-storage-persister@5.90.22 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-persist-client-core@5.91.19 @tanstack/query-broadcast-client-experimental@5.90.20 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-core@5.90.20 Patch Changes Fix: onMutate callback now runs synchronously when mutationCache.config.onMutate is not defined (#10066) @tanstack/query-persist-client-core@5.91.19 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-sync-storage-persister@5.90.22 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/query-persist-client-core@5.91.19 @tanstack/react-query@5.90.20 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/react-query-persist-client@5.90.22 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.19 @tanstack/react-query@5.90.20 @tanstack/solid-query@5.90.23 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/solid-query-persist-client@5.90.23 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.19 @tanstack/solid-query@5.90.23 @tanstack/svelte-query@6.0.18 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/svelte-query-persist-client@6.0.20 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.19 @tanstack/svelte-query@6.0.18 @tanstack/vue-query@5.92.9 Patch Changes Updated dependencies [e7258c5]: @tanstack/query-core@5.90.20 @tanstack/angular-query-persist-client@5.62.27 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.24 @tanstack/query-persist-client-core@5.91.19
TanStack/query
github_pr
0
[]
189
94
87
[ ".changeset/orange-boxes-visit.md", ".changeset/puny-walls-eat.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/pac...
[ { "body": "", "number": 9876, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9876" }, { "body": "", "number": 9878, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9878" } ]
2025-11-16T18:27:14
87
[ ".changeset/orange-boxes-visit.md", ".changeset/puny-walls-eat.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/pac...
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-query-experimental@5.90.12 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-async-storage-persister@5.90.12 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-persist-client-core@5.91.9 @tanstack/query-broadcast-client-experimental@5.90.10 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-core@5.90.10 Patch Changes fix(types): allow QueryFilters union with different lengths (#9878) Fix streamedQuery to avoid returning undefined when the stream yields no values (#9876) @tanstack/query-persist-client-core@5.91.9 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-sync-storage-persister@5.90.12 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-persist-client-core@5.91.9 @tanstack/react-query@5.90.10 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/react-query-persist-client@5.90.12 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.9 @tanstack/react-query@5.90.10 @tanstack/solid-query@5.90.13 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/solid-query-persist-client@5.90.13 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.9 @tanstack/solid-query@5.90.13 @tanstack/svelte-query@6.0.8 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/svelte-query-persist-client@6.0.10 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.9 @tanstack/svelte-query@6.0.8 @tanstack/vue-query@5.91.2 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/angular-query-persist-client@5.62.17 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.12 @tanstack/query-persist-client-core@5.91.9
9,879
ci: Version Packages
https://github.com/TanStack/query/pull/9879
pr_title_body
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-query-experimental@5.90.12 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-async-storage-persister@5.90.12 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-persist-client-core@5.91.9 @tanstack/query-broadcast-client-experimental@5.90.10 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-core@5.90.10 Patch Changes fix(types): allow QueryFilters union with different lengths (#9878) Fix streamedQuery to avoid returning undefined when the stream yields no values (#9876) @tanstack/query-persist-client-core@5.91.9 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-sync-storage-persister@5.90.12 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/query-persist-client-core@5.91.9 @tanstack/react-query@5.90.10 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/react-query-persist-client@5.90.12 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.9 @tanstack/react-query@5.90.10 @tanstack/solid-query@5.90.13 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/solid-query-persist-client@5.90.13 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.9 @tanstack/solid-query@5.90.13 @tanstack/svelte-query@6.0.8 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/svelte-query-persist-client@6.0.10 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.9 @tanstack/svelte-query@6.0.8 @tanstack/vue-query@5.91.2 Patch Changes Updated dependencies [8e2e174, eb559a6]: @tanstack/query-core@5.90.10 @tanstack/angular-query-persist-client@5.62.17 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.12 @tanstack/query-persist-client-core@5.91.9
TanStack/query
github_pr
0
[]
257
162
87
[ ".changeset/long-ties-rescue.md", ".changeset/orange-flowers-post.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/...
[ { "body": "", "number": 9338, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9338" }, { "body": "", "number": 9971, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9971" } ]
2025-12-30T14:44:57
87
[ ".changeset/long-ties-rescue.md", ".changeset/orange-flowers-post.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/...
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-query-experimental@5.90.20 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-async-storage-persister@5.90.18 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-persist-client-core@5.91.15 @tanstack/query-broadcast-client-experimental@5.90.16 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-core@5.90.16 Patch Changes fix useQueries race condition on queries length change (#9971) (#9973) @tanstack/query-persist-client-core@5.91.15 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-sync-storage-persister@5.90.18 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-persist-client-core@5.91.15 @tanstack/react-query@5.90.16 Patch Changes fix(react-query): allow retryOnMount when throwOnError is function (#9338) Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/react-query-persist-client@5.90.18 Patch Changes Updated dependencies [4be3ad7]: @tanstack/react-query@5.90.16 @tanstack/query-persist-client-core@5.91.15 @tanstack/solid-query@5.90.19 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/solid-query-persist-client@5.90.19 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.15 @tanstack/solid-query@5.90.19 @tanstack/svelte-query@6.0.14 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/svelte-query-persist-client@6.0.16 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.15 @tanstack/svelte-query@6.0.14 @tanstack/vue-query@5.92.5 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/angular-query-persist-client@5.62.23 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.20 @tanstack/query-persist-client-core@5.91.15
10,005
ci: Version Packages
https://github.com/TanStack/query/pull/10005
pr_title_body
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-query-experimental@5.90.20 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-async-storage-persister@5.90.18 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-persist-client-core@5.91.15 @tanstack/query-broadcast-client-experimental@5.90.16 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-core@5.90.16 Patch Changes fix useQueries race condition on queries length change (#9971) (#9973) @tanstack/query-persist-client-core@5.91.15 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-sync-storage-persister@5.90.18 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/query-persist-client-core@5.91.15 @tanstack/react-query@5.90.16 Patch Changes fix(react-query): allow retryOnMount when throwOnError is function (#9338) Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/react-query-persist-client@5.90.18 Patch Changes Updated dependencies [4be3ad7]: @tanstack/react-query@5.90.16 @tanstack/query-persist-client-core@5.91.15 @tanstack/solid-query@5.90.19 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/solid-query-persist-client@5.90.19 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.15 @tanstack/solid-query@5.90.19 @tanstack/svelte-query@6.0.14 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/svelte-query-persist-client@6.0.16 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.15 @tanstack/svelte-query@6.0.14 @tanstack/vue-query@5.92.5 Patch Changes Updated dependencies [7f47906]: @tanstack/query-core@5.90.16 @tanstack/angular-query-persist-client@5.62.23 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.20 @tanstack/query-persist-client-core@5.91.15
TanStack/query
github_pr
0
[]
270
171
89
[ ".changeset/slimy-taxes-make.md", ".changeset/swift-brooms-teach.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/p...
[ { "body": "", "number": 9954, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/9954" }, { "body": "", "number": 10011, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10011" } ]
2026-01-17T19:23:52
89
[ ".changeset/slimy-taxes-make.md", ".changeset/swift-brooms-teach.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/p...
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-query-experimental@5.90.23 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/eslint-plugin-query@5.91.3 Patch Changes exhaustive-deps rule fixed for vue files (#10011) @tanstack/query-async-storage-persister@5.90.21 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-persist-client-core@5.91.18 @tanstack/query-broadcast-client-experimental@5.90.19 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-core@5.90.19 Patch Changes fix stable combine reference not updating when queries change dynamically (#9954) @tanstack/query-persist-client-core@5.91.18 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-sync-storage-persister@5.90.21 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-persist-client-core@5.91.18 @tanstack/react-query@5.90.19 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/react-query-persist-client@5.90.21 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.18 @tanstack/react-query@5.90.19 @tanstack/solid-query@5.90.22 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/solid-query-persist-client@5.90.22 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.18 @tanstack/solid-query@5.90.22 @tanstack/svelte-query@6.0.17 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/svelte-query-persist-client@6.0.19 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.18 @tanstack/svelte-query@6.0.17 @tanstack/vue-query@5.92.8 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/angular-query-persist-client@5.62.26 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.23 @tanstack/query-persist-client-core@5.91.18
10,047
ci: Version Packages
https://github.com/TanStack/query/pull/10047
pr_title_body
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-query-experimental@5.90.23 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/eslint-plugin-query@5.91.3 Patch Changes exhaustive-deps rule fixed for vue files (#10011) @tanstack/query-async-storage-persister@5.90.21 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-persist-client-core@5.91.18 @tanstack/query-broadcast-client-experimental@5.90.19 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-core@5.90.19 Patch Changes fix stable combine reference not updating when queries change dynamically (#9954) @tanstack/query-persist-client-core@5.91.18 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-sync-storage-persister@5.90.21 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/query-persist-client-core@5.91.18 @tanstack/react-query@5.90.19 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/react-query-persist-client@5.90.21 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.18 @tanstack/react-query@5.90.19 @tanstack/solid-query@5.90.22 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/solid-query-persist-client@5.90.22 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.18 @tanstack/solid-query@5.90.22 @tanstack/svelte-query@6.0.17 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/svelte-query-persist-client@6.0.19 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.91.18 @tanstack/svelte-query@6.0.17 @tanstack/vue-query@5.92.8 Patch Changes Updated dependencies [53fc74e]: @tanstack/query-core@5.90.19 @tanstack/angular-query-persist-client@5.62.26 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.23 @tanstack/query-persist-client-core@5.91.18
TanStack/query
github_pr
0
[]
284
168
91
[ ".changeset/petite-emus-lick.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opti...
[ { "body": "", "number": 10291, "source": "body_keyword", "title": "", "url": "https://github.com/TanStack/query/issues/10291" } ]
2026-03-19T10:04:55
91
[ ".changeset/petite-emus-lick.md", "examples/angular/auto-refetching/package.json", "examples/angular/basic-persister/package.json", "examples/angular/basic/package.json", "examples/angular/devtools-panel/package.json", "examples/angular/infinite-query-with-max-pages/package.json", "examples/angular/opti...
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-query-experimental@5.90.27 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/preact-query@5.94.1 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/preact-query-persist-client@5.92.2 Patch Changes Updated dependencies [a89aab9]: @tanstack/preact-query@5.94.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/query-async-storage-persister@5.90.26 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/query-broadcast-client-experimental@5.90.22 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-core@5.91.1 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) @tanstack/query-persist-client-core@5.92.3 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-sync-storage-persister@5.90.26 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/react-query@5.91.1 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/react-query-persist-client@5.90.26 Patch Changes Updated dependencies [a89aab9]: @tanstack/react-query@5.91.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/solid-query@5.91.2 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/solid-query-persist-client@5.90.27 Patch Changes Updated dependencies [a89aab9]: @tanstack/solid-query@5.91.2 @tanstack/query-persist-client-core@5.92.3 @tanstack/svelte-query@6.1.2 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/svelte-query-persist-client@6.0.24 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.92.3 @tanstack/svelte-query@6.1.2 @tanstack/vue-query@5.92.11 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/angular-query-persist-client@5.62.31 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.27 @tanstack/query-persist-client-core@5.92.3
10,296
ci: Version Packages
https://github.com/TanStack/query/pull/10296
pr_title_body
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-query-experimental@5.90.27 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/preact-query@5.94.1 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/preact-query-persist-client@5.92.2 Patch Changes Updated dependencies [a89aab9]: @tanstack/preact-query@5.94.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/query-async-storage-persister@5.90.26 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/query-broadcast-client-experimental@5.90.22 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-core@5.91.1 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) @tanstack/query-persist-client-core@5.92.3 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-sync-storage-persister@5.90.26 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/react-query@5.91.1 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/react-query-persist-client@5.90.26 Patch Changes Updated dependencies [a89aab9]: @tanstack/react-query@5.91.1 @tanstack/query-persist-client-core@5.92.3 @tanstack/solid-query@5.91.2 Patch Changes fix(core): cancel paused initial fetch when last observer unsubscribes (#10291) Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/solid-query-persist-client@5.90.27 Patch Changes Updated dependencies [a89aab9]: @tanstack/solid-query@5.91.2 @tanstack/query-persist-client-core@5.92.3 @tanstack/svelte-query@6.1.2 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/svelte-query-persist-client@6.0.24 Patch Changes Updated dependencies []: @tanstack/query-persist-client-core@5.92.3 @tanstack/svelte-query@6.1.2 @tanstack/vue-query@5.92.11 Patch Changes Updated dependencies [a89aab9]: @tanstack/query-core@5.91.1 @tanstack/angular-query-persist-client@5.62.31 Patch Changes Updated dependencies []: @tanstack/angular-query-experimental@5.90.27 @tanstack/query-persist-client-core@5.92.3
TanStack/query
github_pr
0
[]
End of preview. Expand in Data Studio

swe-grep-rlm-reputable-recent-5plus

This dataset is a GitHub-mined collection of issue- or PR-linked retrieval examples for repository-level code search and localization.

Each row is built from a merged pull request in a reputable, actively maintained open-source repository. The target labels are the PR's changed files, with a focus on non-test files.

Summary

  • Rows: 799
  • Repositories: 46
  • Query source:
    • 519 rows use linked issue title/body when GitHub exposed it
    • 280 rows fall back to PR title/body
  • Non-test file count:
    • minimum: 5
    • median: 8
    • maximum: 264
  • Distribution:
    • 501 rows with 5-10 non-test files
    • 169 rows with 11-20 non-test files
    • 129 rows with 21+ non-test files

Files

  • reputable_recent_5plus.jsonl: primary dataset file
  • reputable_recent_5plus.csv: flattened mirror for quick inspection
  • reputable_recent_repos.txt: repo seed list used for the sweep
  • scrape_github_prs.py: collection script

Schema

Each example includes:

  • repo
  • pr_number
  • pr_url
  • pr_title
  • pr_body
  • merged_at
  • query_text
  • query_source
  • linked_issues
  • file_count
  • non_test_file_count
  • test_file_count
  • files
  • non_test_files
  • test_files
  • additions
  • deletions
  • source

Construction Notes

  • Only merged PRs were considered.
  • Rows were filtered to keep non_test_file_count >= 5.
  • The collector prefers linked issue title/body when available, and otherwise falls back to PR text.
  • For PRs with more than 100 changed files, additional file pages were fetched so the file lists are not truncated at the initial GraphQL response.
  • File-type classification is heuristic. In particular, "non-test" is broader than "implementation-only" and may still include docs, config, changelog, or generated artifacts in some projects.

Intended Use

This dataset is designed for:

  • repository-level code retrieval
  • issue localization
  • training or evaluating rerankers and retrieval policies
  • weak supervision for query-to-files tasks

It is not a gold-standard human-annotated benchmark. Labels come from merged PR diffs and linked issue/PR metadata.

Provenance

The data is derived from public GitHub repositories and metadata from their issues and pull requests. Upstream repository licenses vary by project.

Downloads last month
49