build: update freenet-stdlib to 0.1.33 and add blocking_subscribe field#80
Merged
iduartgomez merged 1 commit intomainfrom Feb 6, 2026
Merged
build: update freenet-stdlib to 0.1.33 and add blocking_subscribe field#80iduartgomez merged 1 commit intomainfrom
iduartgomez merged 1 commit intomainfrom
Conversation
iduartgomez
added a commit
to freenet/freenet-core
that referenced
this pull request
Feb 6, 2026
…cribe River needs freenet-stdlib 0.1.33 for the new blocking_subscribe field. See freenet/river#80. Revert this after river PR merges to main.
iduartgomez
added a commit
to freenet/freenet-core
that referenced
this pull request
Feb 6, 2026
1b8d023 to
e2d5c4f
Compare
Add `blocking_subscribe: false` to all ContractRequest::Put and ContractRequest::Get constructors to match the new field added in freenet-stdlib 0.1.33 (freenet/freenet-stdlib#50).
e2d5c4f to
3cc0932
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
freenet-stdlib 0.1.33 added a new
blocking_subscribe: boolfield toContractRequest::PutandContractRequest::Get(freenet/freenet-stdlib#50). This is a breaking change for Rust struct literal constructors.Solution
Add
blocking_subscribe: falseto all 15ContractRequest::PutandContractRequest::Getconstruction sites across the codebase. This preserves the current async subscription behavior.Testing
cargo check -p riverctlpassesfalse(existing async behavior)Fixes
Required by freenet/freenet-core#2879