@rulvar/store-conformance 1.89.0 → 1.90.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/dist/index.js +3 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -472,13 +472,15 @@ function journalStoreConformance(mk) {
472
472
  segments: 3,
473
473
  argsProvided: true,
474
474
  argsHash: "a".repeat(64),
475
- genesis: "g".repeat(26)
475
+ genesis: "g".repeat(26),
476
+ execKeyDerivation: 2
476
477
  }));
477
478
  const roundTripped = (await store.listRuns()).find((candidate) => candidate.runId === RUN$3);
478
479
  ensure(roundTripped?.budgetUsd === 12.5, "meta-separation", "putMeta/listRuns must round-trip optional RunMeta fields (budgetUsd)");
479
480
  ensure(roundTripped?.segments === 3, "meta-separation", "putMeta/listRuns must round-trip optional RunMeta fields (segments)");
480
481
  ensure(roundTripped?.argsProvided === true && roundTripped.argsHash === "a".repeat(64), "meta-separation", "putMeta/listRuns must round-trip optional RunMeta fields (argsProvided, argsHash)");
481
482
  ensure(roundTripped?.genesis === "g".repeat(26), "meta-separation", "putMeta/listRuns must round-trip optional RunMeta fields (genesis)");
483
+ ensure(roundTripped?.execKeyDerivation === 2, "meta-separation", "putMeta/listRuns must round-trip optional RunMeta fields (execKeyDerivation)");
482
484
  ensure((await store.listRuns({ statuses: ["suspended", "running"] })).some((candidate) => candidate.runId === RUN$3), "meta-separation", "listRuns({ statuses }) must include every meta whose status matches (supersets are allowed, drops are not)");
483
485
  const lookup = store.getMeta;
484
486
  if (typeof lookup === "function") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulvar/store-conformance",
3
- "version": "1.89.0",
3
+ "version": "1.90.0",
4
4
  "description": "Rulvar executable store conformance kit (DEF-4).",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -22,7 +22,7 @@
22
22
  "access": "public"
23
23
  },
24
24
  "dependencies": {
25
- "@rulvar/core": "1.89.0"
25
+ "@rulvar/core": "1.90.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.20.1",