Skip to content

Commit 0546a02

Browse files
nikgrafCopilot
andauthored
upgrade dependencies (#511)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent ed960bc commit 0546a02

25 files changed

Lines changed: 3066 additions & 4836 deletions

File tree

.changeset/many-times-wash.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"create-hypergraph": patch
3+
"@graphprotocol/hypergraph-react": patch
4+
"@graphprotocol/hypergraph": patch
5+
---
6+
7+
upgrade dependencies
8+

apps/connect/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,35 @@
1414
"check:fix": "pnpm run lint:fix && pnpm run format"
1515
},
1616
"dependencies": {
17-
"@base-ui-components/react": "1.0.0-beta.1",
17+
"@base-ui-components/react": "1.0.0-beta.2",
1818
"@graphprotocol/grc-20": "^0.24.1",
1919
"@graphprotocol/hypergraph": "workspace:*",
2020
"@graphprotocol/hypergraph-react": "workspace:*",
2121
"@heroicons/react": "^2.2.0",
22-
"@privy-io/react-auth": "^2.21.2",
23-
"@tanstack/react-query": "^5.75.5",
24-
"@tanstack/react-router": "^1.120.2",
25-
"@tanstack/react-router-devtools": "^1.122.0",
26-
"@xstate/store": "^3.5.1",
22+
"@privy-io/react-auth": "^2.21.4",
23+
"@tanstack/react-query": "^5.85.5",
24+
"@tanstack/react-router": "^1.131.27",
25+
"@tanstack/react-router-devtools": "^1.131.27",
26+
"@xstate/store": "^3.9.2",
2727
"clsx": "^2.1.1",
28-
"effect": "^3.17.6",
28+
"effect": "^3.17.8",
2929
"graphql-request": "^7.2.0",
3030
"react": "^19.1.1",
3131
"react-dom": "^19.1.1",
3232
"tailwind-merge": "^3.3.1",
33-
"viem": "^2.30.6",
34-
"vite": "^6.3.5"
33+
"viem": "^2.34.0",
34+
"vite": "^7.1.3"
3535
},
3636
"devDependencies": {
37-
"@tailwindcss/vite": "^4.1.11",
38-
"@tanstack/router-plugin": "^1.120.2",
39-
"@types/node": "^24.1.0",
40-
"@types/react": "^19.1.9",
37+
"@tailwindcss/vite": "^4.1.12",
38+
"@tanstack/router-plugin": "^1.131.27",
39+
"@types/node": "^24.3.0",
40+
"@types/react": "^19.1.10",
4141
"@types/react-dom": "^19.1.7",
42-
"@vitejs/plugin-react": "^4.4.1",
42+
"@vitejs/plugin-react": "^5.0.1",
4343
"prettier": "^3.6.2",
4444
"prettier-plugin-tailwindcss": "^0.6.14",
45-
"tailwindcss": "^4.1.11",
45+
"tailwindcss": "^4.1.12",
4646
"unplugin-fonts": "^1.4.0",
4747
"vite-plugin-node-polyfills": "^0.24.0",
4848
"vite-plugin-svgr": "^4.3.0"

apps/connect/src/routeTree.gen.ts

Lines changed: 38 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -10,85 +10,44 @@
1010

1111
import { createFileRoute } from '@tanstack/react-router'
1212

13-
// Import Routes
13+
import { Route as rootRouteImport } from './routes/__root'
14+
import { Route as AuthenticateRouteImport } from './routes/authenticate'
15+
import { Route as IndexRouteImport } from './routes/index'
1416

15-
import { Route as rootRoute } from './routes/__root'
16-
import { Route as AuthenticateImport } from './routes/authenticate'
17-
import { Route as IndexImport } from './routes/index'
17+
const LoginLazyRouteImport = createFileRoute('/login')()
1818

19-
// Create Virtual Routes
20-
21-
const LoginLazyImport = createFileRoute('/login')()
22-
23-
// Create/Update Routes
24-
25-
const LoginLazyRoute = LoginLazyImport.update({
19+
const LoginLazyRoute = LoginLazyRouteImport.update({
2620
id: '/login',
2721
path: '/login',
28-
getParentRoute: () => rootRoute,
22+
getParentRoute: () => rootRouteImport,
2923
} as any).lazy(() => import('./routes/login.lazy').then((d) => d.Route))
30-
31-
const AuthenticateRoute = AuthenticateImport.update({
24+
const AuthenticateRoute = AuthenticateRouteImport.update({
3225
id: '/authenticate',
3326
path: '/authenticate',
34-
getParentRoute: () => rootRoute,
27+
getParentRoute: () => rootRouteImport,
3528
} as any)
36-
37-
const IndexRoute = IndexImport.update({
29+
const IndexRoute = IndexRouteImport.update({
3830
id: '/',
3931
path: '/',
40-
getParentRoute: () => rootRoute,
32+
getParentRoute: () => rootRouteImport,
4133
} as any)
4234

43-
// Populate the FileRoutesByPath interface
44-
45-
declare module '@tanstack/react-router' {
46-
interface FileRoutesByPath {
47-
'/': {
48-
id: '/'
49-
path: '/'
50-
fullPath: '/'
51-
preLoaderRoute: typeof IndexImport
52-
parentRoute: typeof rootRoute
53-
}
54-
'/authenticate': {
55-
id: '/authenticate'
56-
path: '/authenticate'
57-
fullPath: '/authenticate'
58-
preLoaderRoute: typeof AuthenticateImport
59-
parentRoute: typeof rootRoute
60-
}
61-
'/login': {
62-
id: '/login'
63-
path: '/login'
64-
fullPath: '/login'
65-
preLoaderRoute: typeof LoginLazyImport
66-
parentRoute: typeof rootRoute
67-
}
68-
}
69-
}
70-
71-
// Create and export the route tree
72-
7335
export interface FileRoutesByFullPath {
7436
'/': typeof IndexRoute
7537
'/authenticate': typeof AuthenticateRoute
7638
'/login': typeof LoginLazyRoute
7739
}
78-
7940
export interface FileRoutesByTo {
8041
'/': typeof IndexRoute
8142
'/authenticate': typeof AuthenticateRoute
8243
'/login': typeof LoginLazyRoute
8344
}
84-
8545
export interface FileRoutesById {
86-
__root__: typeof rootRoute
46+
__root__: typeof rootRouteImport
8747
'/': typeof IndexRoute
8848
'/authenticate': typeof AuthenticateRoute
8949
'/login': typeof LoginLazyRoute
9050
}
91-
9251
export interface FileRouteTypes {
9352
fileRoutesByFullPath: FileRoutesByFullPath
9453
fullPaths: '/' | '/authenticate' | '/login'
@@ -97,43 +56,43 @@ export interface FileRouteTypes {
9756
id: '__root__' | '/' | '/authenticate' | '/login'
9857
fileRoutesById: FileRoutesById
9958
}
100-
10159
export interface RootRouteChildren {
10260
IndexRoute: typeof IndexRoute
10361
AuthenticateRoute: typeof AuthenticateRoute
10462
LoginLazyRoute: typeof LoginLazyRoute
10563
}
10664

65+
declare module '@tanstack/react-router' {
66+
interface FileRoutesByPath {
67+
'/login': {
68+
id: '/login'
69+
path: '/login'
70+
fullPath: '/login'
71+
preLoaderRoute: typeof LoginLazyRouteImport
72+
parentRoute: typeof rootRouteImport
73+
}
74+
'/authenticate': {
75+
id: '/authenticate'
76+
path: '/authenticate'
77+
fullPath: '/authenticate'
78+
preLoaderRoute: typeof AuthenticateRouteImport
79+
parentRoute: typeof rootRouteImport
80+
}
81+
'/': {
82+
id: '/'
83+
path: '/'
84+
fullPath: '/'
85+
preLoaderRoute: typeof IndexRouteImport
86+
parentRoute: typeof rootRouteImport
87+
}
88+
}
89+
}
90+
10791
const rootRouteChildren: RootRouteChildren = {
10892
IndexRoute: IndexRoute,
10993
AuthenticateRoute: AuthenticateRoute,
11094
LoginLazyRoute: LoginLazyRoute,
11195
}
112-
113-
export const routeTree = rootRoute
96+
export const routeTree = rootRouteImport
11497
._addFileChildren(rootRouteChildren)
11598
._addFileTypes<FileRouteTypes>()
116-
117-
/* ROUTE_MANIFEST_START
118-
{
119-
"routes": {
120-
"__root__": {
121-
"filePath": "__root.tsx",
122-
"children": [
123-
"/",
124-
"/authenticate",
125-
"/login"
126-
]
127-
},
128-
"/": {
129-
"filePath": "index.tsx"
130-
},
131-
"/authenticate": {
132-
"filePath": "authenticate.tsx"
133-
},
134-
"/login": {
135-
"filePath": "login.lazy.tsx"
136-
}
137-
}
138-
}
139-
ROUTE_MANIFEST_END */

apps/connect/src/routes/authenticate.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ type AuthenticateSearch = {
3030
export const Route = createFileRoute('/authenticate')({
3131
component: RouteComponent,
3232
validateSearch: (search: Record<string, unknown>): AuthenticateSearch => {
33+
const decodedData = typeof search.data === 'string' ? JSON.parse(decodeURIComponent(search.data)) : search.data;
3334
return {
34-
data: search.data,
35-
redirect: search.redirect as string,
36-
nonce: search.nonce as string,
35+
data: decodedData,
36+
redirect: typeof search.redirect === 'string' ? decodeURIComponent(search.redirect) : '',
37+
nonce: typeof search.nonce === 'string' ? decodeURIComponent(search.nonce) : '',
3738
};
3839
},
3940
});

apps/events/package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,41 +13,41 @@
1313
"@graphprotocol/hypergraph": "workspace:*",
1414
"@graphprotocol/hypergraph-react": "workspace:*",
1515
"@noble/hashes": "^1.8.0",
16-
"@radix-ui/react-avatar": "^1.1.9",
16+
"@radix-ui/react-avatar": "^1.1.10",
1717
"@radix-ui/react-icons": "^1.3.2",
1818
"@radix-ui/react-label": "^2.1.7",
19-
"@radix-ui/react-slot": "^1.2.2",
20-
"@tanstack/react-query": "^5.75.5",
21-
"@tanstack/react-router": "^1.120.2",
22-
"@tanstack/react-router-devtools": "^1.122.0",
23-
"@xstate/store": "^3.5.1",
19+
"@radix-ui/react-slot": "^1.2.3",
20+
"@tanstack/react-query": "^5.85.5",
21+
"@tanstack/react-router": "^1.131.27",
22+
"@tanstack/react-router-devtools": "^1.131.27",
23+
"@xstate/store": "^3.9.2",
2424
"class-variance-authority": "^0.7.1",
2525
"clsx": "^2.1.1",
26-
"effect": "^3.17.6",
27-
"framer-motion": "^12.10.1",
28-
"graphql-request": "^7.1.2",
26+
"effect": "^3.17.8",
27+
"framer-motion": "^12.23.12",
28+
"graphql-request": "^7.2.0",
2929
"isomorphic-ws": "^5.0.0",
30-
"lucide-react": "^0.508.0",
30+
"lucide-react": "^0.541.0",
3131
"react": "^19.1.1",
3232
"react-dom": "^19.1.1",
33-
"react-select": "^5.10.1",
33+
"react-select": "^5.10.2",
3434
"siwe": "^3.0.0",
35-
"tailwind-merge": "^3.2.0",
35+
"tailwind-merge": "^3.3.1",
3636
"tailwindcss-animate": "^1.0.7",
3737
"uuid": "^11.1.0",
38-
"viem": "^2.29.0",
39-
"vite": "^6.3.5"
38+
"viem": "^2.34.0",
39+
"vite": "^7.1.3"
4040
},
4141
"devDependencies": {
42-
"@biomejs/biome": "1.9.4",
43-
"@tailwindcss/vite": "^4.1.5",
44-
"@tanstack/router-plugin": "^1.120.2",
45-
"@types/node": "^24.2.0",
46-
"@types/react": "^19.1.9",
42+
"@biomejs/biome": "2.2.0",
43+
"@tailwindcss/vite": "^4.1.12",
44+
"@tanstack/router-plugin": "^1.131.27",
45+
"@types/node": "^24.3.0",
46+
"@types/react": "^19.1.10",
4747
"@types/react-dom": "^19.1.7",
4848
"@types/uuid": "^10.0.0",
49-
"@vitejs/plugin-react": "^4.4.1",
50-
"globals": "^16.1.0",
51-
"tailwindcss": "^4.1.5"
49+
"@vitejs/plugin-react": "^5.0.1",
50+
"globals": "^16.3.0",
51+
"tailwindcss": "^4.1.12"
5252
}
5353
}

0 commit comments

Comments
 (0)