-
Notifications
You must be signed in to change notification settings - Fork 22
Bump Holochain RC to 0.6.0-rc.2 #631
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
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
Verify dependency compatibility and testing coverage for rc.2 release.
This version bump to 0.6.0-rc.2 requires validation across the codebase, particularly given the learnings from prior rc.0 work around HDI/HDK version pairing. Additionally, the "backend-go-pion" feature flag is newly introduced and should be verified.
Please address the following before merging:
HDI/HDK Compatibility: From previous work (PR 630), HDI 0.7.0-rc.0 and HDK 0.6.0-rc.0 were the correct pairing for rc.0. Confirm whether rc.2 changes this pairing and verify all bootstrap language
Cargo.tomlfiles (inbootstrap-languages/*/hc-dna/zomes/*/Cargo.toml) have compatible HDI/HDK versions.Feature Flag Verification: The "backend-go-pion" feature is newly added to the holochain dependency. Confirm this feature is required, stable, and compatible with the rest of the codebase.
Cross-version Compatibility: Verify that
holochain_cli_run_local_services(0.5.0-dev.12) andkitsune_p2p_types(0.5.0-dev.9) remain compatible with holochain 0.6.0-rc.2.Testing: Confirm this rc.2 version has been tested in the environment and that all critical paths function as expected.
🏁 Script executed:
Length of output: 0
🏁 Script executed:
Length of output: 938
🏁 Script executed:
Length of output: 1195
🏁 Script executed:
Length of output: 5893
🏁 Script executed:
Length of output: 8303
🌐 Web query:
💡 Result:
Yes — Holochain still exposes a backend-go-pion feature (the Pion WebRTC backend) as an optional WebRTC backend, but libdatachannel is the default. [1][2]
Sources:
[1] tx5 crate docs (describes backend-go-pion vs backend-libdatachannel).
[2] Holochain changelog (notes switch to libdatachannel as default while keeping go-pion as an option).
🏁 Script executed:
Length of output: 738
🏁 Script executed:
Length of output: 4205
Bootstrap language holochain versions must be updated to rc.2 to match rust-executor upgrade.
Verification reveals a critical version mismatch: rust-executor has been upgraded to holochain 0.6.0-rc.2 (branch
0.6.0-rc.2-coasys), but all bootstrap language zome dependencies remain pinned to 0.6.0-rc.0 (branch0.6.0-rc.0-coasys). These are on different git branches and incompatible RC versions, which will cause build and runtime failures.Update the following files to use version
0.6.0-rc.2with branch0.6.0-rc.2-coasys:bootstrap-languages/agent-language/hc-dna/zomes/agent_store/Cargo.toml: hdk, holo_hashbootstrap-languages/agent-language/hc-dna/zomes/agent_store_integrity/Cargo.toml: hdi, hdk, holo_hashbootstrap-languages/direct-message-language/hc-dna/zomes/direct-message/Cargo.toml: hdk, holo_hashbootstrap-languages/direct-message-language/hc-dna/zomes/direct-message-integrity/Cargo.toml: hdi, holo_hashbootstrap-languages/file-storage/hc-dna/zomes/file_storage/Cargo.toml: hdk, holo_hashbootstrap-languages/file-storage/hc-dna/zomes/integrity/Cargo.toml: hdi, hdk, holo_hashbootstrap-languages/p-diff-sync/hc-dna/zomes/perspective_diff_sync/Cargo.toml: hdi, hdkbootstrap-languages/p-diff-sync/hc-dna/zomes/perspective_diff_sync_integrity/Cargo.toml: hdi, hdk, holo_hashAlso verify that
holochain_cli_run_local_services(0.5.0-dev.12) andkitsune_p2p_types(0.5.0-dev.9) remain compatible with the new rc.2 versions, or update them accordingly.