Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

## Unreleased

## 0.1.15 - 2026-08-08
### Added

- *(runtime)* Add one-shot sterile cell pool
- *(api)* Make sterile cell claims recoverable
- *(api)* Add one-shot sterile cell leases ([#336](https://github.com/evalops/sandboxwich/pull/336))
- *(api)* Deterministic home identity via external_key + mount visibility
- Add native Cloudflare sandbox provider

### Fixed

- Stabilize Cloudflare body bounds and defaults

### Other

- Merge sterile cell pool with resident activation
- *(activation)* Combine identity validation and proof

## 0.1.14 - 2026-08-06
### Other

Expand Down
72 changes: 36 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resolver = "3"
# Single source of truth for the version of every crate in this workspace:
# each crate sets `version.workspace = true`, and release-plz bumps this one
# field (and the changelog) in its release PR.
version = "0.1.14"
version = "0.1.15"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/evalops/sandboxwich"
Expand Down Expand Up @@ -51,7 +51,7 @@ reqwest = { version = "0.12", default-features = false, features = ["json", "mul
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
rustls-pemfile = "2.2"
rustix = { version = "1.1", features = ["fs"] }
sandboxwich-core = { version = "0.1.14", path = "crates/sandboxwich-core" }
sandboxwich-core = { version = "0.1.15", path = "crates/sandboxwich-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
Expand Down
Loading