@cloudflare/shell@0.3.9
cloudflare/agents@cloudflare/shell@0.3.9Jun 7, 2026by github-actions[bot]
AI Summary
A patch release fixing concurrent write safety in workspace parent directory creation, resolving SQLite primary-key constraint errors when multiple writes occur simultaneously.
Key Highlights
- Fixes SQLite primary-key constraint errors under concurrent writes
- Makes workspace parent directory creation idempotent
- Emits a single directory create event instead of multiple errors
New Features
- Concurrent write safety improvements
Full Release Notes
### Patch Changes
- [#1613](https://github.com/cloudflare/agents/pull/1613) [`124a47a`](https://github.com/cloudflare/agents/commit/124a47a91c8a9db0bcf08ab931a5dd99a2fac663) Thanks [@threepointone](https://github.com/threepointone)! - Make workspace parent directory creation safe under concurrent writes. When two
writes create files in the same missing directory at the same time, the
filesystem now creates the implicit parent idempotently without surfacing a
SQLite primary-key constraint error, while still emitting a single directory
create event.