fix: release QA hardening across processing, media, security, and CI gates (#649)

A release-readiness QA pass over the whole product. The commits split into
defects a user would hit and gates that were reporting green while measuring
nothing.

## Fixes that change behaviour

Rate limiting was bypassable on every install: TRUST_PROXY defaulted to true, so
request.ip came from a client-set header and a forged X-Forwarded-For got past
the login limiter. The default is now a private-network trust list.

A transient Postgres outage stranded in-flight jobs, leaving finished output on
disk with no row pointing at it. A reconciler now resolves those rows and adopts
the bytes rather than dropping the work.

A Redis connection that moved to a new address wedged every read-blocked
consumer, so completions stopped signalling while health still answered 200.
Socket timeouts plus subscriber pings recover it.

Installing more than one AI bundle left the shared venv multi-versioned and
silently broke three tools. The installer now reconciles distributions to one
version each.

Converting an image to JXL at quality 1 through 4 returned a 500, because
libjxl 0.7 rejects the distance those values compute. The quality is floored at
what the encoder honours. A missing ffmpeg was also reported to the user as a
corrupt upload; it now says the engine is unavailable.

RAW uploads reached an unpatched LibRaw on arm64, so it is built from source at
0.22.2, and the release scan was split so it can fail on an unfixed critical
instead of hiding it behind ignore-unfixed.

## Gates that could not fail

Two mutation lanes ran zero mutants because Stryker crawled the gitignored docs
build; coverage discarded its whole report on any failing test; the lint gate
skipped root tests, scripts, and two workspaces; and several generated matrices
counted a host missing ffmpeg as a passing tool. Each now measures what it
claims.

Full evidence and the outstanding release items are tracked locally and are not
part of this branch.
This commit is contained in:
SnapOtter
2026-07-27 15:37:30 +08:00
committed by GitHub
parent bc32f86a07
commit d10d0f544f
855 changed files with 54564 additions and 13092 deletions
+32 -5
View File
@@ -2,6 +2,7 @@
import { mkdir, readdir, readFile, writeFile } from "node:fs/promises";
import { dirname, join, relative, sep } from "node:path";
import { fileURLToPath } from "node:url";
import { hash } from "../lib/hash.mjs";
import { localeCodes } from "../lib/shared-i18n.mjs";
import { slugify } from "../lib/slugify.mjs";
@@ -213,6 +214,22 @@ function upsertFrontmatter(text, fields) {
return `---\n${next.join("\n")}\n---\n${body}`;
}
/**
* Remove pipeline-owned metadata before hashing or rendering a stored document.
* The returned text is the canonical localized document a person can edit: it
* includes rendered links/anchors/frontmatter quoting, but excludes the
* self-referential i18n bookkeeping fields.
*
* @param {string} text
* @returns {string}
*/
function stripI18nFrontmatter(text) {
const { fm, body } = splitFrontmatter(text);
if (fm == null) return text;
const kept = fm.split("\n").filter((line) => !/^i18n_[A-Za-z0-9_]+:/.test(line));
return kept.length > 0 ? `---\n${kept.join("\n")}\n---\n${body}` : body;
}
/**
* Double-quote bare `description`/`title` frontmatter values so a translated
* value containing a colon, `#`, or other YAML-significant character does not
@@ -294,11 +311,20 @@ export function createDocsAdapter({ root = DEFAULT_ROOT } = {}) {
for (const rel of files) {
const text = await readFile(join(dir, rel), "utf8");
const { fm } = splitFrontmatter(text);
const provenance = fmGet(fm, "i18n_provenance") === "human" ? "human" : "machine";
const canonicalText = stripI18nFrontmatter(text);
const storedOutputHash = fmGet(fm, "i18n_output_hash") ?? "";
const hashVersion = fmGet(fm, "i18n_hash_version");
map.set(rel, {
text,
text: canonicalText,
sourceHash: fmGet(fm, "i18n_source_hash") ?? "",
provenance: fmGet(fm, "i18n_provenance") === "human" ? "human" : "machine",
outputHash: fmGet(fm, "i18n_output_hash") ?? "",
provenance,
// Version 1 hashed the pre-render translator output, while load()
// returned the post-render on-disk document. Every machine entry was
// therefore misclassified as a human edit. For legacy machine files,
// trust the current canonical document once; the next write stamps v2.
outputHash:
hashVersion === "2" || provenance === "human" ? storedOutputHash : hash(canonicalText),
stale: fmGet(fm, "i18n_stale") === "true",
});
}
@@ -310,12 +336,13 @@ export function createDocsAdapter({ root = DEFAULT_ROOT } = {}) {
const abs = join(root, locale, id);
await mkdir(dirname(abs), { recursive: true });
const table = tokenTables.get(id) ?? [];
const undone = restoreDocs(entry.text, table);
const undone = restoreDocs(stripI18nFrontmatter(entry.text), table);
const linked = quoteFrontmatterScalars(rewriteLinks(undone, locale));
const withMeta = upsertFrontmatter(linked, {
i18n_source_hash: entry.sourceHash,
i18n_provenance: entry.provenance,
i18n_output_hash: entry.outputHash,
i18n_output_hash: hash(linked),
i18n_hash_version: "2",
...(entry.stale ? { i18n_stale: "true" } : {}),
});
await writeFile(abs, withMeta, "utf8");