@moltendb-web/react 1.7.0 → 1.8.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 +0 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -278,7 +278,6 @@ function LiveFeed() {
278
278
  | `inMemory` | `boolean` | `false` | Run entirely in RAM — no OPFS writes. Data persists as long as at least one tab is open; any tab refresh or close wipes the shared store for all tabs |
279
279
  | `encryptionKey` | `string` | `undefined` | Password for at-rest encryption. If omitted, data is stored as plain JSON |
280
280
  | `writeMode` | `'async' \| 'sync'` | `'async'` | Storage write mode: `'async'` for high throughput or `'sync'` for durable writes |
281
- | `hotThreshold` | `number` | `50000` | Maximum documents per collection to keep in RAM |
282
281
  | `maxBodySize` | `number` | `undefined` | Maximum request body size in bytes |
283
282
  | `maxKeysPerRequest` | `number` | `1000` | Maximum number of keys allowed per JSON request |
284
283
  | `workerUrl` | `string \| URL` | `undefined` | Custom URL or path to `moltendb-worker.js` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moltendb-web/react",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "description": "Official React hooks wrapper for MoltenDb",
5
5
  "type": "module",
6
6
  "author": "Maximilian Both <maximilian.both27@outlook.com>",
@@ -31,8 +31,8 @@
31
31
  "react": ">=16.8.0"
32
32
  },
33
33
  "dependencies": {
34
- "@moltendb-web/core": "^1.7.0",
35
- "@moltendb-web/query": "^1.7.0"
34
+ "@moltendb-web/core": "^1.8.0",
35
+ "@moltendb-web/query": "^1.8.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/react": "^19.2.14",