@componentor/fs 3.0.45 → 3.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +212 -25
- package/dist/index.js.map +1 -1
- package/dist/workers/repair.worker.js +212 -25
- package/dist/workers/repair.worker.js.map +1 -1
- package/dist/workers/server.worker.js +212 -25
- package/dist/workers/server.worker.js.map +1 -1
- package/dist/workers/sync-relay.worker.js +212 -25
- package/dist/workers/sync-relay.worker.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +15 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -604,6 +604,21 @@ Make sure `opfsSync` is enabled (it's `true` by default). Files are mirrored to
|
|
|
604
604
|
|
|
605
605
|
See [CHANGELOG.md](./CHANGELOG.md) for the full version history.
|
|
606
606
|
|
|
607
|
+
### v3.0.46 (2026)
|
|
608
|
+
|
|
609
|
+
**Features:**
|
|
610
|
+
- Implicit directory support: directories implied by file paths are now recognized by `stat`, `lstat`, `readdir`, `opendir`, `access`, `realpath`, `exists`, `mkdir`, and `ensureParent`
|
|
611
|
+
- Generation-counter cache for lazy implicit-dir rebuild
|
|
612
|
+
|
|
613
|
+
**Fixes:**
|
|
614
|
+
- Fix crash on `fstat`/`fchmod`/`fchown`/`futimes` when fd was opened via `opendir` on an implicit directory
|
|
615
|
+
- `rmdir` on implicit directories now returns ENOTEMPTY (non-recursive) or deletes descendants (recursive) instead of ENOENT
|
|
616
|
+
- `nlink` for real directories now counts implicit subdirectories, consistent with `readdir`
|
|
617
|
+
- Implicit directory timestamps are stable across repeated `stat()` calls
|
|
618
|
+
|
|
619
|
+
**Tests:**
|
|
620
|
+
- 14 new tests for implicit directory behavior
|
|
621
|
+
|
|
607
622
|
### v3.0.45 (2026)
|
|
608
623
|
|
|
609
624
|
**Fixes:**
|