From 18d5b75335db009a0b647c157b0e1045355799b8 Mon Sep 17 00:00:00 2001 From: Meet shah <132123415+Meet6338-X@users.noreply.github.com> Date: Wed, 26 Aug 2026 17:56:37 +0530 Subject: [PATCH] chore(ci): unblock quality gates - env-doc sync + stryker tap.testFiles registration (#9282) (#11609) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Merged via /merge-batch (lote 2026-08-26 batch 2, v3.8.51). Dois conflitos, ambos triviais: (1) stryker.conf.json — mesma linha com indentação diferente, mantida a indentação correta; (2) ts7-executor-shared-shapes.test.ts — mesma correção já coberta por #11591/#11608 (mergeados neste lote), mantido o describe/comentário melhor deste PR sobre a asserção já validada. Validado: 4/4 testes passando. Obrigado pela contribuição. --- .env.example | 6 ++++++ tests/unit/ts7-executor-shared-shapes.test.ts | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 86ea45e2e4..d0d3ee8576 100644 --- a/.env.example +++ b/.env.example @@ -3062,3 +3062,9 @@ QUOTA_STORE_DRIVER=sqlite # without a configured budget are always considered affordable. Requires the # provider_quota_state table (migration 148). # OMNIROUTE_QUOTA_AWARE_ROUTING=0 + +# ─── LOCAL CORPUS (opt-in document index) ─── +# Size of the in-memory LRU index cache for the local document corpus used by +# corpus-aware retrieval. Higher values keep more index entries hot. +# Used by: src/lib/localCorpus/configured.ts +# OMNIROUTE_CORPUS_CACHE_SIZE=5 diff --git a/tests/unit/ts7-executor-shared-shapes.test.ts b/tests/unit/ts7-executor-shared-shapes.test.ts index f12c82ab14..5e3c348ee3 100644 --- a/tests/unit/ts7-executor-shared-shapes.test.ts +++ b/tests/unit/ts7-executor-shared-shapes.test.ts @@ -14,7 +14,11 @@ const { OpencodeExecutor } = await import("../../open-sse/executors/opencode.ts" * that failed to type-check — no duplicate added here. */ -describe("OpencodeExecutor — the tools array survives the narrowing fix", () => { +// NOTE: the former truncates-to-128 guard here is superseded by +// opencode-tools-no-truncation.test.ts (#11444): tool-list limiting moved to +// chatCore truncateToolList(); the executor must forward arrays intact. + +describe("OpencodeExecutor — tools truncation survives the narrowing fix", () => { const executor = new OpencodeExecutor("opencode-go"); const CREDENTIALS = { apiKey: "k" } as Record;