chore(release): bump microsandbox to 0.7.0 - #1367
Open
appcypher wants to merge 1 commit into
Open
Conversation
Advance the Rust workspace, shared TypeScript packages, SDK release metadata, examples, and current install snippets from 0.6.9 to 0.7.0. Regenerate release lock metadata and point the parent repository at the matching MCP and skills release commits. This release includes the Windows console TTY fix, parallel release artifact builds, clearer bind-mount permission diagnostics, dependency updates, and the follow-up build fix for those diagnostics.
| [dependencies] | ||
| magnus = "0.8.2" | ||
| microsandbox_core = { package = "microsandbox", version = "=0.6.9", default-features = false, features = ["net", "ssh"] } | ||
| microsandbox_core = { package = "microsandbox", version = "=0.7.0", default-features = false, features = ["net", "ssh"] } |
There was a problem hiding this comment.
The source gem includes the standalone Cargo.lock, but this exact dependency now requires 0.7.0 while that lockfile still records the 0.6.9 dependency graph. Cargo therefore rewrites the shipped lockfile during extension compilation, making the build non-reproducible and preventing installation until the 0.7.0 crates are available.
Context Used: AGENTS.md (source)
Prompt To Fix With AI
This is a comment left during a code review.
Path: sdk/ruby/ext/microsandbox/Cargo.toml
Line: 18
Comment:
**Stale Ruby extension lockfile**
The source gem includes the standalone `Cargo.lock`, but this exact dependency now requires 0.7.0 while that lockfile still records the 0.6.9 dependency graph. Cargo therefore rewrites the shipped lockfile during extension compilation, making the build non-reproducible and preventing installation until the 0.7.0 crates are available.
**Context Used:** AGENTS.md ([source](https://github.com/superradcompany/microsandbox/blob/main/AGENTS.md))
---
For each issue above, determine whether it is valid and should be fixed. If so, fix it directly.
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.
TL;DR
Bump the microsandbox release train from 0.6.9 to 0.7.0 across Rust crates, shared packages, SDKs, TypeScript examples, MCP, and the microsandbox skill.
Description
microsandbox*Rust workspace packages and exact internal dependency pins to 0.7.0.@microsandbox/agent-client,@microsandbox/types, and the Node, Go, and Ruby SDK release metadata to 0.7.0.Test Plan
cargo fmt --all -- --checkandCI=1 MSB_HOME=/tmp/msb-release-0.7.0 cargo check --workspacepassCARGO_INCREMENTAL=0 CI=1 MSB_HOME=/tmp/msb-release-0.7.0 cargo test --workspacepasses with host permissions required by Unix-socket testsCARGO_INCREMENTAL=0 CI=1 MSB_HOME=/tmp/msb-release-0.7.0 cargo clippy --workspace -- -D warningspassesscripts/ci/publish-crates.py --validate-onlyvalidates the Rust publication waves, and npm dry-run publishes pass for all changed JavaScript packagescd sdk/go && go test -count=1 .andcd sdk/python && uv run ruff check .(deferred: Go and uv/Ruff are unavailable in this environment; the Rust workspace covers both native SDK crates)Prompt To Fix All With AI
Reviews (1): Last reviewed commit: "chore(release): bump microsandbox to 0.7..." | Re-trigger Greptile
Context used: