chore(deps): bump envector-go-sdk v0.1.0 → v0.1.1#121
Merged
couragehong merged 1 commit intoMay 8, 2026
Conversation
v0.1.1 lands KeysExist's WithKeyParts honoring fix (CryptoLabInc/envector-go-sdk#2), so the rune-mcp boot path's OpenKeysFromFile(WithKeyParts(KeyPartEnc)) no longer trips on the SDK's pre-flight checking for all three key slots when only EncKey is delivered to the client. This was the underlying reason the v0.4 stack appeared to "fail at configure" on a freshly-spawned MCP server: SaveEncKey wrote ~/.rune/keys/<keyID>/EncKey.json correctly, but the SDK then refused to open the key dir because EvalKey.json / SecKey.json (held only by envector cluster + Vault, by design) were absent. v0.1.1's KeysExist mirrors OpenKeysFromFile's resolveKeyParts logic, so the parts query flows through end-to-end. Removes the local `replace` directive that was used as a stop-gap while the upstream PR was in review. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
v0.1.1 lands KeysExist's WithKeyParts honoring fix (CryptoLabInc/envector-go-sdk#2), so the rune-mcp boot path's OpenKeysFromFile(WithKeyParts(KeyPartEnc)) no longer trips on the SDK's pre-flight checking for all three key slots when only EncKey is delivered to the client.
This was the underlying reason the v0.4 stack appeared to "fail at configure" on a freshly-spawned MCP server: SaveEncKey wrote ~/.rune/keys//EncKey.json correctly, but the SDK then refused to open the key dir because EvalKey.json / SecKey.json (held only by envector cluster + Vault, by design) were absent. v0.1.1's KeysExist mirrors OpenKeysFromFile's resolveKeyParts logic, so the parts query flows through end-to-end.
Removes the local
replacedirective that was used as a stop-gap while the upstream PR was in review.