@syncular/server-workers 0.15.46 → 0.15.47

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 +3 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -331,9 +331,10 @@ WRANGLER_SMOKE=1`-gated test wrapping exactly this recipe.
331
331
  The server core this entry loads (handler, realtime session, D1 storage,
332
332
  memory stores, signed-URL/segment/blob machinery) is free of Bun- and
333
333
  Node-only builtins — SigV4 and all hashing use Web Crypto, base64 uses
334
- `btoa`/`atob`, and the SQLite-family stores that need `bun:sqlite`
334
+ `btoa`/`atob`, and the SQLite-family stores that need `bun:sqlite` or
335
+ `node:sqlite`
335
336
  (`SqliteServerStorage`, `SqliteSegmentStore`, `SqliteBlobStore`,
336
337
  `SqliteLeaseStore`, `buildSqliteImage`) live in separate modules a Bun/Node
337
- host opts into and a Workers bundle tree-shakes away. This is enforced by a
338
+ host imports through `@syncular/server/sqlite`. This is enforced by a
338
339
  static import-graph scan in
339
340
  `packages/server/test/runtime-neutrality.test.ts`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncular/server-workers",
3
- "version": "0.15.46",
3
+ "version": "0.15.47",
4
4
  "description": "Cloudflare Workers adapter for the Syncular sync server",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Benjamin Kniffler",
@@ -45,10 +45,10 @@
45
45
  "!dist/**/*.test.d.ts"
46
46
  ],
47
47
  "dependencies": {
48
- "@syncular/server": "0.15.46",
49
- "@syncular/server-hono": "0.15.46"
48
+ "@syncular/server": "0.15.47",
49
+ "@syncular/server-hono": "0.15.47"
50
50
  },
51
51
  "devDependencies": {
52
- "@syncular/core": "0.15.46"
52
+ "@syncular/core": "0.15.47"
53
53
  }
54
54
  }