@ferricstore/ferricstore 0.5.0 → 0.5.1
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/README.md +7 -6
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/api/index.html +7 -6
- package/docs/api/variables/FERRICSTORE_SDK_VERSION.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,11 +18,12 @@ Requires Node.js 22.22 or newer. The SDK ships ESM and CommonJS builds and is te
|
|
|
18
18
|
|
|
19
19
|
## Compatibility
|
|
20
20
|
|
|
21
|
-
SDK `0.5.x` requires FerricStore server `0.11.0` or newer
|
|
22
|
-
breaking beta API contract update,
|
|
23
|
-
(`FSNP` framing and existing opcode
|
|
24
|
-
response-size limits are negotiated
|
|
25
|
-
startup response rather than inferred from
|
|
21
|
+
SDK `0.5.x` requires FerricStore server `0.11.0` or newer and is tested against
|
|
22
|
+
FerricStore `0.11.2`. FerricStore 0.11 is a breaking beta API contract update,
|
|
23
|
+
while the native wire protocol remains v1 (`FSNP` framing and existing opcode
|
|
24
|
+
numbers are unchanged). Capabilities and response-size limits are negotiated
|
|
25
|
+
per connection from the HELLO-shaped startup response rather than inferred from
|
|
26
|
+
a server version table.
|
|
26
27
|
|
|
27
28
|
ESM:
|
|
28
29
|
|
|
@@ -42,7 +43,7 @@ const { FerricStoreClient, JsonCodec } = require("@ferricstore/ferricstore");
|
|
|
42
43
|
docker run -p 6388:6388 \
|
|
43
44
|
-e FERRICSTORE_PROTECTED_MODE=false \
|
|
44
45
|
-v ferricstore_data:/data \
|
|
45
|
-
ghcr.io/ferricstore/ferricstore:0.11.
|
|
46
|
+
ghcr.io/ferricstore/ferricstore:0.11.2
|
|
46
47
|
```
|
|
47
48
|
|
|
48
49
|
## Query durable runs
|
package/dist/index.cjs
CHANGED
|
@@ -18727,7 +18727,7 @@ var WorkflowWorker = class {
|
|
|
18727
18727
|
};
|
|
18728
18728
|
|
|
18729
18729
|
// src/version.ts
|
|
18730
|
-
var FERRICSTORE_SDK_VERSION = "0.5.
|
|
18730
|
+
var FERRICSTORE_SDK_VERSION = "0.5.1";
|
|
18731
18731
|
var FERRICSTORE_MINIMUM_SERVER_VERSION = "0.11.0";
|
|
18732
18732
|
var FERRICSTORE_NATIVE_PROTOCOL_VERSION = 1;
|
|
18733
18733
|
// Annotate the CommonJS export names for ESM import in node:
|