From 2b8db9ab25354550c1ec98e01302e836b3a68239 Mon Sep 17 00:00:00 2001 From: Attila Szegedi Date: Thu, 12 Feb 2026 13:40:38 +0100 Subject: [PATCH 1/2] Add CODEOWNERS, with dd-trace-js and libdatadog teams --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..dc8bb6a --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @DataDog/dd-trace-js @DataDog/libdatadog From ae118d64ac624d838ad88de47b482416f0d1adaa Mon Sep 17 00:00:00 2001 From: Attila Szegedi Date: Thu, 12 Feb 2026 17:52:47 +0100 Subject: [PATCH 2/2] Another unrelated fix for the library_config test --- test/wasm/library_config/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/wasm/library_config/index.js b/test/wasm/library_config/index.js index 71aaac1..02c0343 100644 --- a/test/wasm/library_config/index.js +++ b/test/wasm/library_config/index.js @@ -40,6 +40,8 @@ function test_service_selector() { }); assert.strictEqual(values.length, 2) + // We can't rely on ordering, so sort it by name to make it deterministic + values.sort((a, b) => a.name.localeCompare(b.name)) assert.strictEqual(values[0].name, 'DD_RUNTIME_METRICS_ENABLED') assert.strictEqual(values[0].value, 'true') assert.strictEqual(values[0].source, 'local_stable_config')