Skip to content

Commit 06db843

Browse files
Merge branch 'alpha' into windows-compatibility
2 parents abae31f + 3c32a64 commit 06db843

File tree

55 files changed

+2846
-2577
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2846
-2577
lines changed

examples/react/algolia/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
},
1717
"devDependencies": {
1818
"@tanstack/eslint-plugin-query": "^4.13.0",
19-
"@vitejs/plugin-react": "^2.0.0",
20-
"vite": "^3.0.0",
19+
"@types/react": "^18.0.14",
20+
"@types/react-dom": "^18.0.5",
21+
"@vitejs/plugin-react": "^4.0.0",
22+
"vite": "^4.2.0",
2123
"react": "^18.2.0",
2224
"react-dom": "^18.2.0",
23-
"typescript": "^4.7.4",
24-
"@types/react": "^18.0.14",
25-
"@types/react-dom": "^18.0.5"
25+
"typescript": "^5.0.4"
2626
},
2727
"browserslist": {
2828
"production": [

examples/react/auto-refetching/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7-
"axios": "^0.21.1",
7+
"axios": "^1.4.0",
88
"isomorphic-unfetch": "3.0.0",
99
"next": "12.2.2",
1010
"react": "^18.2.0",

examples/react/basic-graphql-request/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"graphql": "^15.3.0",
12-
"graphql-request": "^3.1.0",
11+
"graphql": "^16.6.0",
12+
"graphql-request": "^5.0.0",
1313
"react": "^18.0.0",
1414
"react-dom": "^18.0.0",
1515
"@tanstack/react-query": "^4.7.1",
1616
"@tanstack/react-query-devtools": "^4.7.1"
1717
},
1818
"devDependencies": {
19-
"@vitejs/plugin-react": "^2.0.0",
20-
"vite": "^3.0.0"
19+
"@vitejs/plugin-react": "^4.0.0",
20+
"vite": "^4.2.0"
2121
},
2222
"browserslist": {
2323
"production": [

examples/react/basic-typescript/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"axios": "^0.26.1",
11+
"axios": "^1.4.0",
1212
"react": "^18.0.0",
1313
"react-dom": "^18.0.0",
1414
"@tanstack/react-query": "^4.7.1",
@@ -18,13 +18,13 @@
1818
},
1919
"devDependencies": {
2020
"@tanstack/eslint-plugin-query": "^4.13.0",
21-
"@types/react": "^17.0.3",
22-
"@types/react-dom": "^17.0.3",
23-
"@vitejs/plugin-react": "^2.0.0",
21+
"@types/react": "^18.0.14",
22+
"@types/react-dom": "^18.0.5",
23+
"@vitejs/plugin-react": "^4.0.0",
2424
"eslint": "^8.34.0",
2525
"eslint-config-prettier": "^8.3.0",
26-
"typescript": "4.7.4",
27-
"vite": "^3.0.0"
26+
"typescript": "^5.0.4",
27+
"vite": "^4.2.0"
2828
},
2929
"browserslist": {
3030
"production": [

examples/react/basic/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"dependencies": {
1111
"@tanstack/react-query": "^4.7.1",
1212
"@tanstack/react-query-devtools": "^4.7.1",
13-
"axios": "^0.21.1",
13+
"axios": "^1.4.0",
1414
"react": "^18.0.0",
1515
"react-dom": "^18.0.0"
1616
},
1717
"devDependencies": {
1818
"@tanstack/eslint-plugin-query": "^4.13.0",
19-
"@vitejs/plugin-react": "^2.0.0",
20-
"vite": "^3.0.0"
19+
"@vitejs/plugin-react": "^4.0.0",
20+
"vite": "^4.2.0"
2121
},
2222
"browserslist": {
2323
"production": [

examples/react/default-query-function/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"axios": "^0.26.1",
11+
"axios": "^1.4.0",
1212
"react": "^18.0.0",
1313
"react-dom": "^18.0.0",
1414
"@tanstack/react-query": "^4.7.1",
1515
"@tanstack/react-query-devtools": "^4.7.1"
1616
},
1717
"devDependencies": {
18-
"@vitejs/plugin-react": "^2.0.0",
19-
"vite": "^3.0.0"
18+
"@vitejs/plugin-react": "^4.0.0",
19+
"vite": "^4.2.0"
2020
},
2121
"browserslist": {
2222
"production": [

examples/react/infinite-query-with-max-pages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7-
"axios": "^0.21.1",
7+
"axios": "^1.4.0",
88
"isomorphic-unfetch": "3.0.0",
99
"next": "12.2.2",
1010
"react": "^18.2.0",

examples/react/load-more-infinite-scroll/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7-
"axios": "^0.21.1",
7+
"axios": "^1.4.0",
88
"isomorphic-unfetch": "3.0.0",
99
"next": "12.2.2",
1010
"react": "^18.2.0",

examples/react/nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"start": "next start"
88
},
99
"dependencies": {
10-
"ky": "^0.23.0",
11-
"ky-universal": "^0.8.2",
10+
"ky": "^0.33.0",
11+
"ky-universal": "^0.11.0",
1212
"next": "12.2.2",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0",

examples/react/offline/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"dependencies": {
1111
"@tanstack/react-location": "^3.7.0",
12-
"ky": "^0.30.0",
12+
"ky": "^0.33.0",
1313
"msw": "^0.39.2",
1414
"react": "^18.0.0",
1515
"react-dom": "^18.0.0",
@@ -20,8 +20,8 @@
2020
"@tanstack/query-sync-storage-persister": "^4.7.1"
2121
},
2222
"devDependencies": {
23-
"@vitejs/plugin-react": "^2.0.0",
24-
"vite": "^3.0.0"
23+
"@vitejs/plugin-react": "^4.0.0",
24+
"vite": "^4.2.0"
2525
},
2626
"browserslist": {
2727
"production": [

0 commit comments

Comments
 (0)