Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/auth-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@
"ethers": "^5.7.1",
"siwe": "^2.3.2",
"siwe-recap": "0.0.2-alpha.0",
"viem": "2.29.4",
"zod": "3.24.3",
"@ethersproject/transactions": "5.7.0"
},
"peerDependencies": {
"viem": "^2.29.4"
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version constraint changed from exact version '2.29.4' to compatible version '^2.29.4'. This allows patch and minor version updates which could introduce breaking changes in viem's API. Consider using a more restrictive constraint like '~2.29.4' to only allow patch updates, or document the supported viem version range.

Suggested change
"viem": "^2.29.4"
"viem": "~2.29.4"

Copilot uses AI. Check for mistakes.
}
}
4 changes: 2 additions & 2 deletions packages/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
"jose": "^4.14.4",
"siwe": "^2.3.2",
"stytch": "^12.4.0",
"viem": "2.29.4",
"zod": "3.24.3"
},
"peerDependencies": {
"tslib": "^2.3.0"
"tslib": "^2.3.0",
"viem": "^2.29.4"
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version constraint changed from exact version '2.29.4' to compatible version '^2.29.4'. This allows patch and minor version updates which could introduce breaking changes in viem's API. Consider using a more restrictive constraint like '~2.29.4' to only allow patch updates, or document the supported viem version range.

Suggested change
"viem": "^2.29.4"
"viem": "~2.29.4"

Copilot uses AI. Check for mistakes.
},
"browser": {
"crypto": false,
Expand Down
4 changes: 3 additions & 1 deletion packages/lit-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
"dependencies": {
"@lit-protocol/uint8arrays": "7.1.1",
"bs58": "^6.0.0",
"viem": "2.29.4",
"zod": "3.24.3"
},
"peerDependencies": {
"viem": "^2.29.4"
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version constraint changed from exact version '2.29.4' to compatible version '^2.29.4'. This allows patch and minor version updates which could introduce breaking changes in viem's API. Consider using a more restrictive constraint like '~2.29.4' to only allow patch updates, or document the supported viem version range.

Suggested change
"viem": "^2.29.4"
"viem": "~2.29.4"

Copilot uses AI. Check for mistakes.
}
}
4 changes: 3 additions & 1 deletion packages/networks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@
"node-localstorage": "^3.0.5",
"pino": "^9.6.0",
"pino-caller": "^4.0.0",
"viem": "2.29.4",
"zod": "3.24.3",
"@noble/hashes": "^1.8.0"
},
"peerDependencies": {
"viem": "^2.29.4"
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version constraint changed from exact version '2.29.4' to compatible version '^2.29.4'. This allows patch and minor version updates which could introduce breaking changes in viem's API. Consider using a more restrictive constraint like '~2.29.4' to only allow patch updates, or document the supported viem version range.

Suggested change
"viem": "^2.29.4"
"viem": "~2.29.4"

Copilot uses AI. Check for mistakes.
},
"gitHead": "0d7334c2c55f448e91fe32f29edc5db8f5e09e4b",
"tags": [
"universal"
Expand Down
Loading