@remnic/bench 9.69.42 → 9.69.44
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-
|
|
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-
|
|
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);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remnic/bench",
|
|
3
|
-
"version": "9.69.
|
|
3
|
+
"version": "9.69.44",
|
|
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.
|
|
45
|
-
"@remnic/core": "^9.69.
|
|
44
|
+
"@remnic/coding-graph": "^9.69.44",
|
|
45
|
+
"@remnic/core": "^9.69.44"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"tsup": "^8.5.1",
|