-
Notifications
You must be signed in to change notification settings - Fork 88
fix(auth,auth-helpers,lit-client,networks): set viem as a peer depend… #957
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
Changes from 1 commit
ed087b0
32ca600
da06f64
97d8eb1
bb9b10f
9d60bfa
3b9733c
f532c9e
6e1cf32
d7bcdfe
b1d6f7a
ef9fdd1
6eaeb6a
8562518
588fc52
d01c43c
fb9a132
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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" | ||||||
|
||||||
| "viem": "^2.29.4" | |
| "viem": "~2.29.4" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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" | ||||||
|
||||||
| "viem": "^2.29.4" | |
| "viem": "~2.29.4" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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" | ||||||
|
||||||
| "viem": "^2.29.4" | |
| "viem": "~2.29.4" |
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.
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.