@componentor/fs 3.0.42 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +22 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@componentor/fs",
3
- "version": "3.0.42",
3
+ "version": "3.0.43",
4
4
  "description": "High-performance OPFS-based Node.js fs polyfill with true sync API, VFS binary format, and bidirectional OPFS mirroring",
5
5
  "license": "MIT",
6
6
  "author": "Componentor",
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:**