-
Notifications
You must be signed in to change notification settings - Fork 4
chore(deps): update minor and patch dependencies #425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: fix/security
Are you sure you want to change the base?
Changes from all commits
4b34dfe
9ab7ee5
49b989f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,32 +26,32 @@ | |
| }, | ||
| "dependencies": { | ||
| "@bootnodedev/db-subgraph": "^0.1.2", | ||
| "@chakra-ui/react": "^3.17.0", | ||
| "@chakra-ui/react": "^3.34.0", | ||
| "@emotion/react": "^11.14.0", | ||
| "@lifi/sdk": "^3.6.13", | ||
| "@lifi/sdk": "^3.16.3", | ||
| "@rainbow-me/rainbowkit": "^2.2.9", | ||
| "@reown/appkit": "^1.8.10", | ||
| "@reown/appkit-adapter-wagmi": "^1.8.10", | ||
| "@t3-oss/env-core": "^0.13.4", | ||
| "@tanstack/react-query": "^5.75.7", | ||
| "@tanstack/react-router": "^1.120.3", | ||
| "@tanstack/react-virtual": "^3.13.8", | ||
| "@reown/appkit": "^1.8.19", | ||
| "@reown/appkit-adapter-wagmi": "^1.8.19", | ||
| "@t3-oss/env-core": "^0.13.11", | ||
| "@tanstack/react-query": "^5.95.2", | ||
| "@tanstack/react-router": "^1.168.3", | ||
| "@tanstack/react-virtual": "^3.13.23", | ||
|
Comment on lines
+29
to
+38
|
||
| "@uniswap/default-token-list": "^13.33.0", | ||
| "@vercel/analytics": "^1.5.0", | ||
| "@web3icons/core": "^4.0.13", | ||
| "@web3icons/react": "^4.0.13", | ||
| "connectkit": "^1.9.0", | ||
| "graphql": "^16.11.0", | ||
| "graphql": "^16.13.1", | ||
| "graphql-request": "^7.1.2", | ||
| "next-themes": "^0.4.6", | ||
| "porto": "^0.2.28", | ||
| "react": "19.1.0", | ||
| "react-dom": "19.1.0", | ||
| "react-error-boundary": "^6.0.0", | ||
| "react-jazzicon": "^1.0.4", | ||
| "react-number-format": "^5.4.4", | ||
| "react-number-format": "^5.4.5", | ||
| "use-debounce": "^10.0.4", | ||
| "viem": "^2.37.9", | ||
| "viem": "^2.47.6", | ||
|
Comment on lines
43
to
+54
|
||
| "wagmi": "^2.17.5", | ||
| "zod": "^3.24.4" | ||
| }, | ||
|
|
@@ -62,10 +62,10 @@ | |
| "@graphql-codegen/cli": "^5.0.6", | ||
| "@graphql-typed-document-node/core": "^3.2.0", | ||
| "@parcel/watcher": "^2.5.1", | ||
| "@tanstack/react-query-devtools": "^5.75.7", | ||
| "@tanstack/router-cli": "^1.120.3", | ||
| "@tanstack/router-devtools": "^1.120.3", | ||
| "@tanstack/router-plugin": "^1.120.3", | ||
| "@tanstack/react-query-devtools": "^5.95.2", | ||
| "@tanstack/router-cli": "^1.166.18", | ||
| "@tanstack/router-devtools": "^1.166.11", | ||
| "@tanstack/router-plugin": "^1.167.4", | ||
| "@testing-library/jest-dom": "^6.6.3", | ||
| "@testing-library/react": "^16.3.0", | ||
| "@testing-library/user-event": "^14.6.1", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tanstack/react-queryand@tanstack/react-routerare bumped, but the related dev tooling packages remain on much older version ranges (e.g., @tanstack/react-query-devtools, @tanstack/router-cli/router-devtools/router-plugin). Previously these were kept in sync; keeping them aligned helps avoid CLI/codegen/devtools incompatibilities with the runtime packages. Consider bumping the corresponding devDependencies to matching (or at least compatible) versions as part of this change.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed. The devtools packages (@tanstack/router-cli, router-devtools, router-plugin) do not follow the same release cadence as the runtime — no 1.168.3 release exists for them. Updated to the actual latest available: router-cli 1.166.18, router-devtools 1.166.11, router-plugin 1.167.4, react-query-devtools 5.95.2. Lockfile regenerated.