@optimystic/db-p2p-storage-fs 0.25.1 → 0.27.0

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/README.md +2 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -108,7 +108,8 @@ cleanup:
108
108
 
109
109
  **No cross-process lock.** Two separate Node processes pointing at the same
110
110
  `basePath` can interleave writes with no coordination. The constructor carries
111
- a TODO (`file-storage.ts:52`) to integrate
111
+ a TODO — the "proper-lockfile" comment in
112
+ `packages/db-p2p-storage-fs/src/file-storage.ts` — to integrate
112
113
  [`proper-lockfile`](https://www.npmjs.com/package/proper-lockfile) along with
113
114
  an explicit `dispose()` pattern. Until that lands, `FileRawStorage` is
114
115
  single-process only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optimystic/db-p2p-storage-fs",
3
- "version": "0.25.1",
3
+ "version": "0.27.0",
4
4
  "type": "module",
5
5
  "description": "Node.js filesystem storage backend for @optimystic/db-p2p",
6
6
  "main": "dist/src/index.js",
@@ -48,8 +48,8 @@
48
48
  "typescript": "^5.9.3"
49
49
  },
50
50
  "dependencies": {
51
- "@optimystic/db-core": "^0.25.1",
52
- "@optimystic/db-p2p": "^0.25.1",
51
+ "@optimystic/db-core": "^0.27.0",
52
+ "@optimystic/db-p2p": "^0.27.0",
53
53
  "debug": "^4.4.3"
54
54
  }
55
55
  }