Skip to content

Releases: everruns/bashkit

Release v0.1.14

28 Mar 12:35
7b7e2a0

Choose a tag to compare

Highlights

  • Massive Bash compatibility push — 25+ interpreter fixes covering errexit, namerefs, associative arrays, arithmetic expansion, redirects, glob patterns, and ANSI-C quoting
  • AWK engine hardened — 8 fixes for regex literals, newline handling, printf, keyword tokenization, and multi-file FILENAME support
  • New Bash featuresset -a (allexport), BASH_SOURCE array, exec with command replacement, declare -f, compgen -c PATH scanning
  • Prebuilt CLI binaries — macOS (ARM64/x86_64) and Linux x86_64 binaries now published to GitHub Releases with Homebrew formula
  • Dependency upgrades — jaq 3.0, digest crates 0.11

What's Changed

  • feat(deps): upgrade jaq to 3.0, digest crates to 0.11 (#893) by @chaliy
  • chore(deps): require major version upgrades in maintenance checklist (#892) by @chaliy
  • ci(js): add Bun and Deno to JS CI matrix with runtime-compat tests (#889) by @chaliy
  • fix(interpreter): handle compound array assignment in local builtin (#888) by @chaliy
  • fix(interpreter): expand special variables ($#, $?, etc.) in arithmetic (#887) by @chaliy
  • chore: pre-release maintenance (test counts, fuzz fix, code cleanup) (#885) by @chaliy
  • fix(interpreter): set -e should not trigger on compound commands with && chain failure (#879) by @chaliy
  • fix(interpreter): expand assoc array keys with command substitutions (#878) by @chaliy
  • feat(release): add prebuilt CLI binary builds and Homebrew formula (#871) by @chaliy
  • fix(builtins): preserve raw bytes from /dev/urandom through pipeline (#870) by @chaliy
  • fix(interpreter): resolve namerefs in parameter expansion for assoc array subscripts (#869) by @chaliy
  • fix(interpreter): propagate errexit_suppressed through compound commands (#868) by @chaliy
  • test(parser): unskip parse_unexpected_do and parse_unexpected_rbrace (#866) by @chaliy
  • fix(parser): expand $'\n' ANSI-C quoting in concatenated function args (#865) by @chaliy
  • fix(interpreter): treat assoc array subscripts as literal strings (#864) by @chaliy
  • fix(interpreter): correct left-to-right redirect ordering for fd dup + file combos (#863) by @chaliy
  • fix(parser): handle $'...' ANSI-C quoting in parameter expansion patterns (#856) by @chaliy
  • fix(awk): check word boundary before emitting keyword tokens (#859) by @chaliy
  • fix(builtins): preserve full path in ls output for file arguments (#858) by @chaliy
  • fix(builtins): suppress rg line numbers by default (non-tty behavior) (#857) by @chaliy
  • fix(interpreter): resolve nameref for ${!ref[@]} key enumeration (#855) by @chaliy
  • fix(interpreter): fire EXIT trap inside command substitution subshell (#854) by @chaliy
  • fix(js): update exec security test for sandbox-safe exec behavior (#851) by @chaliy
  • fix(interpreter): reset last_exit_code in VFS subprocess isolation (#850) by @chaliy
  • fix(interpreter): treat invalid glob bracket expressions as literals (#845) by @chaliy
  • fix(awk): support backslash-newline line continuation (#841) by @chaliy
  • fix(awk): treat # inside regex literals as literal, not comment (#840) by @chaliy
  • fix(interpreter): resolve namerefs before nounset check (#839) by @chaliy
  • fix(builtins): sort -n extracts leading numeric prefix from strings (#838) by @chaliy
  • feat(interpreter): implement BASH_SOURCE array variable (#832) by @chaliy
  • fix(awk): treat newlines as statement separators in action blocks (#831) by @chaliy
  • feat(api): add BashBuilder::tty() for configurable terminal detection (#830) by @chaliy
  • fix(awk): accept expressions as printf format string (#829) by @chaliy
  • fix(vfs): preserve raw bytes when reading /dev/urandom (#828) by @chaliy
  • fix(awk): evaluate regex literals against $0 in boolean context (#827) by @chaliy
  • fix(parser): preserve double quotes inside $() in double-quoted strings (#826) by @chaliy
  • fix(interpreter): set -e respects AND-OR lists in functions and loops (#824) by @chaliy
  • test(allexport): add regression tests for set -a behavior (#823) by @chaliy
  • fix(builtins): implement declare -f for function display and lookup (#822) by @chaliy
  • feat(interpreter): nameref resolution for associative array operations (#821) by @chaliy
  • test(awk): add spec tests for delete array (already implemented) (#820) by @chaliy
  • feat(compgen): scan PATH directories for executables in compgen -c (#819) by @chaliy
  • feat(test): configurable -t fd terminal detection (#818) by @chaliy
  • feat(awk): route /dev/stderr and /dev/stdout to interpreter streams (#817) by @chaliy
  • feat(awk): implement FILENAME built-in variable for multi-file processing (#816) by @chaliy
  • feat(interpreter): exec with command argument — execute and don't return (#815) by @chaliy
  • feat(interpreter): implement set -a (allexport) (#814) by @chaliy
  • feat(interpreter): subprocess isolation for VFS script-by-path execution (#813) by @chaliy
  • feat(interpreter): pipe stdin to VFS script execution (#812) by @chaliy
  • refactor(scripted_tool): ScriptingToolSet returns tools() instead of implementing Tool (#789) by @chaliy

Full Changelog: v0.1.13...v0.1.14

Release v0.1.13

23 Mar 01:52
2db057f

Choose a tag to compare

Highlights

  • Community contribution from @achicu: fixed find with multiple paths silently discarding results when one path is missing (#781)
  • Python/Node binding parity — both bindings now expose the same API surface (#785)
  • Live mount/unmount on running Bash instances for dynamic filesystem composition (#784)

What's Changed

  • fix(examples): exit langchain example to prevent NAPI event loop hang (#786) by @chaliy
  • feat(bindings): add Python/Node binding parity (#785) by @chaliy
  • feat(fs): expose live mount/unmount on running Bash instance (#784) by @chaliy
  • chore: add cargo-vet exemptions for jni-sys 0.3.1, 0.4.1 and jni-sys-macros 0.4.1 (#783) by @chaliy
  • fix: find with multiple paths no longer discards results on missing path (#781) by @achicu

Full Changelog: v0.1.12...v0.1.13

Release v0.1.12

21 Mar 16:12
c776525

Choose a tag to compare

Highlights

  • Restored SearchCapable/SearchProvider traits for indexed filesystem search
  • Improved text file handling across 17 builtins with shared lossy read helpers

What's Changed

  • feat(fs): restore SearchCapable/SearchProvider traits (#779)
  • refactor(builtins): adopt read_text_file helper across 17 builtins (#778)
  • chore(skills): move repo skills under .agents (#777)
  • refactor(builtins): share lossy text file reads (#775)

Full Changelog: v0.1.11...v0.1.12

Release v0.1.11

20 Mar 01:32
3eeedbd

Choose a tag to compare

Highlights

  • Second external contribution! Welcome @shubham-lohiya, who exposed the Bash class with Monty Python execution and external function handler in the Python bindings (#760) — making it easy to extend bashkit with custom Python functions
  • Browser terminal example: Bashkit now runs entirely in the browser via WebAssembly (wasm32-wasip1-threads), with a single-file terminal UI — no framework required
  • New features: structured execution trace events, per-instance memory budgets, static AST budget validation, head -c byte mode, IFS separator + $_ tracking, final environment state in ExecResult
  • Security hardening: blackbox security audit surfaced 15 vulnerabilities — all fixed; readonly variable bypass blocked; stack overflow, memory exhaustion, and source recursion depth limits enforced; shell injection prevented in JS VFS helpers
  • Major refactoring: FileSystem split into core + FileSystemExt, shared ArgParser extracted, register_builtins! macro replacing 120+ insert calls, ShellRef Context API, shell options split-brain fix

What's Changed

  • chore: pre-release maintenance — docs, fuzz, threat model, cargo-vet (#774)
  • fix(interpreter): stabilize command-not-found suggestions (#773)
  • refactor: remove blanket clippy::unwrap_used allows (#772)
  • chore: move /ship from command to skill format (#771)
  • refactor(fs): split FileSystem into core + FileSystemExt (#770)
  • refactor(builtins): extract shared ArgParser (#744) (#769)
  • refactor: replace hardcoded if-name dispatch with ShellRef Context API (#767)
  • refactor: break up 6 monster functions into smaller helpers (#766)
  • refactor(interpreter): fix shell options split brain (#736) (#764)
  • refactor(builtins): replace 120+ insert calls with register_builtins! macro (#762)
  • refactor(builtins): move find/xargs/timeout execution plans from interpreter to builtins (#761)
  • feat(python): expose Bash class with Monty Python execution and external function handler (#760) by @shubham-lohiya
  • fix(git): error on non-HEAD revision in git show rev:path (#758)
  • refactor(builtins): extract git_err helper to eliminate 24 identical error wrapping lines (#757)
  • refactor(error): simplify Error enum by merging Parse/ParseAt and removing dead CommandNotFound (#756)
  • refactor(fs): remove dead SearchCapable/SearchProvider traits (#755)
  • fix(vfs): use fs.remove() for patch file deletion instead of empty write (#754)
  • refactor(interpreter): deduplicate declare/local compound assignment and flag parsing (#753)
  • refactor(builtins): extract shared search utilities from grep and rg (#752)
  • refactor: deduplicate is_valid_var_name into single pub(crate) function (#751)
  • refactor(builtins): replace magic variable hack with BuiltinSideEffect enum (#750)
  • chore(skills): add design quality review phase to ship command (#749)
  • refactor(interpreter): extract glob/pattern matching to glob.rs (#748)
  • fix(skills): delegate process-issues shipping to /ship skill (#747)
  • chore: convert process-issues command to .claude/skills/ format (#746)
  • feat: IFS separator, $_ tracking, and prefix assignment order (#724)
  • fix(deps): bump ai SDK to ^5.0.52 and override jsondiffpatch >=0.7.2 (#723)
  • fix(deps): override langsmith >=0.4.6 to fix SSRF vulnerability (#722)
  • fix(js): wrap napi structs in Arc to prevent invalid pointer access (#721)
  • fix: hex escapes, POSIX classes, DEBUG trap, noclobber, indirect arrays (#719)
  • fix(js): prevent shell injection in Bash/BashTool VFS helpers (#718)
  • fix(interpreter): prevent stack overflow in nested command substitution (#717)
  • fix(builtins): bound seq output to prevent memory exhaustion (#716)
  • feat(builtins): add head -c byte count mode (#715)
  • fix(interpreter): reset transient state between exec() calls (TM-ISO-005/006/007) (#714)
  • fix(interpreter): block readonly variable bypass via unset/declare/export (TM-INJ-019/020/021) (#713)
  • fix(interpreter): enforce execution timeout via tokio::time::timeout (TM-DOS-057) (#712)
  • fix(interpreter): source recursion depth limit (TM-DOS-056) (#711)
  • fix(interpreter): declare -a/-i and local -a with inline init (#710)
  • feat(fs): optional SearchCapable trait for indexed search (#709)
  • feat(trace): structured execution trace events (#708)
  • feat(limits): per-instance memory budget for variables/arrays/functions (#707)
  • feat(limits): YAML/template depth limits + session-level cumulative counters (#706)
  • fix(fs): OverlayFs validate_path + directory count limits + accounting gaps (#701)
  • test(python): add advanced security tests for Python integration (#705)
  • test(security): add JavaScript integration security tests (#700)
  • test(security): blackbox security testing — 15 vulnerability findings (#688)
  • fix(security): guard all builtins against internal variable namespace injection (#696)
  • feat(interpreter): return final environment state in ExecResult (#695)
  • feat(parser): static budget validation on parsed AST before execution (#694)

Full Changelog: v0.1.10...v0.1.11

Release v0.1.10

15 Mar 03:18
f83e518

Choose a tag to compare

Highlights

  • Node.js native bindings (@everruns/bashkit): Full npm package with NAPI-RS, async execute API, VFS file helpers, lazy file values — 6 platforms, tested on Node 20/22/24, with 200+ tests and 6 examples including OpenAI, Vercel AI, and LangChain integrations
  • Pi coding agent integration: Bashkit extension for pi.dev terminal coding agent — replaces shell, read, write, and edit tools with bashkit-backed virtual implementations, zero real filesystem access
  • 39 new builtins (109→148): rg, patch, zip/unzip, iconv, compgen, json, csv, tomlq, yaml, template, parallel, http, help, fc, tree, readlink, clear, fold, expand/unexpand, envsubst, join, split, and more
  • Performance: Criterion benchmark harness with auto-save, 7-runner comparison suite, lazy-init HTTP client, trimmed CLI one-shot startup path
  • Coprocess & background execution: coproc support with named FD pairs, background & execution with wait builtin, cancellation via AtomicBool token

New Tools & Builtins

  • 14 new builtins batch 2: rg, patch, zip/unzip, iconv, compgen, json, csv, tomlq, yaml, template, parallel, http, help, fc
  • 7 non-standard builtins + alias/unalias docs
  • join and split commands
  • clear, fold, expand/unexpand, envsubst
  • tree, readlink
  • ScriptingToolSet with exclusive/discovery modes
  • MCP: expose ScriptedTool as MCP tool
  • help builtin for runtime schema introspection

What's Changed

  • feat(pi-integration): add Pi coding agent extension with bashkit VFS (#638)
  • feat(find): add -printf format flag support (#637)
  • test: un-ignore exec_azure_query_capacity, now passing (#636)
  • feat(awk): add Unicode \u escape sequences (#635)
  • feat(jq): upgrade jaq crates to latest stable versions (#634)
  • feat(vfs): add /dev/urandom and /dev/random to virtual filesystem (#632)
  • feat: fix bindings stderr, agent prompt, jq 1.8, awk --csv (#631)
  • fix(errexit): assignment-only commands now return exit code 0 (#630)
  • chore: pre-release maintenance pass (#627)
  • fix(awk): implement output redirection for print/printf (#626)
  • feat(js): expose VFS file helpers for agent integrations (#624)
  • fix(builtins): preserve empty fields in read IFS splitting (#623)
  • fix(interpreter): correct &&/|| operator precedence in [[ ]] conditional (#622)
  • fix(js): prevent invalid pointer access in napi bindings (#621)
  • fix(builtins): correct -a/-o operator precedence in test/[ builtin (#620)
  • refactor(net): lazy-init http client (#613)
  • feat(cancel): add cancellation support via AtomicBool token (#612)
  • fix(eval): stop scoring tool-call trajectory (#611)
  • refactor(cli): trim one-shot startup path (#609)
  • fix(parser): track bracket/brace depth in array subscript reader (#603)
  • fix(lexer): track brace depth in unquoted ${...} tokenization (#602)
  • fix(interpreter): expand ${...} syntax in arithmetic contexts (#601)
  • feat(js): support lazy file values in VFS (#598)
  • feat(js): add async execute API (#597)
  • feat(history): persistent searchable history across Bash instances (#596)
  • feat(git): add show/ls-files/rev-parse/restore/merge-base/grep (#595)
  • feat(interpreter): implement coproc (coprocess) support (#594)
  • feat(eval): improve discovery prompts and bump to gpt-5.4 (#593)
  • fix(tool): align toolkit library contract (#592)
  • feat(vfs): add mkfifo and named pipe (FIFO) support (#591)
  • feat(interpreter): implement background execution with & and wait (#590)
  • feat(bench): add Criterion parallel bench with auto-save (#589)
  • feat(builtins): add 14 new builtins batch 2 (#588)
  • feat(eval): improve scripted tool evals with ScriptingToolSet (#587)
  • fix(fs): flush RealFs append to prevent data loss race (#586)
  • feat(builtins): add 7 non-standard builtins + alias/unalias docs (#585)
  • feat(builtins): add join and split commands (#584)
  • feat(bench): 7-runner benchmark comparison with expanded test suite (#583)
  • feat(builtins): add clear, fold, expand/unexpand, envsubst commands (#582)
  • feat(builtins): add tree command (#581)
  • chore(maintenance): extract /maintain skill, add simplification (#580)
  • feat(builtins): add readlink command (#579)
  • feat(scripted_tool): add ScriptingToolSet with discovery mode support (#534)
  • chore(agents): clarify worktree sync and commit identity (#533)
  • feat(mcp): expose ScriptedTool as MCP tool (#532)
  • docs(scripted_tool): shared context and state patterns (#530)
  • feat(scripted_tool): help builtin for runtime schema introspection (#529)
  • feat(js): add JavaScript/TypeScript package with npm publishing (#528)
  • feat: upgrade to Rust edition 2024 + add doppler to cloud setup (#527)
  • feat(eval): add scripting tool evals with multi-dataset support (#525)
  • fix: prevent fuzz-found panics on multi-byte input (#513)

Full Changelog: v0.1.9...v0.1.10

Release v0.1.9

04 Mar 03:46
3f7c30f

Choose a tag to compare

Highlights

  • First external contribution! Welcome @achicu, who contributed external function handler support for the Python bindings (#394) — a milestone for the project as our first community-contributed feature. Thank you!
  • Comprehensive security hardening: deep audit with 40+ fixes across VFS, parser, interpreter, network, and Python bindings
  • HTTP, git, and Python features now enabled by default in the CLI
  • Multi-byte UTF-8 safety across builtins (awk, tr, printf, expr)
  • Python runtime improvements: GIL release, tokio runtime reuse, security config preservation

What's Changed

  • feat(python): add external function handler support (#394) by Alexandru Chiculita
  • feat(cli): enable http, git, python by default (#507)
  • chore: run maintenance checklist (012-maintenance) (#508)
  • docs: convert doc examples to tested doctests (#504)
  • fix(security): batch 3 — issues #498-#499 (#503)
  • fix(security): batch 2 — issues #493-#497 (#502)
  • fix(security): batch 1 — issues #488-#492 (#501)
  • docs: align rustdoc with README, add doc review to maintenance (#500)
  • test(security): deep security audit with regression tests (#487)
  • fix(builtins): make exported variables visible to Python's os.getenv (#486)
  • refactor(interpreter): extract inline builtins from execute_dispatched_command (#485)
  • fix(parser): allow glob expansion on unquoted suffix after quoted prefix (#484)
  • fix(parser): handle quotes inside ${...} in double-quoted strings (#483)
  • fix(parser): expand variables in [[ =~ $var ]] regex patterns (#482)
  • fix(builtins): count newlines for wc -l instead of logical lines (#481)
  • fix(interpreter): reset OPTIND between bash script invocations (#478)
  • fix(builtins): awk array features — SUBSEP, multi-subscript, pre-increment (#477)
  • fix(builtins): prevent awk parser panic on multi-byte UTF-8 (#476)
  • fix(network): use byte-safe path boundary check in allowlist (#475)
  • fix(interpreter): use byte-safe indexing for arithmetic compound assignment (#474)
  • fix(builtins): add recursion depth limit to AWK function calls (#473)
  • fix(network): use try_from instead of truncating u64-to-usize cast (#472)
  • fix(network): redact credentials from allowlist error messages (#471)
  • fix(scripted_tool): use Display not Debug format in errors (#470)
  • fix(python): add depth limit to py_to_json/json_to_py (#469)
  • fix(builtins): handle multi-byte UTF-8 in tr expand_char_set() (#468)
  • fix(builtins): use char-based precision truncation in printf (#467)
  • fix(builtins): use char count instead of byte length in expr (#466)
  • fix(interpreter): detect cyclic nameref to prevent wrong resolution (#465)
  • fix(interpreter): sandbox $$ to return 1 instead of host PID (#464)
  • fix(python): preserve security config across Bash.reset() (#463)
  • fix(git): validate branch names to prevent path injection (#462)
  • fix(tool): preserve custom builtins across create_bash calls (#461)
  • fix(fs): add validate_path to all InMemoryFs methods (#460)
  • fix(fs): recursive delete whiteouts lower-layer children in OverlayFs (#459)
  • fix(fs): use combined usage for OverlayFs write limits (#458)
  • fix(fs): prevent usage double-counting in OverlayFs (#457)
  • fix(fs): enforce write limits on chmod copy-on-write (#456)
  • fix(archive): prevent tar path traversal in VFS (#455)
  • fix(fs): prevent TOCTOU race in InMemoryFs::append_file() (#454)
  • docs: add quick install section to README (#453)
  • fix(jq): prevent process env pollution in jq builtin (#452)
  • fix(python): reuse tokio runtime instead of creating per call (#451)
  • fix(python): release GIL before blocking on tokio runtime (#450)
  • fix(python): prevent heredoc delimiter injection in write() (#449)
  • fix(python): prevent shell injection in BashkitBackend (#448)
  • fix(interpreter): add depth limit to extglob pattern matching (#447)
  • fix(interpreter): block internal variable namespace injection (#445)
  • chore(ci): bump the github-actions group with 2 updates (#479)
  • chore: add tokio-macros 2.6.1 to cargo-vet exemptions (#480)

Full Changelog: v0.1.8...v0.1.9

Release v0.1.8

01 Mar 01:40
ac184be

Choose a tag to compare

Highlights

  • Stderr and combined redirects (2>, 2>&1, &>) for real-world script compatibility
  • ANSI-C quoting ($'...') and $"..." syntax support
  • New builtins: base64, md5sum/sha1sum/sha256sum, find -exec, grep -L/--exclude-dir
  • jq enhancements: setpath, leaf_paths, improved match/scan
  • Recursive variable deref and array access in arithmetic expressions
  • awk user-defined functions, curl -F multipart form data
  • tar -C/-O flags, xargs command execution
  • Per-tool-call timeout_ms in ToolRequest
  • 244 new Oils-inspired spec tests
  • 20+ interpreter/parser bug fixes: heredoc pipes, IFS splitting, subshell isolation, exit code truncation, unicode ${#x}, shift builtin, and more

What's Changed

  • fix(ci): trigger Python publish workflow on release (#403)
  • chore(eval): 2026-02-28 eval run across 5 models with v0.1.7 analysis (#402)
  • feat: process remaining issues (#308, #310, #311, #312, #321, #327, #329, #331, #332, #333, #334) (#393)
  • chore: add rebase hint to process-issues step 9 (#392)
  • fix: reduce skipped spec tests, implement cut/tr features (#309, #314) (#391)
  • fix(ci): switch tarpaulin to LLVM engine to fix coverage failures (#390)
  • fix: implement var operators, IFS splitting, parser errors, nameref, alias (#389)
  • fix(builtins): add jq -R raw input and awk printf parens (#388)
  • chore: update pin-project-lite cargo-vet exemption to 0.2.17 (#387)
  • feat(builtins): implement find -exec command execution (#386)
  • feat(builtins): add grep -L, --exclude-dir, -s, -Z flags (#385)
  • feat(builtins): implement jq setpath, leaf_paths, fix match/scan (#384)
  • fix(parser): handle heredoc pipe ordering and edge cases (#379)
  • fix(interpreter): count unicode chars in ${#x} and add printf \u/\U escapes (#378)
  • feat(interpreter): implement stderr and combined redirects (2>, 2>&1, &>) (#377)
  • fix(interpreter): isolate subshell state for functions, cwd, traps, positional params (#376)
  • chore(specs): document sort/uniq flags, update spec test counts (#375)
  • fix(interpreter): split command substitution output on IFS in list context (#374)
  • feat(interpreter): implement recursive variable deref and array access in arithmetic (#373)
  • feat(parser): implement $'...' ANSI-C quoting and $"..." syntax (#371)
  • fix(interpreter): write heredoc content when redirected to file (#370)
  • feat(eval): add OpenAI Responses API provider (#366)
  • fix(interpreter): truncate exit codes to 8-bit range (#365)
  • fix(builtins): make xargs execute commands instead of echoing (#364)
  • chore: add ignored-test review step to process-issues (#363)
  • test: add 14 Oils-inspired spec test files (244 tests) (#351)
  • feat(tool): add per-tool-call timeout_ms to ToolRequest (#350)
  • chore(eval): expand eval suite to 52 tasks, add multi-model results (#349)
  • feat(eval): add database, config, and build simulation eval categories (#344)
  • feat(tool): list all 80+ builtins in help text (#343)
  • fix(wc): match real bash output padding behavior (#342)
  • chore(tests): update spec_tests.rs skip count from 66 to 18 (#341)
  • refactor(error): add Fromregex::Error impl for Error (#340)
  • chore: add /process-issues claude command (#339)
  • chore: close verified-not-reproducible issues #279, #282 (#307)
  • test: verify issues #275, #279, #282 are not reproducible (#306)
  • feat(curl): add -F multipart form data support (#305)
  • feat(find): parse -exec flag without erroring (#304)
  • feat(awk): add user-defined function support (#303)
  • feat(tar): add -C (change directory) and -O (stdout) flags (#302)
  • feat(base64): add base64 encode/decode builtin command (#301)
  • fix(eval): add /var/log to script_health_check task files (#300)
  • fix(eval): accept both quoted and unquoted CSV in json_to_csv_export (#299)
  • fix(jq): return ExecResult::err instead of Error::Execution for stderr suppression (#298)
  • fix(test): resolve relative paths against cwd in file test operators (#297)
  • fix(interpreter): shift builtin now updates positional parameters (#296)
  • fix(lexer): handle backslash-newline line continuation between tokens (#295)
  • fix(interpreter): forward pipeline stdin to user-defined functions (#294)
  • fix(test): trim whitespace in parse_int for integer comparisons (#293)

Full Changelog: v0.1.7...v0.1.8

Release v0.1.7

26 Feb 02:44
8e10e34

Choose a tag to compare

Highlights

  • 20+ new builtins: declare/typeset, let, getopts, trap, caller, shopt, pushd/popd/dirs, seq, tac, rev, yes, expr, mktemp, realpath, and more
  • Glob options: dotglob, nocaseglob, failglob, noglob, globstar
  • Shell flags: bash -e/-x/-u/-f/-o, set -x xtrace debugging
  • select construct, case ;;& fallthrough, FUNCNAME variable
  • Nameref variables (declare -n), case conversion (declare -l/-u)
  • 10+ bug fixes for quoting, arrays, globs, and redirections

What's Changed

  • feat(interpreter): implement bash/sh -e/-x/-u/-f/-o flags (#270)
  • chore(eval): run 2026-02-25 evals across 4 models (#271)
  • feat(interpreter): implement glob options (dotglob, nocaseglob, failglob, noglob, globstar) (#269)
  • feat(builtins): implement pushd, popd, dirs (#268)
  • feat(builtins): implement file comparison test operators (#267)
  • feat(builtins): implement expr builtin (#266)
  • feat(builtins): implement yes and realpath builtins (#265)
  • feat(interpreter): implement caller builtin (#264)
  • feat(builtins): implement printf %q shell quoting (#263)
  • feat(builtins): implement tac and rev builtins (#262)
  • feat(builtins): implement seq builtin (#261)
  • chore(deps): bump pyo3 to 0.28.2 and pyo3-async-runtimes to 0.28 (#260)
  • feat(builtins): implement mktemp builtin (#259)
  • feat(interpreter): implement trap -p flag and sorted trap listing (#258)
  • feat(builtins): implement set -o / set +o option display (#257)
  • feat(interpreter): implement declare -l/-u case conversion attributes (#256)
  • feat(interpreter): implement declare -n nameref variables (#255)
  • feat(builtins): implement shopt builtin with nullglob enforcement (#254)
  • feat(interpreter): implement set -x xtrace debugging (#253)
  • feat(bash): auto-populate shell variables (PWD, HOME, USER, etc.) (#252)
  • feat(bash): implement select construct (#251)
  • feat(bash): implement let builtin and fix declare -i arithmetic (#250)
  • feat(bash): case ;& and ;;& fallthrough/continue-matching (#249)
  • feat(bash): implement FUNCNAME special variable (#248)
  • fix(bash): backslash-newline line continuation in double quotes (#247)
  • fix(bash): nested double quotes inside $() in double-quoted strings (#246)
  • fix(bash): input redirections on compound commands (#245)
  • fix(bash): glob pattern matching in [[ == ]] and [[ != ]] (#244)
  • fix(bash): negative array indexing ${arr[-1]} (#243)
  • fix(bash): BASH_REMATCH not populated when regex starts with parens (#242)
  • feat(bash): arithmetic exponentiation, base literals, mapfile (#241)
  • feat: grep binary detection, awk %.6g and sorted for-in (#240)
  • feat: bash compatibility — compound arrays, grep -f, awk getline, jq env/input (#238)
  • feat: string ops, read -r, heredoc tests (#237)
  • feat: associative arrays, chown/kill builtins, array slicing tests (#236)
  • feat: cat -v, sort -m, brace/date/lexer fixes (#234)
  • feat: type/which/declare/ln builtins, errexit, nounset fix, sort -z, cut -z (#233)
  • feat: paste, command, getopts, nounset, [[ =~ ]], glob **, backtick subst (#232)
  • feat(date): add -R, -I flags and %N format (#231)
  • fix(lexer): handle backslash-escaped metacharacters (#230)
  • feat(grep): add --include/--exclude glob patterns (#229)
  • feat(sort,uniq,cut,tr): add sort/uniq/cut/tr missing options (#228)
  • feat(sed): grouped commands, branching, Q quit, step/zero addresses (#227)
  • chore(deps): upgrade monty to latest main (87f8f31) (#226)
  • fix(ci): repair nightly CI and add fuzz compile guard (#225)

Full Changelog: v0.1.6...v0.1.7

Release v0.1.6

20 Feb 20:07
26b66e7

Choose a tag to compare

Highlights

  • ScriptedTool for composing multi-tool bash orchestration with Python/LangChain bindings
  • Streaming output support for Tool trait
  • Script file execution by path
  • 10 interpreter bug fixes surfaced by eval harness

What's Changed

  • chore: pre-release maintenance checklist (#223) by @chaliy
  • feat(interpreter): support executing script files by path (#222) by @chaliy
  • fix(jq): fix argument parsing, add test coverage, update docs (#221) by @chaliy
  • feat(tool): add streaming output support (#220) by @chaliy
  • feat(python): ScriptedTool bindings + LangChain integration (#219) by @chaliy
  • refactor(examples): extract fake tools into separate module (#218) by @chaliy
  • chore: add small-PR preference to AGENTS.md (#217) by @chaliy
  • fix(builtins): resolve 10 eval-surfaced interpreter bugs (#216) by @chaliy
  • fix: address 10 code TODOs across codebase (#215) by @chaliy
  • test: add skipped tests for eval-surfaced interpreter bugs (#214) by @chaliy
  • feat(scripted_tool): add ScriptedTool for multi-tool bash composition (#213) by @chaliy
  • ci(python): add Python bindings CI with ruff and pytest (#212) by @chaliy
  • fix(interpreter): apply brace/glob expansion in for-loop word list (#211) by @chaliy
  • feat(python): add PydanticAI integration and example (#210) by @chaliy
  • fix(ci): add --allow-dirty for cargo publish after stripping monty (#209) by @chaliy
  • fix(ci): strip git-only monty dep before crates.io publish (#208) by @chaliy

Full Changelog: v0.1.5...v0.1.6

Release v0.1.5

17 Feb 04:14
0be82a4

Choose a tag to compare

Highlights

  • Direct Monty Python integration (removed subprocess worker) for simpler embedding
  • Improved AWK parser: match, gensub, power operators, printf formats
  • PyPI publishing with pre-built wheels for all major platforms
  • Bug fixes for sed, parser redirections, array expansion, and env assignments

What's Changed

  • chore: pre-release maintenance — deps, docs, specs (#206) by @chaliy
  • test(python): regression tests for monty v0.0.5/v0.0.6 (#205) by @chaliy
  • refactor(python): direct Monty integration, remove worker subprocess (#203) by @chaliy
  • docs: add overview video to README (#202) by @chaliy
  • fix(interpreter): expand array args as separate fields (#201) by @chaliy
  • fix(interpreter): prefix env assignments visible to commands (#200) by @chaliy
  • chore(specs): add domain egress allowlist threat model (#199) by @chaliy
  • chore(deps): update pyo3 requirement from 0.24 to 0.24.2 (#198) by @chaliy
  • chore: reframe language from sandboxed bash to virtual bash (#197) by @chaliy
  • fix(builtins): fix sed ampersand replacement and escape handling (#196) by @chaliy
  • fix(parser): support output redirection on compound commands (#195) by @chaliy
  • fix(builtins): use streaming JSON deserializer in jq for multi-line input (#194) by @chaliy
  • fix(builtins): handle escape sequences in AWK -F field separator (#193) by @chaliy
  • fix(builtins): improve AWK parser with match, gensub, power, printf (#192) by @chaliy
  • docs(examples): use bashkit from PyPI instead of local build (#190) by @chaliy
  • fix(python): enable PyO3 generate-import-lib for Windows wheels (#189) by @chaliy
  • feat(python): add PyPI publishing with pre-built wheels (#188) by @chaliy
  • chore(ci): Bump taiki-e/cache-cargo-install-action from 2 to 3 (#186) by @chaliy
  • feat(eval): expand dataset to 37 tasks with JSON scenarios (#185) by @chaliy

Full Changelog: v0.1.4...v0.1.5