-
Notifications
You must be signed in to change notification settings - Fork 7
chore: synchronize viem dependency #211
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
Conversation
WalkthroughThe pull request modifies the Changes
Possibly related PRs
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
🔇 Additional comments (2)packages/create-invoice-form/package.json (2)Line range hint The version bump to 0.10.0 is appropriate for updating the viem dependency, as it's a maintenance change that shouldn't introduce breaking changes (staying within viem's major version 2.x). Also applies to: 40-40
The viem update from ^2.9.15 to ^2.21.27 looks good, but let's verify compatibility with @wagmi/core ^2.13.8. ✅ Verification successful✓ Viem version update is compatible with wagmi The update to viem ^2.21.27 is compatible with @wagmi/core ^2.13.8, as wagmi requires viem "2.x" which matches our updated version. The version bump maintains the same major version (2) ensuring backward compatibility. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check wagmi's viem peer dependency requirements
# Get wagmi package.json to check its viem peer dependency
curl -s https://registry.npmjs.org/@wagmi/core/2.13.8 | jq -r '.peerDependencies.viem'
# List recent releases to understand the upgrade path
curl -s https://registry.npmjs.org/viem | jq -r '.time | to_entries | .[] | select(.key | startswith("2.")) | .key' | tail -n 5
Length of output: 260 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Problem
The viem dependency was not synchronized with the Request Invoicing (https://github.com/RequestNetwork/invoicing-template)
(The app works, but it's good practice to synchronize the dependencies).
Changes