-
Notifications
You must be signed in to change notification settings - Fork 586
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
chore: 08-wasm branch for conditional clients compatible with v8.3.x #6102
chore: 08-wasm branch for conditional clients compatible with v8.3.x #6102
Conversation
WalkthroughThe updates encompass refining the Changes
Possibly related issues
Recent Review StatusConfiguration used: CodeRabbit UI Files selected for processing (1)
Files skipped from review as they are similar to previous changes (1)
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 as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 0
Review Status
Configuration used: CodeRabbit UI
Files selected for processing (3)
- .github/mergify.yml (1 hunks)
- docs/docs/03-light-clients/04-wasm/03-integration.md (1 hunks)
- docs/docs/03-light-clients/04-wasm/09-migrations.md (1 hunks)
Additional comments not posted (3)
docs/docs/03-light-clients/04-wasm/09-migrations.md (1)
15-21
: > 📝 NOTEThis review was outside the diff hunks and was mapped to the diff hunk with the greatest overlap. Original lines [18-76]
The update to the
WasmEngine
interface and theWasmConfig
structure are clear and well-documented with the use of diff blocks. These changes reflect the necessary adjustments for compatibility from ibc-go v8.0.x to v8.3.x, including the introduction of gas limits and the transition fromResponse
toContractResult
. It's important to ensure that all dependent modules and implementations are updated accordingly to accommodate these interface changes..github/mergify.yml (1)
69-76
: The addition of the backport rule for the v0.2.x wasm ibc-go v8.3.x & wasmvm 2.0.x branch is correctly implemented and follows the structure of existing backport rules. This change aligns with the PR objectives to ensure compatibility with version 8.3.x for conditional clients using the08-wasm
branch. It's crucial to verify that the specified branches exist and are correctly named to avoid any issues with the backport process.docs/docs/03-light-clients/04-wasm/03-integration.md (1)
132-132
: The recommendation to share the same Wasm VM instance between08-wasm
andx/wasm
is a significant change that can impact how chains integrate these modules. This approach can optimize resource usage and simplify configuration. However, it's crucial to highlight the importance of not sharing directories between VM instances to prevent unexpected behavior. This advice is particularly relevant for chains upgrading to or beyondx/wasm
v0.51 and08-wasm
v0.2.0+ibc-go-v8.3-wasmvm-v2.0, where sharing the same data folder is explicitly forbidden. Chains should review their current setup to ensure compliance with these guidelines.
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.
This needs to be merged before dependabot updates wasmvm to v2.0.1, right?
Not necessarily. It also works with reapplying the label on the PR. |
Description
closes: #XXXX
Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.
docs/
).godoc
comments.Files changed
in the GitHub PR explorer.SonarCloud Report
in the comment section below once CI passes.Summary by CodeRabbit
Chores
Documentation
WasmEngine
interface updates.