From 29bad8dbd91212afa48eae66de58e8d34b51c2ee Mon Sep 17 00:00:00 2001 From: Pablo Pardo Garcia Date: Thu, 27 Aug 2026 15:58:49 +0200 Subject: [PATCH] chore: refresh the semconv fixture from the Python SDK MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Picks up SERVICE_INSTANCE_ID = "service.instance.id", which Python gained when service.instance.id shipped here in #24. Purely a stale mirror: src/semconv.ts already exports that constant with that value, so the parity test never had anything to catch — the test walks the FIXTURE's keys, and a key the fixture lacks is simply never compared. Only the weekly regenerate-and-diff check saw it, which is what opened #25. Closes #25 --- tests/fixtures/semconv.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/fixtures/semconv.json b/tests/fixtures/semconv.json index 5c5a87e..bf79578 100644 --- a/tests/fixtures/semconv.json +++ b/tests/fixtures/semconv.json @@ -1,5 +1,6 @@ { "TRACER_NAME": "glassflow", + "SERVICE_INSTANCE_ID": "service.instance.id", "OPENINFERENCE_SPAN_KIND": "openinference.span.kind", "INPUT_VALUE": "input.value", "OUTPUT_VALUE": "output.value",