@componentor/fs 3.0.41 → 3.0.43
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.d.mts +30 -16
- package/dist/index.js +391 -78
- package/dist/index.js.map +1 -1
- package/dist/workers/async-relay.worker.js +4 -1
- package/dist/workers/async-relay.worker.js.map +1 -1
- package/dist/workers/repair.worker.js +34 -0
- package/dist/workers/repair.worker.js.map +1 -1
- package/dist/workers/server.worker.js +73 -1
- package/dist/workers/server.worker.js.map +1 -1
- package/dist/workers/sync-relay.worker.js +127 -3
- package/dist/workers/sync-relay.worker.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +22 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -602,6 +602,28 @@ Make sure `opfsSync` is enabled (it's `true` by default). Files are mirrored to
|
|
|
602
602
|
|
|
603
603
|
## Changelog
|
|
604
604
|
|
|
605
|
+
See [CHANGELOG.md](./CHANGELOG.md) for the full version history.
|
|
606
|
+
|
|
607
|
+
### v3.0.43 (2026)
|
|
608
|
+
|
|
609
|
+
**Docs:**
|
|
610
|
+
- Update README changelog section and link to `CHANGELOG.md`
|
|
611
|
+
|
|
612
|
+
### v3.0.42 (2026)
|
|
613
|
+
|
|
614
|
+
**Features:**
|
|
615
|
+
- Implement real `fchmod`/`fchown`/`futimes` (sync, promises, and `FileHandle.utimes`) — previously no-ops
|
|
616
|
+
- Add wire opcodes `FCHMOD`/`FCHOWN`/`FUTIMES` (31/32/33) wired through VFS and OPFS engines, server worker, and sync-relay
|
|
617
|
+
- Sync-relay broadcasts fd-based ops as path-based equivalents via `getPathForFd` so watchers still fire
|
|
618
|
+
- Rewrite `glob`/`globSync`: brace expansion, character classes with `[!...]` negation, escapes, `withFileTypes`, `string[]` patterns, `URL` cwd, dedupe, trailing-`**` self-match
|
|
619
|
+
- `watch`: per-microtask `(event, filename)` coalescing, `encoding: 'buffer'` support, reclassify `COPY` as `change` to match libuv
|
|
620
|
+
|
|
621
|
+
### v3.0.41 (2026)
|
|
622
|
+
|
|
623
|
+
**Features:**
|
|
624
|
+
- Increase default inode count from 10,000 to 100,000 to support large projects (e.g. Strapi)
|
|
625
|
+
- Strengthen readdir-through-symlink test assertions
|
|
626
|
+
|
|
605
627
|
### v3.0.19-v3.0.20 (2026)
|
|
606
628
|
|
|
607
629
|
**Features:**
|