@remnic/bench 9.69.43 → 9.69.45

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.
@@ -322,8 +322,8 @@ function resolveCanaryFloorFromEnv(raw = process2.env.REMNIC_BENCH_CANARY_FLOOR)
322
322
  if (raw === void 0) {
323
323
  return CANARY_SCORE_FLOOR;
324
324
  }
325
- if (raw === "") {
326
- throw new Error(`Invalid REMNIC_BENCH_CANARY_FLOOR: ${raw}`);
325
+ if (raw.trim() === "") {
326
+ throw new Error(`Invalid REMNIC_BENCH_CANARY_FLOOR: ${JSON.stringify(raw)}`);
327
327
  }
328
328
  try {
329
329
  return parseCanaryFloor(Number(raw), "REMNIC_BENCH_CANARY_FLOOR");
package/dist/index.d.ts CHANGED
@@ -4379,7 +4379,8 @@ declare function parseCanaryFloor(value: unknown, label?: string): number;
4379
4379
  /**
4380
4380
  * Effective canary floor for this process: a validated
4381
4381
  * `REMNIC_BENCH_CANARY_FLOOR` override, else the canonical default.
4382
- * An explicitly empty override is invalid, not absent.
4382
+ * An explicitly empty or whitespace-only override is invalid, not absent:
4383
+ * `Number(" ")` parses to 0, which would silently replace the floor.
4383
4384
  */
4384
4385
  declare function resolveCanaryFloorFromEnv(raw?: string | undefined): number;
4385
4386
  /**
package/dist/index.js CHANGED
@@ -187,7 +187,7 @@ import {
187
187
  writeLeaderboardArtifactsForResult,
188
188
  writeRepeatedFailureRunMetadata,
189
189
  writeRepeatedFailureStatistics
190
- } from "./chunk-QW6VEGZN.js";
190
+ } from "./chunk-PJV5KMZI.js";
191
191
 
192
192
  // src/build-week-evidence-receipt.ts
193
193
  import { createHash as createHash2 } from "crypto";
@@ -48984,7 +48984,7 @@ async function writeRepeatedFailurePaperArtifacts(options) {
48984
48984
  }
48985
48985
  async function runRepeatedFailurePaperReportCliCommand(options) {
48986
48986
  try {
48987
- const { replayRepeatedFailureStatistics: replayRepeatedFailureStatistics2 } = await import("./repeated-failure-suite-runner-GEBPBTNL.js");
48987
+ const { replayRepeatedFailureStatistics: replayRepeatedFailureStatistics2 } = await import("./repeated-failure-suite-runner-CSUANG7N.js");
48988
48988
  const replay = await replayRepeatedFailureStatistics2(options);
48989
48989
  if (replay.exitCode !== 0) return replay;
48990
48990
  const result = await writeRepeatedFailurePaperArtifacts(options);
@@ -11,7 +11,7 @@ import {
11
11
  runRepeatedFailureCliCommand,
12
12
  runRepeatedFailureSuite,
13
13
  verifyPreregistrationBinding
14
- } from "./chunk-QW6VEGZN.js";
14
+ } from "./chunk-PJV5KMZI.js";
15
15
  export {
16
16
  baseEvidence,
17
17
  buildDesign,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/bench",
3
- "version": "9.69.43",
3
+ "version": "9.69.45",
4
4
  "description": "Retrieval latency ladder benchmarks + CI regression gates for @remnic/core",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -41,8 +41,8 @@
41
41
  "hyparquet": "^1.25.7",
42
42
  "yaml": "^2.4.2",
43
43
  "zod": "^3.24.0",
44
- "@remnic/coding-graph": "^9.69.43",
45
- "@remnic/core": "^9.69.43"
44
+ "@remnic/coding-graph": "^9.69.45",
45
+ "@remnic/core": "^9.69.45"
46
46
  },
47
47
  "devDependencies": {
48
48
  "tsup": "^8.5.1",