@aionis/substrate 0.1.2 → 0.1.4
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/CHANGELOG.md +16 -0
- package/README.md +27 -4
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +160 -2
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/runtime-live-sidecar.d.ts +79 -0
- package/dist/runtime-live-sidecar.d.ts.map +1 -0
- package/dist/runtime-live-sidecar.js +382 -0
- package/dist/runtime-live-sidecar.js.map +1 -0
- package/dist/runtime-snapshot-corpus.d.ts +29 -0
- package/dist/runtime-snapshot-corpus.d.ts.map +1 -1
- package/dist/runtime-snapshot-corpus.js +95 -0
- package/dist/runtime-snapshot-corpus.js.map +1 -1
- package/dist/runtime-snapshot-importer.d.ts +17 -0
- package/dist/runtime-snapshot-importer.d.ts.map +1 -1
- package/dist/runtime-snapshot-importer.js +56 -9
- package/dist/runtime-snapshot-importer.js.map +1 -1
- package/docs/CLI.md +58 -0
- package/docs/RUNTIME_LIVE_SIDECAR.md +142 -0
- package/docs/RUNTIME_SNAPSHOT_CORPUS.md +22 -8
- package/docs/RUNTIME_SNAPSHOT_IMPORT.md +17 -1
- package/docs/V0_2_ROADMAP.md +3 -2
- package/package.json +3 -2
package/docs/V0_2_ROADMAP.md
CHANGED
|
@@ -54,7 +54,7 @@ Keep Runtime experiments isolated:
|
|
|
54
54
|
- dual-write sidecar continues to write into a separate Substrate store;
|
|
55
55
|
- no replacement of Aionis Runtime storage in v0.2.
|
|
56
56
|
|
|
57
|
-
Initial implementation status: `check:runtime-sidecar` now combines read-only Runtime snapshot parity and same-source reference corpus parity into a single report contract. Real Runtime dual-write remains an explicit separate gate through `check:runtime-dual-write` because it starts focused Runtime.
|
|
57
|
+
Initial implementation status: `check:runtime-sidecar` now combines read-only Runtime snapshot parity and same-source reference corpus parity into a single report contract. `live-sidecar` adds a checkpointed external mirror from Runtime Lite SQLite into a separate Substrate target for repeated host-managed sync, including bounded watch polling and a checkpoint lock. Real Runtime dual-write remains an explicit separate gate through `check:runtime-dual-write` because it starts focused Runtime.
|
|
58
58
|
|
|
59
59
|
### 5. Product CLI and Docs
|
|
60
60
|
|
|
@@ -64,7 +64,7 @@ Make the substrate boundary easier to consume without widening policy scope:
|
|
|
64
64
|
- document install, minimal API usage, and sidecar reports separately;
|
|
65
65
|
- keep repository-only Runtime process experiments explicit and separate.
|
|
66
66
|
|
|
67
|
-
Initial implementation status: the package exposes `aionis-substrate sidecar` for read-only snapshot/reference checks and store commands for inspect, preview-context, backup, restore, compact, and Runtime snapshot import. These commands do not start Runtime, mutate Runtime storage, or implement Runtime admission policy.
|
|
67
|
+
Initial implementation status: the package exposes `aionis-substrate sidecar` for read-only snapshot/reference checks, `aionis-substrate live-sidecar` for checkpointed external mirroring, and store commands for inspect, preview-context, backup, restore, compact, and Runtime snapshot import. These commands do not start Runtime, mutate Runtime storage, or implement Runtime admission policy.
|
|
68
68
|
|
|
69
69
|
## Excluded
|
|
70
70
|
|
|
@@ -82,6 +82,7 @@ Before v0.2 can be tagged:
|
|
|
82
82
|
- `npm run typecheck`
|
|
83
83
|
- `npm test`
|
|
84
84
|
- `npm run bench:contract`
|
|
85
|
+
- `npm run check:runtime-live-sidecar-soak`
|
|
85
86
|
- `npm run check:release`
|
|
86
87
|
- `npm run check:scale -- --nodes 10000 --scopes 10 --relations 2000 --feedback 1000`
|
|
87
88
|
- adapter parity tests for every new public API;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aionis/substrate",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Durable governed memory substrate for Aionis execution state.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"check:runtime-corpus": "node scripts/runtime-snapshot-corpus.ts",
|
|
35
35
|
"check:runtime-reference-corpus": "node scripts/runtime-reference-corpus.ts",
|
|
36
36
|
"check:runtime-sidecar": "node scripts/runtime-sidecar-check.ts",
|
|
37
|
+
"check:runtime-live-sidecar-soak": "node scripts/runtime-live-sidecar-soak.ts",
|
|
37
38
|
"make:runtime-product-reference": "node scripts/runtime-product-reference-fixture.ts",
|
|
38
39
|
"check:external-admission-parity": "node scripts/external-admission-parity.ts",
|
|
39
40
|
"check:runtime-dual-write": "node scripts/runtime-dual-write-experiment.ts",
|
|
@@ -43,7 +44,7 @@
|
|
|
43
44
|
"check:published-runtime-smoke": "node scripts/published-runtime-smoke.ts",
|
|
44
45
|
"check:scale": "node scripts/scale-test.ts",
|
|
45
46
|
"example:basic": "npm run build && node examples/basic/index.mjs",
|
|
46
|
-
"check:release": "npm run typecheck && npm test && npm run bench:contract && npm run example:basic && npm run check:pack && npm run check:install-smoke"
|
|
47
|
+
"check:release": "npm run typecheck && npm test && npm run bench:contract && npm run example:basic && npm run check:runtime-live-sidecar-soak && npm run check:pack && npm run check:install-smoke"
|
|
47
48
|
},
|
|
48
49
|
"repository": {
|
|
49
50
|
"type": "git",
|