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 uncle...
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 materi...
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 resp...
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 ...
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...
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...
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...
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 ret...
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 ...
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...
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...
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 unsuc...
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-que...
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-que...
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-que...
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-que...
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-que...
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-que...
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 Ma...
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/u...
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-dev...
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-dev...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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-q...
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
55