|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [0.1.0] - 2025-12-26 |
| 9 | + |
| 10 | +### Added |
| 11 | + |
| 12 | +#### worker-fs-mount |
| 13 | +- Initial release of the core mounting system |
| 14 | +- `mount()` and `unmount()` functions for managing virtual filesystem mounts |
| 15 | +- `withMounts()` for request-scoped mounts with automatic cleanup |
| 16 | +- `isMounted()` and `isInMountContext()` utility functions |
| 17 | +- Drop-in replacement for `node:fs/promises` via wrangler alias |
| 18 | +- Support for mounting WorkerEntrypoints, service bindings, and Durable Object stubs |
| 19 | +- Full `node:fs/promises` API compatibility including: |
| 20 | + - File operations: `readFile`, `writeFile`, `appendFile`, `truncate`, `rm`, `unlink` |
| 21 | + - Directory operations: `mkdir`, `readdir`, `rmdir` |
| 22 | + - Metadata: `stat`, `lstat`, `access` |
| 23 | + - Symlinks: `symlink`, `readlink` |
| 24 | + - Copy/move: `copyFile`, `cp`, `rename` |
| 25 | +- Stream-first `WorkerFilesystem` interface for implementations |
| 26 | +- Proper Node.js-style error handling with `ENOENT`, `EEXIST`, `EISDIR`, `ENOTDIR`, `EXDEV` |
| 27 | + |
| 28 | +#### r2-fs |
| 29 | +- Initial release of R2-backed filesystem implementation |
| 30 | +- Implements `WorkerFilesystem` interface for R2 buckets |
| 31 | +- Directory emulation using marker objects |
| 32 | +- Efficient streaming for large files |
| 33 | +- Support for all core filesystem operations |
| 34 | + |
| 35 | +#### durable-object-fs |
| 36 | +- Initial release of Durable Object filesystem implementation |
| 37 | +- SQLite-backed persistent storage |
| 38 | +- ACID-compliant file operations |
| 39 | +- Per-user or per-session isolated filesystems |
| 40 | +- Automatic schema migrations |
0 commit comments