@tanstack/react-query 5.89.0 → 5.90.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -18,21 +18,25 @@ export default [
|
|
|
18
18
|
{
|
|
19
19
|
cspell: {
|
|
20
20
|
words: [
|
|
21
|
+
'Promisable', // Our public interface
|
|
22
|
+
'TSES', // @typescript-eslint package's interface
|
|
21
23
|
'codemod', // We support our codemod
|
|
22
24
|
'combinate', // Library name
|
|
25
|
+
'datatag', // Query options tagging
|
|
23
26
|
'extralight', // Our public interface
|
|
24
27
|
'jscodeshift',
|
|
25
|
-
'
|
|
28
|
+
'refetches', // Query refetch operations
|
|
26
29
|
'retryer', // Our public interface
|
|
27
30
|
'solidjs', // Our target framework
|
|
28
31
|
'tabular-nums', // https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-numeric
|
|
29
32
|
'tanstack', // Our package scope
|
|
30
33
|
'todos', // Too general word to be caught as error
|
|
31
|
-
'TSES', // @typescript-eslint package's interface
|
|
32
34
|
'tsqd', // Our public interface (TanStack Query Devtools shorthand)
|
|
33
35
|
'tsup', // We use tsup as builder
|
|
34
36
|
'typecheck', // Field of vite.config.ts
|
|
35
37
|
'vue-demi', // dependency of @tanstack/vue-query
|
|
38
|
+
'ɵkind', // Angular specific
|
|
39
|
+
'ɵproviders', // Angular specific
|
|
36
40
|
],
|
|
37
41
|
},
|
|
38
42
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/react-query",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.90.1",
|
|
4
4
|
"description": "Hooks for managing, caching and syncing asynchronous and remote data in React",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"!build/codemods/**/__tests__"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@tanstack/query-core": "5.
|
|
47
|
+
"@tanstack/query-core": "5.90.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@testing-library/react": "^16.1.0",
|
|
@@ -52,12 +52,13 @@
|
|
|
52
52
|
"@types/react": "^19.0.1",
|
|
53
53
|
"@types/react-dom": "^19.0.2",
|
|
54
54
|
"@vitejs/plugin-react": "^4.3.4",
|
|
55
|
+
"cpy-cli": "^5.0.0",
|
|
55
56
|
"npm-run-all2": "^5.0.0",
|
|
56
57
|
"react": "^19.0.0",
|
|
57
58
|
"react-dom": "^19.0.0",
|
|
58
59
|
"react-error-boundary": "^4.1.2",
|
|
59
|
-
"@tanstack/query-
|
|
60
|
-
"@tanstack/query-
|
|
60
|
+
"@tanstack/query-test-utils": "0.0.0",
|
|
61
|
+
"@tanstack/query-persist-client-core": "5.90.1"
|
|
61
62
|
},
|
|
62
63
|
"peerDependencies": {
|
|
63
64
|
"react": "^18 || ^19"
|
|
@@ -65,7 +66,7 @@
|
|
|
65
66
|
"scripts": {
|
|
66
67
|
"clean": "premove ./build ./coverage ./dist-ts",
|
|
67
68
|
"compile": "tsc --build",
|
|
68
|
-
"test:eslint": "eslint ./src",
|
|
69
|
+
"test:eslint": "eslint --concurrency=auto ./src",
|
|
69
70
|
"test:types": "npm-run-all --serial test:types:*",
|
|
70
71
|
"test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js --build tsconfig.legacy.json",
|
|
71
72
|
"test:types:ts51": "node ../../node_modules/typescript51/lib/tsc.js --build tsconfig.legacy.json",
|