Skip to content

Traverse v0.6.0

Latest

Choose a tag to compare

@enricopiovesan enricopiovesan released this 27 Jun 17:38
Immutable release. Only release title and notes can be modified.
84cdf47

Traverse v0.6.0

Release date: 2026-06-27

Traverse v0.6.0 is the governed model dependency execution release. It keeps the v0.5.0 public CLI app registration baseline intact while adding the runtime surface needed for downstream app hosts to execute app-declared model dependencies without provider-specific logic in WASM agents.

Consumers that only need public app validation and registration can remain pinned to v0.5.0. Consumers that need provider-neutral governed inference execution from registered app state should move to v0.6.0.

Highlights

  • Adds a runtime-owned governed model dependency execution surface for app-declared traverse.inference.generate dependencies.
  • Loads persisted app model_dependencies from CLI-produced workspace registration state into runtime application registrations.
  • Revalidates model dependencies at execution time, invokes the existing real local Ollama-backed provider, and returns public ModelResolutionEvidence with inference output.
  • Updates WASM agent authoring guidance so downstream agents no longer own provider-specific model API calls.
  • Preserves provider selection, provider config, and model readiness evidence inside Traverse-owned runtime boundaries.
  • Updates repository-facing metadata and README links for traverse-framework/Traverse.

Compatibility Notes

  • Traverse remains a 0.x project. Public surfaces are governed and validated, but compatibility can still move before a 1.0 stability commitment.
  • The v0.5.0 public CLI app registration and durable workspace-state loading surfaces remain available.
  • The v0.6.0 additions are backward-compatible in intent: they add a runtime execution bridge for governed model dependencies rather than changing existing app registration, HTTP/JSON, MCP, or workflow semantics.
  • Downstream WASM agents should depend on Traverse's governed inference interface and app manifest model declarations, not provider-specific SDKs, URLs, or credentials.
  • No cross-platform binary package is attached to this release. The release publishes source and release notes.

Validation

Release preparation must pass these local gates before tagging:

cargo test
cargo clippy -- -D warnings
bash scripts/ci/repository_checks.sh
bash scripts/ci/wasm_agent_authoring_guide_smoke.sh
bash scripts/ci/coverage_gate.sh
git diff --check

The GitHub PR checks must also pass:

  • repository-checks
  • coverage-gate
  • pr-hygiene
  • spec-alignment

Traceability

  • Release issue: #497
  • Governing specs: 001-foundation-v0-1, 004-spec-alignment-gate, 006-runtime-request-execution, 045-governed-model-dependency-resolution, 046-public-cli-app-registration
  • Included PRs: #492, #493, #496
  • Included issues: #491, #495, #494