Skip to content
Merged
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

## [Unreleased]

## [0.8.0] - 2026-05-28

### Highlights

- **Python `open()` support** — VFS-backed `open()` / `Path.open()` read, write, and append now work in the embedded Python builtin, so LLM-generated `with open("/tmp/...")` scripts run instead of failing. Host filesystem and network stay unavailable to Python ([#1800](https://github.com/everruns/bashkit/pull/1800)).
- Further `rg` parity and hardening fixes (default type globs, JSON context fanout cap, root-arg allocation) plus interpreter fixes for variable attribute/nameref persistence and persistent file descriptor validation.

### What's Changed

* ci: reclaim runner disk before disk-hungry scheduled jobs ([#1807](https://github.com/everruns/bashkit/pull/1807)) by @chaliy
* fix(rg): align r and tf default type globs with ripgrep ([#1805](https://github.com/everruns/bashkit/pull/1805)) by @chaliy
* fix(rg): cap JSON context event fanout ([#1804](https://github.com/everruns/bashkit/pull/1804)) by @chaliy
* fix(interpreter): persist var attrs and namerefs across shell state restore ([#1803](https://github.com/everruns/bashkit/pull/1803)) by @chaliy
* fix(interpreter): reject negative persistent file descriptors ([#1802](https://github.com/everruns/bashkit/pull/1802)) by @chaliy
* fix(rg): avoid root arg string cloning across candidates ([#1801](https://github.com/everruns/bashkit/pull/1801)) by @chaliy
* feat(python): support vfs-backed open ([#1800](https://github.com/everruns/bashkit/pull/1800)) by @chaliy
* feat(site): add bashkit logo assets ([#1799](https://github.com/everruns/bashkit/pull/1799)) by @chaliy
* fix(ci): bypass pnpm `--` separator that breaks napi build flag forwarding ([#1798](https://github.com/everruns/bashkit/pull/1798)) by @chaliy
* fix(site): add homepage canonical link header ([#1797](https://github.com/everruns/bashkit/pull/1797)) by @chaliy

**Full Changelog**: https://github.com/everruns/bashkit/compare/v0.7.2...v0.8.0

## [0.7.2] - 2026-05-27

### Highlights
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resolver = "2"
members = ["crates/*"]

[workspace.package]
version = "0.7.2"
version = "0.8.0"
edition = "2024"
license = "MIT"
authors = ["Everruns"]
Expand Down
2 changes: 1 addition & 1 deletion crates/bashkit-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ scripted_tool = ["bashkit/scripted_tool"]
interactive = ["dep:rustyline", "dep:terminal_size", "dep:signal-hook"]

[dependencies]
bashkit = { path = "../bashkit", version = "0.7.2", features = ["http_client", "git", "jq"] }
bashkit = { path = "../bashkit", version = "0.8.0", features = ["http_client", "git", "jq"] }
tokio = { workspace = true, features = ["macros", "net", "rt", "rt-multi-thread", "time"] }
clap.workspace = true
anyhow.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/bashkit-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@everruns/bashkit",
"version": "0.7.2",
"version": "0.8.0",
"description": "Sandboxed bash interpreter for JavaScript/TypeScript",
"packageManager": "pnpm@10.33.0",
"main": "wrapper.js",
Expand Down
Loading