⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d878c7e
Init upgrade
AlexanderKaran Nov 4, 2025
15dfb63
Fixed query core
AlexanderKaran Nov 4, 2025
d09cc95
Fixed persist tests
AlexanderKaran Nov 8, 2025
d926606
Fixed coverage
AlexanderKaran Nov 8, 2025
f086b6d
Merge branch 'main' into vitest-v4
AlexanderKaran Nov 8, 2025
fd0e0e7
Fixed React
AlexanderKaran Nov 8, 2025
9947e8b
Fixed Solid Query Devtools and Sold Query
AlexanderKaran Nov 9, 2025
88866d8
Svelte query fix
AlexanderKaran Nov 9, 2025
7ec3458
Fixed Vue
AlexanderKaran Nov 9, 2025
dacd333
Angular done
AlexanderKaran Nov 9, 2025
1efa68d
Fixed React
AlexanderKaran Nov 11, 2025
aeefc4c
Merge branch 'main' into vitest-v4
AlexanderKaran Nov 11, 2025
91591aa
Merge branch 'main' into vitest-v4-merge
AlexanderKaran Dec 16, 2025
ef010b8
Merge files
AlexanderKaran Dec 16, 2025
ab4c572
Knip fix
AlexanderKaran Dec 16, 2025
894d111
Fixed order
AlexanderKaran Dec 16, 2025
43372ab
Angular Eslint
AlexanderKaran Dec 17, 2025
7000d41
Query Core Eslint
AlexanderKaran Dec 17, 2025
ed0ad73
Fixed Vue Eslint issue
AlexanderKaran Dec 17, 2025
69ff823
Removed fallback
AlexanderKaran Dec 17, 2025
b691135
Merge branch 'main' into vitest-v4
TkDodo Dec 27, 2025
0d3aaef
Merge branch 'main' into vitest-v4
TkDodo Dec 27, 2025
0f0413d
chore: update lockfile
TkDodo Dec 27, 2025
b748a95
ci: apply automated fixes
autofix-ci[bot] Dec 27, 2025
fe6e2be
Merge branch 'main' into pr/9862
TkDodo Jan 16, 2026
6818607
fix: esbuild resolving
TkDodo Jan 16, 2026
71dfd88
fix: no idea
TkDodo Jan 16, 2026
f013619
chore: bump vitest
TkDodo Jan 16, 2026
8ab8f92
Merge branch 'main' into vitest-v4
TkDodo Jan 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,15 @@ export default [
{
files: ['**/*.spec.ts*', '**/*.test.ts*', '**/*.test-d.ts*'],
plugins: { vitest },
rules: vitest.configs.recommended.rules,
rules: {
...vitest.configs.recommended.rules,
'vitest/no-standalone-expect': [
'error',
{
additionalTestBlockFunctions: ['testIf'],
},
],
},
settings: { vitest: { typecheck: true } },
},
]
2 changes: 1 addition & 1 deletion examples/react/algolia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
1 change: 1 addition & 0 deletions examples/react/auto-refetching/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/auto-refetching/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"target": "ES2017"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/react/basic-graphql-request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
},
"nx": {
"targets": {
Expand Down
2 changes: 1 addition & 1 deletion examples/react/chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.0.14",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/default-query-function/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/devtools-panel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/eslint-legacy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
},
"nx": {
"targets": {
Expand Down
1 change: 1 addition & 0 deletions examples/react/infinite-query-with-max-pages/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/infinite-query-with-max-pages/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"target": "ES2017"
},
Expand Down
1 change: 1 addition & 0 deletions examples/react/load-more-infinite-scroll/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/load-more-infinite-scroll/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"target": "ES2017"
},
Expand Down
5 changes: 3 additions & 2 deletions examples/react/nextjs-app-prefetching/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
Expand All @@ -28,7 +28,8 @@
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".eslintrc.cjs"
".eslintrc.cjs",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
}
2 changes: 1 addition & 1 deletion examples/react/nextjs-suspense-streaming/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
Expand Down
1 change: 1 addition & 0 deletions examples/react/nextjs/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/nextjs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"target": "ES2017"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/react/offline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
},
"msw": {
"workerDirectory": [
Expand Down
1 change: 1 addition & 0 deletions examples/react/optimistic-updates-cache/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/optimistic-updates-cache/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"strict": true,
"esModuleInterop": true,
"lib": ["DOM", "ES2015"],
"jsx": "preserve",
"jsx": "react-jsx",
"target": "ES5",
"allowJs": true,
"skipLibCheck": true,
Expand Down
1 change: 1 addition & 0 deletions examples/react/optimistic-updates-ui/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/optimistic-updates-ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"strict": true,
"esModuleInterop": true,
"lib": ["dom", "es2015"],
"jsx": "preserve",
"jsx": "react-jsx",
"target": "ES5",
"allowJs": true,
"skipLibCheck": true,
Expand Down
1 change: 1 addition & 0 deletions examples/react/pagination/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/pagination/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"target": "ES2017"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/react/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
1 change: 1 addition & 0 deletions examples/react/prefetching/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import './.next/types/routes.d.ts'

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
2 changes: 1 addition & 1 deletion examples/react/prefetching/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"target": "ES2017"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/react/react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
"@types/sort-by": "^1.2.3",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/rick-morty/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.1.13",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/shadow-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/star-wars/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.1.13",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/react/suspense/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/solid/basic-graphql-request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"devDependencies": {
"typescript": "5.8.3",
"vite": "^6.3.6",
"vite": "^6.4.1",
"vite-plugin-solid": "^2.11.6"
}
}
2 changes: 1 addition & 1 deletion examples/solid/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"devDependencies": {
"typescript": "5.8.3",
"vite": "^6.3.6",
"vite": "^6.4.1",
"vite-plugin-solid": "^2.11.6"
}
}
2 changes: 1 addition & 1 deletion examples/solid/default-query-function/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"devDependencies": {
"typescript": "5.8.3",
"vite": "^6.3.6",
"vite": "^6.4.1",
"vite-plugin-solid": "^2.11.6"
}
}
2 changes: 1 addition & 1 deletion examples/solid/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.91.2",
"typescript": "5.8.3",
"vite": "^6.3.6",
"vite": "^6.4.1",
"vite-plugin-solid": "^2.11.6"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/auto-refetching/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"svelte": "^5.39.3",
"svelte-check": "^4.3.1",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"svelte": "^5.39.3",
"svelte-check": "^4.3.1",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/load-more-infinite-scroll/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"svelte": "^5.39.3",
"svelte-check": "^4.3.1",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/optimistic-updates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"svelte": "^5.39.3",
"svelte-check": "^4.3.1",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"svelte": "^5.39.3",
"svelte-check": "^4.3.1",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"svelte": "^5.39.3",
"svelte-check": "^4.3.1",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"svelte": "^5.39.3",
"svelte-check": "^4.3.1",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
2 changes: 1 addition & 1 deletion examples/svelte/star-wars/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"svelte-check": "^4.3.1",
"tailwindcss": "^4.1.13",
"typescript": "5.8.3",
"vite": "^6.3.6"
"vite": "^6.4.1"
}
}
Loading