fix(sse): fills in remaining stale CLI version literals

The same two agentrouter commits bumped Codex/Claude Code CLI version constants (0.144.1->0.146.0, 2.1.219->2.1.220) without updating every hardcoded test assertion. This round covers the ones the previous version-string commit missed: the anthropic-cache-fingerprint billing-version constant, a cc-bridge-transforms body assertion, the UI-mirror parity test's own snapshot plus its RoutingTab.tsx source of truth, an integration test's User-Agent assertion (inconsistent with its own dynamic Version assertion two lines up), and the translate-path golden snapshot. Also updates a stale doc comment referencing the old literal by value instead of by constant name.
This commit is contained in:
Will Gordon
2026-08-01 22:12:21 -04:00
committed by diegosouzapw
parent 1604ac8651
commit 1914c0fdc4
2 changed files with 2 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ export interface InjectBillingHeaderOp {
* - static-zero: emit "00000" (relay endpoints don't validate)
*/
cchAlgo: "sha256-first-user" | "xxhash64-body" | "static-zero";
/** Override the embedded `cc_version=` value. Defaults to `2.1.219`. */
/** Override the embedded `cc_version=` value. Defaults to CLAUDE_CODE_CLIENT_VERSION. */
version?: string;
/** Override its captured build revision. Defaults to a computed compatibility suffix. */
buildRevision?: string;

View File

@@ -689,7 +689,7 @@ test("chat pipeline applies Codex CLI fingerprint to OAuth responses requests",
assert.equal(call.headers.Version, getCodexClientVersion());
assert.equal(call.headers["Openai-Beta"], "responses=experimental");
assert.equal(call.headers["X-Codex-Beta-Features"], "responses_websockets");
assert.equal(call.headers["User-Agent"], "codex-cli/0.144.1 (Windows 10.0.26200; x64)");
assert.equal(call.headers["User-Agent"], "codex-cli/0.146.0 (Windows 10.0.26200; x64)");
assert.equal(call.headers["x-codex-window-id"], "conv_codex_fingerprint:0");
assert.ok(call.headers["x-client-request-id"], "expected Codex request id header");
assert.ok(call.headers["x-codex-turn-metadata"], "expected Codex turn metadata header");