Release v0.1.0
Highlights
- Initial release of BashKit sandboxed bash interpreter
- Core interpreter with bash-compatible syntax support
- Virtual filesystem (VFS) abstraction for sandboxed file operations
- Resource limits: memory, execution time, operation count
- Built-in commands: echo, printf, cat, head, tail, wc, grep, sed, awk, jq, sort, uniq, cut, tr, date, base64, md5sum, sha256sum, gzip, gunzip, etc
- CLI tool for running scripts and interactive REPL
- Security testing with fail-point injection
What's Changed
- feat(test): add grammar-based differential fuzzing (#83) by @chaliy
- feat: implement missing grep and sed flags (#82) by @chaliy
- feat(test): add compatibility report generator (#81) by @chaliy
- feat(grep): implement missing grep flags (-A/-B/-C, -m, -q, -x, -e) (#80) by @chaliy
- feat(test): add script to check expected outputs against bash (#79) by @chaliy
- feat: implement release process for 0.1.0 (#78) by @chaliy
- test(spec): enable bash comparison tests in CI (#77) by @chaliy
- feat: implement POSIX Shell Command Language compliance (#76) by @chaliy
- docs: embed custom guides in rustdoc via include_str (#75) by @chaliy
- docs: update built-in commands documentation to reflect actual implementation (#74) by @chaliy
- test(builtins): add example and integration tests for custom builtins (#73) by @chaliy
- docs: update KNOWN_LIMITATIONS and compatibility docs (#72) by @chaliy
- fix: resolve cargo doc collision and rustdoc warnings (#71) by @chaliy
- docs(specs): document 18 new CLI builtins (#70) by @chaliy
- docs: add comprehensive rustdoc documentation for public API (#69) by @chaliy
- docs(tests): complete skipped tests TODO list (#68) by @chaliy
- feat: implement bash compatibility features (#67) by @chaliy
- feat(parser): add fuel-based operation limit to prevent DoS (#66) by @chaliy
- feat(parser): add AST depth limit to prevent stack overflow (#65) by @chaliy
- feat(parser): add input size validation to prevent DoS (#64) by @chaliy
- feat(parser): add parser timeout to prevent DoS (#63) by @chaliy
- fix(interpreter): handle command not found like bash (#61) by @chaliy
- feat(builtins): add custom builtins support (#60) by @chaliy
- docs: document skipped tests and curl coverage gap (#59) by @chaliy
- fix(timeout): make timeout tests reliable with virtual time (#58) by @chaliy
- test(bash): enable bash core tests in CI (#57) by @chaliy
- chore(clippy): enable clippy::unwrap_used lint (#56) by @chaliy
- feat(security): add cargo-vet for supply chain tracking (#54) by @chaliy
- ci: add AddressSanitizer job for stack overflow detection (#52) by @chaliy
- fix(ci): add checks:write permission for cargo-audit (#51) by @chaliy
- chore(ci): add Dependabot configuration (#50) by @chaliy
- test: port comprehensive test cases from just-bash (#49) by @chaliy
- fix(awk): fix multi-statement parsing and add gsub/split support (#48) by @chaliy
- feat(time,timeout): implement time keyword and timeout command (#47) by @chaliy
- refactor(test): optimize proptest for CI speed (#46) by @chaliy
- feat(builtins): implement 18 new CLI commands (#45) by @chaliy
- feat(system): add configurable username and hostname to BashBuilder (#44) by @chaliy
- feat(security): add security tooling for vulnerability detection (#43) by @chaliy
- feat(sed): implement case insensitive flag and multiple commands (#42) by @chaliy
- docs: update testing docs to reflect current status (#41) by @chaliy
- feat(grep): implement -w and -l stdin support (#40) by @chaliy
- fix(jq): use pretty-printed output for arrays and objects (#39) by @chaliy
- feat(jq): implement -r/--raw-output flag (#38) by @chaliy
- feat(fs): enable custom filesystem implementations from external crates (#37) by @chaliy
- fix(parser,interpreter): add support for arithmetic commands and C-style for loops (#36) by @chaliy
- feat(grep): implement -o flag for only-matching output (#35) by @chaliy
- docs(agents): add test-first principle for bug fixes (#34) by @chaliy
- docs: update testing spec and known limitations with accurate counts (#33) by @chaliy
- docs: add PR convention to never include Claude session links (#32) by @chaliy
- feat(examples): add LLM agent example with real Claude integration (#31) by @chaliy
- fix: resolve BashKit parsing and filesystem bugs (#30) by @chaliy
- feat(bench): add parallel execution benchmark (#29) by @chaliy
- feat(fs): add direct filesystem access via Bash.fs() (#28) by @chaliy
- feat(bench): add benchmark tool to compare bashkit, bash, and just-bash (#27) by @chaliy
- fix(test): isolate fail-point tests for CI execution (#26) by @chaliy
- ci: add examples execution to CI workflow (#25) by @chaliy
- feat: add comprehensive builtins, job control, and test coverage (#24) by @chaliy
- feat(security): add fail-rs security testing and threat model (#23) by @chaliy
- docs: update CONTRIBUTING and prepare repo for publishing (#22) by @chaliy
- docs: remove MCP server mode references from README (#21) by @chaliy
- docs: update compatibility scorecard with array fixes (#20) by @chaliy
- docs: add acknowledgment for Vercel's just-bash inspiration (#19) by @chaliy
- feat(bashkit): fix array edge cases (102 tests passing) (#18) by @chaliy
- docs: add licensing and attribution files (#17) by @chaliy
- feat(bashkit): improve spec test coverage from 78% to 100% (#16) by @chaliy
- docs: add compatibility scorecard (#15) by @chaliy
- feat(bashkit): Phase 12 - Spec test framework for compatibility testing (#14) by @chaliy
- docs: update README with project overview (#13) by @chaliy
- feat(bashkit): Phase 11 - Text processing commands (jq, grep, sed, awk) (#12) by @chaliy
- feat(bashkit-cli): Phase 10 - MCP server mode (#11) by @chaliy
- feat(bashkit): Phase 9 - Network allowlist and HTTP client (#10) by @chaliy
- feat(bashkit): Phase 8 - OverlayFs and MountableFs (#9) by @chaliy
- feat(bashkit): Phase 7 - Resource limits for sandboxing (#8) by @chaliy
- feat(bashkit-cli): Add CLI binary for command line usage (#7) by @chaliy
- feat(bashkit): Phase 5 - Array support (#6) by @chaliy
- feat(bashkit): Phase 4 - Here documents, builtins, and parameter expansion (#5) by @chaliy
- feat(bashkit): Phase 3 - Command substitution and arithmetic expansion (#4) by @chaliy
- feat(bashkit): Phase 2 complete - control flow, functions, builtins (#3) by @chaliy
- feat(bashkit): Phase 1 - Foundation with variables, pipes, redirects (#2) by @chaliy
- feat(bashkit): Phase 0 - Bootstrap minimal working shell (#1) by @chaliy
Full Changelog: https://github.com/everruns/bashkit/commits/v0.1.0