Skip to content

Commit 91f4a6b

Browse files
chore: Regenerate alpha lockfile (#5477)
1 parent 5650559 commit 91f4a6b

File tree

30 files changed

+870
-936
lines changed

30 files changed

+870
-936
lines changed

examples/react/auto-refetching/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"@tanstack/react-query": "^5.0.0-alpha.38",
88
"@tanstack/react-query-devtools": "^5.0.0-alpha.38",
99
"axios": "^1.4.0",
10-
"isomorphic-unfetch": "3.0.0",
11-
"next": "12.2.2",
10+
"isomorphic-unfetch": "4.0.2",
11+
"next": "^13.4.4",
1212
"react": "^18.2.0",
1313
"react-dom": "^18.2.0"
1414
},

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7+
"@tanstack/react-query": "^5.0.0-alpha.38",
8+
"@tanstack/react-query-devtools": "^5.0.0-alpha.38",
79
"axios": "^1.4.0",
8-
"isomorphic-unfetch": "3.0.0",
9-
"next": "12.2.2",
10+
"isomorphic-unfetch": "4.0.2",
11+
"next": "^13.4.4",
1012
"react": "^18.2.0",
1113
"react-dom": "^18.2.0",
12-
"react-intersection-observer": "^8.33.1",
13-
"@tanstack/react-query": "^5.0.0-alpha.38",
14-
"@tanstack/react-query-devtools": "^5.0.0-alpha.38"
14+
"react-intersection-observer": "^8.33.1"
1515
},
1616
"scripts": {
1717
"dev": "next",

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7+
"@tanstack/react-query": "^5.0.0-alpha.38",
8+
"@tanstack/react-query-devtools": "^5.0.0-alpha.38",
79
"axios": "^1.4.0",
8-
"isomorphic-unfetch": "3.0.0",
9-
"next": "12.2.2",
10+
"isomorphic-unfetch": "4.0.2",
11+
"next": "^13.4.4",
1012
"react": "^18.2.0",
1113
"react-dom": "^18.2.0",
12-
"react-intersection-observer": "^8.33.1",
13-
"@tanstack/react-query": "^5.0.0-alpha.38",
14-
"@tanstack/react-query-devtools": "^5.0.0-alpha.38"
14+
"react-intersection-observer": "^8.33.1"
1515
},
1616
"scripts": {
1717
"dev": "next",

examples/react/load-more-infinite-scroll/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function Example() {
4848
if (inView) {
4949
fetchNextPage()
5050
}
51-
}, [inView])
51+
}, [fetchNextPage, inView])
5252

5353
return (
5454
<div>
@@ -110,7 +110,7 @@ function Example() {
110110
)}
111111
<hr />
112112
<Link href="/about">
113-
<a>Go to another page</a>
113+
Go to another page
114114
</Link>
115115
<ReactQueryDevtools initialIsOpen />
116116
</div>

examples/react/nextjs/components/Header/index.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ export const Header = () => {
77

88
return (
99
<header>
10-
<Link href="/">
11-
<a className={pathname === '/' ? 'is-active' : ''}>Home</a>
10+
<Link href="/" className={pathname === '/' ? 'is-active' : ''}>
11+
Home
1212
</Link>
13-
<Link href="/client-only">
14-
<a className={pathname === '/client-only' ? 'is-active' : ''}>
15-
Client-Only
16-
</a>
13+
<Link href="/client-only" className={pathname === '/client-only' ? 'is-active' : ''}>
14+
Client-Only
1715
</Link>
1816
<style jsx>{`
1917
header {

examples/react/nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"start": "next start"
88
},
99
"dependencies": {
10-
"ky": "^0.33.0",
10+
"ky": "^0.33.3",
1111
"ky-universal": "^0.11.0",
12-
"next": "12.2.2",
12+
"next": "^13.4.4",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0",
1515
"@tanstack/react-query": "^5.0.0-alpha.38",

examples/react/offline/package.json

Lines changed: 1 addition & 1 deletion
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.33.0",
12+
"ky": "^0.33.3",
1313
"msw": "^0.39.2",
1414
"react": "^18.2.0",
1515
"react-dom": "^18.2.0",

examples/react/optimistic-updates-typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"@tanstack/react-query": "^5.0.0-alpha.38",
88
"@tanstack/react-query-devtools": "^5.0.0-alpha.38",
99
"axios": "^1.4.0",
10-
"isomorphic-unfetch": "3.0.0",
11-
"next": "12.2.2",
10+
"isomorphic-unfetch": "4.0.2",
11+
"next": "^13.4.4",
1212
"react": "^18.2.0",
1313
"react-dom": "^18.2.0"
1414
},

examples/react/pagination/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"@tanstack/react-query": "^5.0.0-alpha.38",
88
"@tanstack/react-query-devtools": "^5.0.0-alpha.38",
99
"axios": "^1.4.0",
10-
"isomorphic-unfetch": "3.0.0",
11-
"next": "12.2.2",
10+
"isomorphic-unfetch": "4.0.2",
11+
"next": "^13.4.4",
1212
"react": "^18.2.0",
1313
"react-dom": "^18.2.0"
1414
},

examples/react/prefetching/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {
7+
"@tanstack/react-query": "^5.0.0-alpha.38",
8+
"@tanstack/react-query-devtools": "^5.0.0-alpha.38",
79
"axios": "^1.4.0",
8-
"isomorphic-unfetch": "3.0.0",
9-
"next": "12.2.2",
10+
"isomorphic-unfetch": "4.0.2",
11+
"next": "^13.4.4",
1012
"react": "^18.2.0",
11-
"react-dom": "^18.2.0",
12-
"@tanstack/react-query": "^5.0.0-alpha.38",
13-
"@tanstack/react-query-devtools": "^5.0.0-alpha.38"
13+
"react-dom": "^18.2.0"
1414
},
1515
"scripts": {
1616
"dev": "next",

0 commit comments

Comments
 (0)